﻿@font-face {
    font-family: IRANSans2;
    font-style: normal;
    font-weight: 700;
    font-weight: bold;
    src: url('/fonts/IranSans/eot/IRANSansWeb_Bold.eot');
    src: url('/fonts/IranSans/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), url('/fonts/IranSans/woff2/IRANSansWeb_Bold.woff2') format('woff2'), url('/fonts/IranSans/woff/IRANSansWeb_Bold.woff') format('woff'), url('/fonts/IranSans/ttf/IRANSansWeb_Bold.ttf') format('truetype');
    font-display: fallback;
}

@font-face {
    font-family: IRANSans2;
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/IranSans/eot/IRANSansWeb_Medium.eot');
    src: url('/fonts/IranSans/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), url('/fonts/IranSans/woff2/IRANSansWeb_Medium.woff2') format('woff2'), url('/fonts/IranSans/woff/IRANSansWeb_Medium.woff') format('woff'), url('/fonts/IranSans/ttf/IRANSansWeb_Medium.ttf') format('truetype');
    font-display: fallback;
}

@font-face {
    font-family: IRANSans2;
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/IranSans/eot/IRANSansWeb_Light.eot');
    src: url('/fonts/IranSans/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), url('/fonts/IranSans/woff2/IRANSansWeb_Light.woff2') format('woff2'), url('/fonts/IranSans/woff/IRANSansWeb_Light.woff') format('woff'), url('/fonts/IranSans/ttf/IRANSansWeb_Light.ttf') format('truetype');
    font-display: fallback;
}

@font-face {
    font-family: IRANSans2;
    font-style: normal;
    font-weight: 200;
    src: url('/fonts/IranSans/eot/IRANSansWeb_UltraLight.eot');
    src: url('/fonts/IranSans/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), url('/fonts/IranSans/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), url('/fonts/IranSans/woff/IRANSansWeb_UltraLight.woff') format('woff'), url('/fonts/IranSans/ttf/IRANSansWeb_UltraLight.ttf') format('truetype');
    font-display: fallback;
}

@font-face {
    font-family: IRANSans2;
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/IranSans/eot/IRANSansWeb.eot');
    src: url('/fonts/IranSans/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), url('/fonts/IranSans/woff2/IRANSansWeb.woff2') format('woff2'), url('/fonts/IranSans/woff/IRANSansWeb.woff') format('woff'), url('/fonts/IranSans/ttf/IRANSansWeb.ttf') format('truetype');
    font-display: fallback;
}

/*============= Global =============*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: IRANSans2;
}
.flex {
    display: flex;
}
.flex_column {
    display: flex;
    flex-direction: column;
}
.flex_center {
    justify-content: center;
    align-items: center;
}
.text_bold {
    font-weight: bold;
}
.en {
    direction: ltr;
}
.fa {
    direction: rtl;
}
.none{
    display: none;
}
.hide,.hide *{
    opacity: 0;
    z-index: -1000;
    width: 0;
    height: 0;
    position: relative;
    overflow: hidden;
}
a {
    text-decoration: none;
}
.txt {
    text-align: center;
}
.txt:focus {
    background-color: #FFFAEA;
}
.bt {
    background: linear-gradient(180deg, #DBE5F0, #b1c5dc);
    border: 1px solid #9a9a9a;
    border-radius: 3px;
    cursor: pointer;
}
.bt:hover {
    background: linear-gradient(180deg, #d3e8ff, #7cb2ef);
}

.bt:active {
    background: linear-gradient(180deg, #f5f6f7, #bdd8f7);
}

/*============= header =============*/
.header {
    height: 110px;
    display: flex;
    flex-direction: column;
}

.headerImage {
    height: 60%;
}

.headerImage img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*------- menu -------*/
.headerMenu {
    height: 40%;
    background-color: #033543;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    user-select: none;
}

.headerMenu ul {
    height: 100%;
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.headerMenu li {
    height: 100%;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerMenu li.active {
    background-color: #055D62;
}

.headerMenu li:hover {
    background-color: #047980 !important;
}

.headerMenu a {
    color: white;
}

/*============= main =============*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 160px);
}

/*============= footer =============*/
.footer {
    height: 50px;
    background-color: #033543;
    color: white;
    padding: 10px;
    text-align: center;
}


/* ********************************************************************************* */
/* ********************************************************************************* */
/* ************************************** mobile #app ******************************* */
.app {
    display: none;
}

.des {
}

/* smartphone 0~599px */
/* tablet 600~899px */
@media (max-width : 599px) {
    .app {
        display: block;
    }

    .des {
        display: none;
    }

    hr.app {
        display: block;
        width: 90vw;
    }

    .app_flex_column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .app_flex_row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    /*---------------------------------------- body -----------------------------------------*/
    body,html {
        overflow: hidden;
    }

    .container {
        max-width: 100vw;
        margin: 0;
        padding:10px;
        min-height: calc(100vh - 82px);
    }

   
    /*---------------------------------------- header -----------------------------------------*/
    .header {
        width: 100%;
        height: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .header_title{
        background-color: #033543;
        color: white;
        padding: 10px;
        text-align: center;
    }

    .header_row{
        display:flex !important;
        padding: 0;
        margin:0;
    }

    
    
    .headerMenu {
        background-color: transparent;
    }

    body.lock_scroll {
        overflow: hidden;
    }

    .btMenu {
        position: absolute;
        z-index: 10000;
        right: 7px;
        top: 4px;
        font-size: 28px;
        width: 49px;
        height: 39px;
        text-align: center;
        background-color: #70a6b5;
        color: #000000;
        border: 1px solid #033543;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btMenu span {
        display: inline-block;
        width:50px;
        height:40px;
        transform: rotate(0deg);
        transition: transform 0.3s ease-in;
    }

    .btMenu.active span {
        transform: rotate(90deg);
    }

    /*--------- header menu--------*/
    .app_menu_back {
        direction:rtl;
        /*display:none;*/
        position: fixed;
        background: rgba(0, 0, 0, 0.16);
        opacity: 0;
        z-index: -100;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.5s linear;
        transform: translateX(-100vw);
    }

    .app_menu_back.active/*.active*/ {
        /*display:block !important;*/
        z-index: 100;
        opacity: 1;
        width: 100vw;
        height: 100vh;
        transform: translateX(0);
    }

    .app_menu {
        /*opacity: 0;*/
        width: 60%;
        position:relative;
        top:48px;
        height: calc(100vh - 48px);
        background: linear-gradient(-90deg, #E5F2FA, #ffffff);
        box-shadow: -1px 0px 4px #00000070;
        padding: 0 0 10px 0;
        /*transform: translateX(60vw);*/
        transition: opacity 0.2s linear,transform 0.2s linear;
    }

    .app_menu_back.active .app_menu {
        opacity: 1;
        transform: translateX(0);
    }

    .app_menu ul {
        display: flex;
        list-style: none;
        flex-direction: column;
        justify-content: start;
        overflow: auto;
        height: 100%;
        direction: ltr;
    }

    .app_menu ul li {
        direction: rtl;
    }

    .app_menu ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        color:#032C38;
        border-bottom: 1px solid #a7c6d2;
        height: 57px;
    }

    .app_menu ul li a.green {
        background-color: lightgreen;
    }

    .app_menu ul li a.red {
        background-color: lightcoral;
    }

    .app_menu ul li a.white {
        background-color: white;
    }
    /*---------------------------------------- main -----------------------------------------*/
    /*---------------------------------------- footer ----------------------------------------*/
    .footer {
        /*border-top:5px solid #055D62;*/
        box-shadow:-1px -1px 25px rgba(3, 53, 67, 0.4);
        padding:0;
        height: 40px;
    }

    .footer img{
        width:100%;
        height: 100%;
        object-fit:fill;
    }

}

/* ********************************************************************************* */
/* ********************************************************************************* */

