
/*@font-face {
    font-family: "iransans";
    src: url(../assets/fonts/IRANSansWeb_Bold.woff);
    font-weight: bold;
}

@font-face {
    font-family: "iransans";
    src: url(../assets/fonts/IRANSansWeb_Medium.woff);
    font-weight: medium;
}

@font-face {
    font-family: "iransans";
    src: url(../assets/fonts/IRANSansWeb_Light.woff);
    font-weight: light;
}*/




@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 100;
    src: url('../assets/font-new/IRANSansXFaNum-Thin.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 200;
    src: url('../assets/font-new/IRANSansXFaNum-UltraLight.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 300;
    src: url('../assets/font-new/IRANSansXFaNum-Light.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 500;
    src: url('../assets/font-new/IRANSansXFaNum-Medium.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 600;
    src: url('../assets/font-new/IRANSansXFaNum-DemiBold.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 800;
    src: url('../assets/font-new/IRANSansXFaNum-ExtraBold.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 900;
    src: url('../assets/font-new/IRANSansXFaNum-Black.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 950;
    src: url('../assets/font-new/IRANSansXFaNum-ExtraBlack.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 1000;
    src: url('../assets/font-new/IRANSansXFaNum-Heavy.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: bold;
    src: url('../assets/font-new/IRANSansXFaNum-Bold.woff') format('woff');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: normal;
    src: url('../assets/font-new/IRANSansXFaNum-Regular.woff') format('woff');
}







body {
    direction: rtl;
    font-family: "IRANSansX";
}


/* select list */
.select {
    width: 100%;
    position: relative;
    max-width: 300px;
}

    .select select {
        display: none !important;
        background-color: #ffffff;
    }

    .select > .label,
    .select > select {
        /* padding: 10px 33px 10px 10px; */
        text-transform: capitalize;
        cursor: pointer;
        display: block;
        width: 100%;
        /* border-radius: 5px; */
        /* background-color: #f7f7f7; */
        transition: 0.5s all cubic-bezier(0.77, 0, 0.175, 1);
        padding-right: 30px;
        padding-top: 3px;
        /* box-shadow: 0 2px 10px #0000001a; */
    }

        .select > .label::after {
            content: "";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            height: 20px;
            width: 20px;
            background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAbklEQVRIie2PMQqAMAxFXwfP6qJVPIjYzcOKdUkhQ0BaCoLkLS3k818CjuN8ztApYzIDl7xvmalFsAIZuIFozKPMMrC0CAJwKIkuGVX5KdkmLEm3ci1JSlLKU49yLSmXVG1es0EANvnvInKcP/AA784fpjlWwNQAAAAASUVORK5CYII=") center no-repeat;
            background-size: contain;
            transition: 0.3s all;
        }

    .select.active > .label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .select > .options {
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: calc(100% + 4px);
        right: 0px;
        z-index: 1;
        background-color: #f8fafe;
        border-radius: 10px;
        overflow: hidden;
        overflow: auto;
        max-height: 0;
        transition: 0.5s all cubic-bezier(0.77, 0, 0.175, 1);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 2px 10px #0000001a;
    }

    .select.active > .options {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    .select > .options > li {
        padding: 7px 10px;
        text-transform: capitalize;
        cursor: pointer;
        transition: 0.5s all cubic-bezier(0.77, 0, 0.175, 1);
        font-size: 13px;
    }

        .select > .options > li:hover,
        .select > .options > li.current {
            background: rgb(21 188 132);
            color: #fff;
        }

.accordion {
    background-color: #f8fafe;
    color: #1b3c71;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

    .active, .accordion:hover {
        background-color: #d7e0f1;
    }

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

    .panel p {
        padding-bottom: 30px;
        line-height: 26px;
    }



/* Tabs */

ul#tabs-nav {
    list-style: none;
    margin: 0;
    overflow: auto;
}

    ul#tabs-nav li {
        float: right;
        font-weight: bold;
        margin-right: 10px;
        padding: 15px;
        border-radius: 5px 5px 5px 5px;
        cursor: pointer;
        background: #E1F0F8;
        min-width: 15%;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

        ul#tabs-nav li:hover,
        ul#tabs-nav li.active {
            background-color: #1b3c71;
        }

            ul#tabs-nav li:hover a,
            ul#tabs-nav li.active a {
                color: #fff;
            }

#tabs-nav li a {
    text-decoration: none;
    color: #1b3c71;
    font-size: 13px;
    font-weight: 600;
}

.tab-content {
    background-color: #FFF;
    padding: 15px;
}

.bg-contact {
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
    .bg-contact {
        background-image: none !important;
    }
}


.my-d-none {
    display: none;
}

.my-d-inline-block {
    display: inline-block;
}

.my-bg-light-blue {
    background-color: #E1F0F8;
}

    .my-bg-light-blue.active {
        background-color: #1b3c71;
        color: #fff;
    }



.my-arrow-down select {
    width: 100%;
    position: relative;
    max-width: 300px;
}

.my-arrow-down::after {
    content: "";
    position: relative;
    top: 10px;
    right: -35px;
    height: 20px;
    width: 20px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAbklEQVRIie2PMQqAMAxFXwfP6qJVPIjYzcOKdUkhQ0BaCoLkLS3k818CjuN8ztApYzIDl7xvmalFsAIZuIFozKPMMrC0CAJwKIkuGVX5KdkmLEm3ci1JSlLKU49yLSmXVG1es0EANvnvInKcP/AA784fpjlWwNQAAAAASUVORK5CYII=) center no-repeat;
    background-size: contain;
    transition: 0.3s all;
}

.min-w-90ppxx {
    min-width: 80px;
}

.min-h-30ppxx {
    height: 35px;
}

footer a.link:hover {
    color: #FE9409 !important;
}

.mobile-menu {
    display: none;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    top: 0;
    bottom: 0;
    width: 270px;
    right: 0;
    transition-duration: 400ms;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 99;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #1B3C70;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .mobile-menu, .mobile-menu-overlay, .mobile-menu a {
        display: none !important;
    }
}

.footer-container-custom {
    display: flex;
    padding: 20px;
    flex-direction: row;
}

.footer-description {
    width: 60%;
}

.footer-trust {
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .footer-container-custom {
        flex-direction: column;
    }

    .footer-description {
        width: 100%;
    }

    .footer-trust {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
}


.privacy-policy .privacy-content h2 {
    font-size: 18px;
    font-weight: bold;
}


.privacy-policy .privacy-content h3 {
    font-size: 15px;
    font-weight: bold;
}

.privacy-policy p {
    font-size: 15px;
}

.privacy-policy p {
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.privacy-policy-area .container {
    margin: 35px !important;
    padding: 35px !important;
}



.object-contain {
    object-fit: contain !important;
    object-position: center;
}

* {
    text-align: justify;
}



a#adlbtn100052050 {
    margin-right: 2px;
    margin-left: 2px;
}

a#adlbtn100051050 {
    margin-right: 2px;
    margin-left: 2px;
}


.bg-\[\#E1F0F8\] {
    background-color: #E1F0F8;
}


.m-4 {
    margin: 1rem;
}






@media (max-width: 720px) {
    header a.text-gray-600 {
        font-size: smaller !important;
        margin-left: 0px !important;
    }
}




a span.btn-call-tell-no {
    background-color: #008f2c;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: small;
    margin-top: 4px;
    margin-left: 12px;
}


.my-height-210px {
    max-height: 210px !important;
    overflow: hidden;
    height: 210px !important;
}

.font-size-larger {
    font-size: larger;
}



.blogarticlebox {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 0px 4px #d2d2d2;
}

.blogarticlebox img {
    width: 0px !important;
    height:0px !important;
    display: none !important;
}


.blogarticlebox a {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #9ca3af61;
    width: 100%;
    height: 70px;
    overflow: hidden;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}



.tag.tags.inline {
    display: inline-block;
    margin: 9px 3px;
    padding: 7px;
    background: #d9dce1;
    border-radius: 8px;
    font-size: 14px;
}


.profile-image .rounded-full {
    border-radius: 15px !important;
    border: 1px solid #b6b6b6 !important;
    box-shadow: 0px 0px 10px 0px #bbbbbb !important;
    object-position: top !important;
    height: 160px !important;
}

#our-services-menu-list.opacity-0 {
    opacity: 0;
    display:none;
}

#our-services-menu-list.opacity-100 {
    opacity: 1;
    display:block;
}