/*--------------------
    Default Settings
---------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    direction: rtl;
    overflow-x: hidden;
    width: 100%;
    font-family: tahoma, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 2;
}


img {
    max-width: 100%;
    height: auto;
}


a {
    text-decoration: none;
}


ul {
    list-style: none;
}


button {
    cursor: pointer;
}


/*--------------------
    Main Structure
---------------------*/


header,
main,
footer {
    width: 100%;
}


.container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}


section {
    width: 100%;
    padding: 50px 0;
}


.hidden {
    display: none;
}


/*--------------------
    Home Page
---------------------*/


h1 {
    text-align: center;
    color: #0b5a81;
    font-size: 38px;
    margin-bottom: 10px;
}


.subtitle {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-bottom: 40px;
}


.info {
    font-size: 20px;
    margin: 20px 0;
}


.phone {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #006699;
    margin: 30px 0;
}


.phone a {
    color: #006699;
}


.notice {
    margin: 35px 0;
    padding: 18px;
    background: #eef7ff;
    border-right: 5px solid #0b5a81;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    color: #444;
}


h2 {
    margin-top: 45px;
    color: #0b5a81;
}


iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 10px;
    margin-top: 15px;
}


.noindex {
    display: none;
}


/*--------------------
    Footer
---------------------*/


footer {
    margin-top: 50px;
    text-align: center;
    color: #888;
    font-size: 14px;
}



/*--------------------
    Utilities
---------------------*/

.text-center {
    text-align: center;
}


.mt-20 {
    margin-top: 20px;
}


.mt-30 {
    margin-top: 30px;
}


.mt-40 {
    margin-top: 40px;
}


.mb-20 {
    margin-bottom: 20px;
}


.mb-30 {
    margin-bottom: 30px;
}


.mb-40 {
    margin-bottom: 40px;
}


/*--------------------
        Links
---------------------*/

a {
    transition: .3s;
}


a:hover {
    opacity: .85;
}



/*--------------------
       Forms
---------------------*/

input,
textarea,
select,
button {
    font-family: tahoma, sans-serif;
}


input,
textarea,
select {
    outline: none;
}


button {
    border: none;
}