﻿
body {
    background: url('../img/Site/back.jpg');
   /* text-transform: capitalize;*/
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

ul {
    padding-right: 0;
}

ul,
li {
    list-style: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

.btn-outline-danger,
.btn-outline-warning,
.btn-outline-success,
.btn-outline-info,
.btn-outline-primary,
.btn-outline-light,
.btn-light {
    border-radius: 10px;
    border-width: 2px;
    font-weight: 600 !important;
    font-size: 14px;
    vertical-align: middle;
    padding: 10px 40px;
    line-height: 3;
}

.btn-outline-danger {
    color: #FF0000;
    border-color: #FF0000;
}

.btn-outline-warning {
    color: #ff4c29;
    border-color: #ff4c29;
}

.btn-outline-success {
    color: #206e39;
    border-color: #206e39;
}

.btn-outline-info {
    color: #00C1D4;
    border-color: #00C1D4;
}

.btn-outline-primary {
    color: #185ADB;
    border-color: #185ADB;
}

    .btn-outline-success:hover,
    .btn-outline-info:hover,
    .btn-outline-primary:hover,
    .btn-outline-warning:hover,
    .btn-outline-danger:hover,
    .btn-outline-light {
        color: #fff;
    }

.btn-outline-success:hover {
    background-color: #206e39;
    border-color: #206e39;
}

.btn-outline-info:hover {
    background-color: #00C1D4;
    border-color: #00C1D4;
}

.btn-outline-primary:hover {
    background-color: #185ADB;
    border-color: #185ADB;
}

.btn-outline-warning:hover {
    background-color: #ff4c29;
    border-color: #ff4c29;
}

.btn-outline-danger:hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-outline-light:hover {
    background-color: #f3f3f7;
    border-color: #f3f3f7;
}

    .btn-outline-light:hover svg circle,
    .btn-outline-light:hover svg path {
        stroke: #1b1363 !important;
        fill: #f3f3f7;
    }

.alert {
    font-size: 13px;
    text-align: center;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
    border-radius: 8px;
    background: #fafafa;
    padding: 7px;
    margin: 20px 0;
}

    .alert::before {
        width: 34px;
        height: 34px;
        position: absolute;
        border-radius: 100%;
        inset: -9px 0px 0px 0;
        font-size: 30px;
        line-height: 1.99;
        animation-name: reveal;
        animation-duration: 1.5s;
        animation-timing-function: ease-in-out;
    }

.alert-danger {
    border: 1px dashed #ff0000 !important;
    color: #ff0000 !important;
}

    .alert-danger::before {
        content: '✗';
    }

.alert-success {
    color: #206d39 !important;
    border: 1px dashed #206d39 !important;
}

    .alert-success::before {
        content: '✓';
    }

.text-success {
    color: #206e39 !important;
}

.d-overr,
html {
    overflow-x: hidden;
}

.displaynone,
.display_none,
.errh {
    display: none;
}

a {
    color: #4b5259;
}

    a:hover {
        text-decoration: none;
    }

p {
    margin-bottom: 0;
}

.bg-light {
    background-color: #fbfbfb !important;
}
/* width */

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

scrollbar {
    -moz-width: 4px;
    height: 4px;
}
/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px gray;
    border-radius: 13px;
}

scrollbar-track {
    -moz-box-shadow: inset 0 0 3px gray;
    -moz-border-radius: 13px;
}
/* Handle */

::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 13px;
}

scrollbar-thumb {
    -moz-background: #d0d0d0;
    -moz-border-radius: 13px;
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
}

scrollbar-thumb:hover {
    -moz-background: #ffc107;
}

#back2Top {
    width: 40px;
    height: 40px;
    line-height: 1.2;
    overflow: hidden;
    border-radius: 8px;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: 25px;
    background-color: #295c96;
    color: #ffffff;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    /* border: 2px solid #c9c9c9; */
}

    #back2Top svg {
        width: 25px;
        height: 25px;
    }

    #back2Top:hover {
        background: #171717;
    }

@keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

/*--------------------------------------- footer ---------------------------*/

footer {
    background: #fff;
    border-top: 1px solid #1717173b;
    padding: 20px 0;
    /* bottom: 0; */
    /* position: fixed; */
    width: 100%;
    /* top: unset; */
}

.copyright-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sub-footer span {
    font-size: 14px;
    display: block;
}

.logo-design {
    display: -ms-inline-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: end;
}

    .logo-design.logo-design-semami {
        margin-left: 15px;
    }

    .logo-design img {
        margin-right: 13px;
    }

    .logo-design.logo-design-semami img {
        width: 40px;
        height: auto;
    }

    .logo-design .sup-title {
        font-size: 11px;
        color: #6c757d;
    }

.page_content .image {
    border-radius: 4em 0;
    margin: 25px auto 25px auto;
    display: block;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 2px dotted #17171747;
    padding: 10px;
    /*    max-width: 90%;
    height: auto;*/
}

.page_content {
    background: url('../img/Site/Untitled-3-min.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0 100px;
    line-height: 2.5;
    /*	z-index: -1;*/
    position: relative;
    background: #FFFFFF;
    margin-top: 60px;
}
    /*.page_content .page_title {
        margin-bottom: 32px;
        position: relative;
        display: table;
        width: 100%;*/
    /*	text-align: left;*/
    /*}

    .page_content .page_title h1 {
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	color: #171717;
	margin-bottom: 0;
}

    .page_content .page_title:after  {
        display: block;
        content: "";
        position: absolute;
        width: 82px;
        height: 4px;
        left: 50%;
        border: 4px solid transparent;
        border-bottom: 0;
        border-top-color: #1d2435;
        margin-left: -21px;
        top: auto;
        border-top-color: #306fb8;*/
    /*     border-color: rgba(122,122,122,.26); */
    /*left: 0;
        margin-left: 0;
    }*/

    .page_content .content {
        text-align: justify;
        color: #171717b8;
    }

.footerBG {
    /* padding-top: 80px; */
    padding-bottom: 10px;
    background-color: #1A1A1A;
    color: #fff;
    background-image: url('../img/Site/back.jpg');
    /*     background-position: center; */
    /*     background-size: cover; */
    /*     background-repeat: no-repeat; */
    position: relative;
    /*     background-color: #000; */
}
    /* .footerBG:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: .8;
    z-index: 90;
} */

    .footerBG h5 {
        color: #fff;
        margin-bottom: 25px;
    }

    .footerBG .circle {
        margin-left: 15px;
        background: #A3A3A3;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: block;
        text-align: center;
        vertical-align: middle;
    }

        .footerBG .circle svg {
            fill: #1a1a1a;
        }

    .footerBG .quickLink li a:before {
        /*        content: url('/FileManager/Icons/C_left-arrow.svg');*/
        vertical-align: middle;
        text-align: center;
        top: 6px;
        position: relative;
    }

.footer {
    margin-left: 50px;
    width: 100%;
    height: 25px;
    position: absolute;
    bottom: 0;
    /* font-family: 'univers-Light'; */
    font-size: 11px;
    color: rgba(102, 102, 102, 1);
    letter-spacing: 1px;
    text-align: left;
    padding-top: 5px;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}

    .footer a {
        text-decoration: none;
        color: rgba(102, 102, 102, 1);
    }

.footer-content-outer {
    position: relative;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 15px;
    z-index: 100;
}

.footer-top-content {
    position: relative;
    padding-bottom: 33px;
    border-bottom: 1px solid rgb(232 232 232);
}

    .footer-top-content .mefz-footer-main-block {
        width: 50%;
        float: right;
    }

        .footer-top-content .mefz-footer-main-block .mefz-logo {
            position: relative;
            text-align: left;
        }

            .footer-top-content .mefz-footer-main-block .mefz-logo a {
                display: inline-block;
                vertical-align: middle;
                font-size: 20px;
                line-height: 32px;
                font-weight: 500;
                color: #171717;
                -webkit-transition: color .3s ease-in;
                transition: color .3s ease-in;
            }

        .footer-top-content .mefz-footer-main-block .footer-main-content {
            margin-top: 36px;
            max-width: 470px;
            font-size: 13px;
            line-height: 26px;
            font-weight: 400;
            color: #171717;
            text-align: justify;
        }

            .footer-top-content .mefz-footer-main-block .footer-main-content p {
                font-size: inherit;
                line-height: inherit;
                font-weight: inherit;
                color: inherit;
            }

    .footer-top-content .mefz-footer-info-block {
        width: 50%;
        /*        padding-top: 28px;*/
        padding-left: 30px
        /*  text-align: right;
        float: left;*/
    }

.mefz-footer-info-block {
    position: relative;
}

    .mefz-footer-info-block .footer-info-block-title {
        font-weight: 300;
        font-style: normal;
        letter-spacing: 1.5px;
        color: #171717;
        margin-top: 0;
        margin-bottom: 37px;
        padding-left: 30px;
    }

    .mefz-footer-info-block .footer-info-block-content {
        font-size: 13px;
        line-height: 26px;
        font-weight: 400;
        color: #171717;
    }

        .mefz-footer-info-block .footer-info-block-content p {
            font-size: inherit;
            line-height: inherit;
            font-weight: inherit;
            color: inherit;
            margin-bottom: 0;
        }

        .mefz-footer-info-block .footer-info-block-content a {
            font-size: inherit;
            line-height: inherit;
            font-weight: inherit;
            color: inherit;
            opacity: 1;
            -webkit-transition: opacity .3s ease-in;
            transition: opacity .3s ease-in;
        }

.footer-top-content:after {
    content: '';
    display: table;
    clear: both;
}

.footer-bottom-content {
    position: relative;
    padding-top: 30px;
}

    .footer-bottom-content .footer-copyright {
        float: right;
        width: 50%;
        font-size: 10px;
        line-height: 18px;
        letter-spacing: 2px;
        font-weight: 700;
        color: #171717;
        text-align: left;
    }

        .footer-bottom-content .footer-copyright p {
            font-size: inherit;
            line-height: inherit;
            font-weight: inherit;
            color: inherit;
            margin-bottom: 0;
            vertical-align: middle;
        }

    .footer-bottom-content .mefz-social-nav {
        float: left;
        margin-top: 0;
        margin-left: 0;
        width: 50%;
        text-align: left;
    }

.social-content {
    position: static;
    display: block;
    margin-bottom: 0;
    /*text-align: right;*/
}

    .social-content li {
        margin-bottom: 0;
        margin-right: 0;
        /*margin-left: 11px;*/
        display: inline-block;
    }

        .social-content li a {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            width: 30px;
            height: 30px;
            font-size: 12px;
            line-height: 28px;
            border: 1px solid rgba(242, 242, 242, .4);
            color: #171717;
            -webkit-transition: border .3s ease-in, background-color .3s ease-in, color .3s ease-in;
            transition: border .3s ease-in, background-color .3s ease-in, color .3s ease-in;
        }

            .social-content li a svg {
                line-height: 30px;
                fill: #a3a3a3;
            }

.footer-bottom-content:after {
    content: '';
    display: table;
    clear: both;
}
/*-----------------===== login + create=====-----------------*/
.color_box {
    position: relative;
    padding: 30px 35px;
    background-color: #fff;
    box-shadow: 5px 0 60px 0 rgb(61 67 79 / 8%);
    border-radius: 40px;
    text-align: center;
}

.loginBG {
    background-image: url('../img/Site/15488.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.input100 {
    width: 100%;
    display: block;
    max-width: 100%;
    margin: 0;
    border: 0 !important;
    padding: 10px 18px;
    font-family: inherit;
    line-height: 1.7;
    outline: none;
    transition: 0.3s;
    background-color: #fff;
    color: #000000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    margin-bottom: 19px;
    height: 55px !important;
    border-radius: 30px !important;
    font-weight: 700;
    font-size: 12px !important;
}

.login_body .input100 {
    background-color: #fff !important;
}

.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0;
    color: rgba(87, 184, 70, .8);
}

.input100:focus + .focus-input100 {
    -webkit-animation: anim-shadow .5s ease-in-out forwards;
    animation: anim-shadow .5s ease-in-out forwards;
}

nput100:focus + .focus-input100 + .symbol-input100 {
    color: #57b846;
    padding-left: 28px;
}

.symbol-input100 {
    font-size: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    pointer-events: none;
    color: #666;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    /*top: -8px;*/
}

.validate-input {
    position: relative;
}

.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 0;
}

.login100-form-btn {
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    border: none;
    z-index: 55;
    position: relative;
    cursor: pointer;
}

    .login100-form-btn:hover {
        background: #57b846;
    }

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.Create {
    font-size: 13px;
    color: #757575;
}

    .Create .bold {
        font-weight: 700;
        font-size: 15px;
        border-bottom: 2px solid;
        color: #212121;
    }

.btn-danger {
    color: #fff;
    background-color: #ff4c29 !important;
    border-color: #ff4c29 !important;
}
/*--------------------------------------- btn ---------------------- 24/08/1400-----------------*/

.cta {
    position: relative;
    margin: auto;
    padding: 16px 22px 19px;
    transition: all 0.2s ease;
}

    .cta:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 28px;
        background: rgb(214 214 214);
        width: 56px;
        height: 56px;
        transition: all 0.3s ease;
    }

    .cta span {
        position: relative;
        font-size: 14px;
        line-height: 18px;
        font-weight: 900;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        vertical-align: middle;
        color: #171717;
    }

    .cta svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #111;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }

    .cta:hover:before {
        width: 100%;
        background: rgb(41 92 150);
    }

    .cta:hover span {
        color: #fff;
    }

    .cta:hover svg {
        transform: translateX(0);
        stroke: #fff;
    }

    .cta:active {
        transform: scale(0.96);
    }
/*--------------------------------------- check box ---------------------------------------*/
.checkbox {
    --background: #295c96;
    --border: #D1D6EE;
    --border-hover: #BBC1E1;
    --border-active: #ffffff;
    --tick: #fff;
    position: relative;
}

    .checkbox input,
    .checkbox svg {
        width: 21px;
        height: 21px;
        display: block;
    }

    .checkbox input {
        -webkit-appearance: none;
        -moz-appearance: none;
        position: relative;
        outline: none;
        background: var(--background);
        border: none;
        margin: 0;
        padding: 0;
        cursor: pointer;
        border-radius: 4px;
        transition: box-shadow 0.3s;
        box-shadow: inset 0 0 0 var(--s, 1px) #295c96);
    }

        .checkbox input:hover {
            --s: 2px;
            --b: var(--border-hover);
        }

        .checkbox input:checked {
            --b: #295c96;
        }

    .checkbox svg {
        pointer-events: none;
        fill: none;
        stroke-width: 2px;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: var(--stroke, var(--border-active));
        position: absolute;
        top: 0;
        left: 0;
        width: 21px;
        height: 21px;
        transform: scale(var(--scale, 1)) translateZ(0);
    }

    .checkbox.path input:checked {
        --s: 2px;
        transition-delay: 0.4s;
    }

        .checkbox.path input:checked + svg {
            --a: 16.1 86.12;
            --o: 102.22;
        }

    .checkbox.path svg {
        stroke-dasharray: var(--a, 86.12);
        stroke-dashoffset: var(--o, 86.12);
        transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
    }

    .checkbox.bounce {
        --stroke: var(--tick);
    }

        .checkbox.bounce input:checked {
            --s: 11px;
        }

            .checkbox.bounce input:checked + svg {
                -webkit-animation: bounce 0.4s linear forwards 0.2s;
                animation: bounce 0.4s linear forwards 0.2s;
            }

        .checkbox.bounce svg {
            --scale: 0;
        }

@-webkit-keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    50% {
        transform: scale(1.2);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

label {
    vertical-align: middle !important;
}



/**************************************************************End Oneee*/

.MultiLevelNav {
    background: transparent !important;
    border-bottom-color: #ffffff7a !important;
}

.TextLevel1,
.ItemLevel1 {
    color: #fff !important;
}
/*home section style 10*/

.home-section.style-10 {
    background: url('../img/Site/00-min.jpg') no-repeat;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 94px);
}

    .home-section.style-10 .shape10 {
        position: absolute;
        top: 142px;
        right: 10%;
    }

    .home-section.style-10 .home-content h5 {
        border-top: 2px solid #306fb8;
        display: inline-block;
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 19px;
    }

    .home-section.style-10 .home-content-area h1 {
        line-height: 1.3;
        font-size: 35px;
    }

    .home-section.style-10 .home-content-area p {
        margin: 27px 0 46px 0;
    }

    .home-section.style-10 .btn-common a {
        /* padding: 16px 31px; */
        /* border: 1px solid #353535; */
        /* color: #306fb8; */
    }

        .home-section.style-10 .btn-common a:hover {
            border-color: #306fb8;
            background: #306fb8;
            color: #ffffff;
        }

.home-content {
    text-align: left;
}

.mt-65 {
    margin-top: 65px;
}
/*.BoxSeHI {*/

/*	top: -142px !important;*/

/*}*/

/*-------------------- 24/08/1400 --------------------*/

/*--------------------------------------- bootstrap carousel ------------------------------*/

.carousel-indicators li {
    width: 2px !important;
    height: 40px;
    transform: scaleY(0.42);
    transform-origin: top;
    transition: all .3s ease-out;
    padding: 0;
    background: #fff;
    margin: 0 8px;
}

    .carousel-indicators .active,
    .carousel-indicators li:hover {
        transform: scaleY(1);
    }

.carousel-caption {
    top: 31%;
    left: -31%;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 0;
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: bottom;
    transition: all .5s ease;
    opacity: 0.3;
    width: 6px;
    height: 6px;
    border-radius: 25px;
    background-color: #295c96 !important;
    margin-left: 10px;
    outline: 0;
}

    .owl-carousel .owl-dot.active {
        padding: 0px 5px !important;
        opacity: 1;
        width: 25px;
    }

.owl-nav.disabled {
    display: none;
}
/*--------------------------------------- whyUs ---------------------------------------*/

.whyUs {
    padding: 80px 0;
}

    .whyUs .content {
        line-height: 2;
        text-align: justify;
        padding-right: 50px;
    }
/*--------------------------------------- title ---------------------------------------*/

.section-title__tagline {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

    .section-title__tagline span.left {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 3px;
        background: #295c96;
        margin-right: 15px;
        top: -5px;
    }

    .section-title__tagline h2 {
        position: relative;
        display: inline-block;
        color: #295c96;
        font-size: 35px;
        line-height: 28px;
        font-weight: 700;
        text-transform: capitalize;
    }
/*--------------------------------------- news section ---------------------------------------*/

.post_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.NewsPost {
    border: 4px dashed #e8e8e8;
    padding: 15px;
    border-radius: 30px;
}

    .NewsPost .thumbnail a img {
        border-radius: 30px 30px 0 0;
    }
/*--------------------------------------- animation ---------------------------------------*/

.rotateScale {
    -webkit-animation-name: rotateScale;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateScale;
    -moz-animation-duration: 20s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateScale;
    -ms-animation-duration: 20s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: rotateScale;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-o-keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-direction: normal;
}

.dot_bg {
    background-image: url("../img/Site/dot11.png");
    -webkit-animation: bg-scrolling-reverse 0.92s infinite;
    -moz-animation: bg-scrolling-reverse 0.92s infinite;
    -o-animation: bg-scrolling-reverse 0.92s infinite;
    animation: bg-scrolling-reverse 0.92s infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    background-color: #fff;
    background-repeat: repeat;
    background-position: 0 0;
}

@-webkit-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-o-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-webkit-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@-o-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 100%;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

    .line::after {
        content: "";
        display: block;
        position: absolute;
        height: 15vh;
        width: 100%;
        top: -50%;
        left: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
        -webkit-animation: drop 7s 0s infinite;
        animation: drop 7s 0s infinite;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
        animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    }

    .line:nth-child(1) {
        margin-left: -25%;
    }

        .line:nth-child(1)::after {
            -webkit-animation-delay: 2s;
            animation-delay: 2s;
        }

    .line:nth-child(3) {
        margin-left: 25%;
    }

        .line:nth-child(3)::after {
            -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
        }

@-webkit-keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

@keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}
/*--------------------------------------- offering ---------------------------------------*/

.blue {
    color: #295c96;
    font-weight: 900;
    margin-right: 10px;
}

ul.chevron li {
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    text-align: left;
}
/*--------------------------------------- partner ---------------------------------------*/

/*.color_box .image img {
    border-radius: 40px 40px 0 0;
}

.map_section {
    background: url(/FileManager/background/655.jpg);
    background-size: cover;
    height: 63vh;
}*/
/*---------------------------------------  A New Chapter Of Cooperation---------------------------------------*/

.newCooperate .color_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 18px;
}

.newCooperate {
}

    .newCooperate .color_box .image {
        margin-right: 20px;
    }

        .newCooperate .color_box .image img {
            border-radius: 30px;
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
        }
/*--------------------------------------- partner ---------------------------------------*/

.mefz-steps-wrap {
    flex-wrap: wrap;
}

.mefz-steps-wrap {
    display: flex;
    align-items: stretch;
    text-align: center;
    font-size: 14px;
    padding: 0 1em;
}

    .mefz-steps-wrap .steps-single-wrap {
        display: grid;
        grid-gap: 50px;
        /* width: 100%; */
        position: relative;
        justify-items: center;
        grid-template-rows: 1fr 1fr;
        /* grid-gap: 30px; */
    }
@media (max-width: 768px) {
    .steps-single-wrap {
        width: calc(100% / 2);

    }
}
@media (min-width: 768px) {
    .steps-single-wrap {
        width: calc(100% / 4);

    }
}
    .steps-counter,
    .steps-media,
    .steps-content_wrap {
        opacity: 1;
        transform: translateY(0) !important;
    }

    .mefz-steps-wrap .steps-single-wrap.steps-single-invert .steps-same_height.steps-media {
        order: 1;
    }

    .steps-single-wrap.steps-single-invert .steps-media {
        transition: all .4s, opacity .4s .9s, transform .4s .9s;
        transform: translateY(-20px);
    }

    .steps-image {
        max-width: 131px;
    }

    img {
        height: auto;
        max-width: 100%;
        border: none;
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter {
        position: absolute;
        z-index: 2;
        width: 100%;
        left: 0;
        bottom: 0;
        top: 0;
        right: 0;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: auto !important;
    }

    .steps-counter {
        transition: all .4s, opacity .4s .3s, transform .4s .3s;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter .steps-counter-line {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

        .mefz-steps-wrap .steps-single-wrap .steps-counter .steps-counter-line:before,
        .mefz-steps-wrap .steps-single-wrap .steps-counter .steps-counter-line:after {
            content: '';
            width: calc(50% - 20px);
            height: 2px;
            display: block;
            background-color: currentColor;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
        }

        .mefz-steps-wrap .steps-single-wrap .steps-counter .steps-counter-line:before {
            right: 0;
        }

    .steps-counter-line:before,
    .steps-counter-line:after {
        width: calc(50% - 20px*4/5 - 2px);
    }

    .steps-single-wrap:first-child .steps-counter:before,
    .steps-single-wrap:last-child .steps-counter:after,
    .steps-counter .steps-counter-line:before,
    .steps-counter .steps-counter-line:after {
        color: #adb5bd;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter span {
        display: block;
        width: 20px;
        height: 20px;
        line-height: 20px;
        padding-top: 1px;
        font-size: 14px;
        border-radius: 3px;
        margin: auto;
        box-shadow: inset 0 0 0 2px currentColor;
        transition: all .4s;
        position: relative;
    }

    .steps-counter span {
        font-family: "Nunito", Sans-serif;
        font-weight: 800;
        width: 20px;
        height: 20px;
        line-height: 20px;
        color: #111111;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter span:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
        transition: 0.4s;
        z-index: -1;
        border-radius: inherit;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter span:after {
        transform: translate(3px, 3px);
    }

    .mefz-steps-wrap .steps-single-wrap .steps-counter span:after {
        background: #b4d7ff;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-content_wrap {
        font-size: initial;
    }

    .mefz-steps-wrap .steps-single-wrap .steps-same_height {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    iframe {
        filter: brightness(75%) contrast(200%) saturate(0%) blur(0px) hue-rotate(0deg);
        border: none;
    }
    /*---------------------------------------  responsive  ---------------------------------------*/

    .NewsPost .thumbnail a img {
        border-radius: 30px 30px 0 0;
    }

    @media(max-width: 991px) {
        .reverse {
            flex-direction: column-reverse;
        }

        .whyUs .content {
            padding-right: 0;
        }
    }

    .steps-title {
        text-decoration: none;
        color: #212529;
    }

        .steps-title:hover {
            color: #212529;
        }

    @media(max-width: 768px) {
        .steps-same_height .steps-title {
            font-size: 1.5rem;
        }

        .steps-image {
            width: 100px;
        }
    }

    @media(max-width: 422px) {
        .section-title__tagline h2 {
            font-size: 30px;
        }

        .steps-same_height .steps-title {
            font-size: 1.2rem;
        }

        .steps-image {
            width: 90px;
        }
    }

    @media(max-width: 392px) {
        .steps-same_height .steps-title {
            font-size: 1rem;
        }

        .steps-image {
            width: 70px;
        }

        .steps-same_height .steps-title {
            font-size: 1.2rem;
        }

        .steps-image {
            width: 100px;
            height: auto;
        }
    }

    @media(max-width: 383px) {
        .section-title__tagline h2 {
            font-size: 25px;
        }
    }

    @media(max-width: 344px) {
        .section-title__tagline h2 {
            font-size: 20px;
        }

        p {
            font-size: 13px;
        }
    }

    @media(max-width: 331px) {
        .steps-same_height .steps-title {
            font-size: .8rem;
        }

        .steps-image {
            width: 50px;
        }
    }

    @media(max-width: 306px) {
        .section-title__tagline h2 {
            font-size: 20px;
        }

        .section-title__tagline span.left {
            width: 20px;
            margin-right: 5px;
        }
    }

    /******************NAVBAR***********************/

    .navbar-nav > li > a {
        color: #fff !important;
        font-weight: 500;
        font-size: 16px;
    }

    .internal > li > a {
        color: #000 !important;
        font-weight: 500;
        font-size: 16px;
    }

    .MultiLevelNav {
        width: 100%;
        height: 94px;
        background: url('/FileManager/slider/21.jpg');
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        left: 0;
        top: 0;
        right: 0;
        z-index: 2340;
        transform: translate(0px, 0px);
        align-items: center;
        position: fixed;
        /*    border-bottom: 1px solid #1717173b;*/
    }

    nav.MultiLevelNav.scrolling {
        background: rgb(255 255 255 / 95%) !important;
        box-shadow: 0 2px 10px 0 rgb(188 195 208 / 50%);
        border: none;
        transition: all .3s ease 0s;
        margin-top: 0 !important;
        height: 70px;
    }

    .dropdown-menu {
        line-height: 34px;
        background-color: rgb(214 214 214) !important;
        width: fit-content;
    }

        .dropdown-menu .nav-link:hover, .dropdown-menu .nav-link:focus {
            background-color: #fff;
        }

    .btn-check:focus + .btn, .btn:focus {
        outline: 0;
        box-shadow: none !important;
    }

    .nav-link {
        color: #000 !important;
    }

    .scrolling .nav-link {
        color: #000 !important
    }

    .scrolling .dropdown-toggle {
        color: #000 !important
    }

    .navbar-nav .dropdown-menu {
        position: absolute !important;
        padding-left: 5px;
    }
    /****************table**************/
    .page_content table {
        width: 80%;
        margin: 10px auto 10px auto !important;
    }

        .page_content table td {
            border: 2px solid gray !important;
            border-width: 2px !important;
            padding: 5px !important;
        }


    .dropdown-menu .dropdown-item {
        display: inline !important;
    }

    .langIcon {
        height: 15px;
        width: 25px;
        display: inline;
        float: right;
        padding: 1px 5px 1px;
        margin-top: -6px;
    }

    .internal .langIcon {
        margin-top: 6px;
    }

    .internal .item-a {
        font-size: 10px;
        text-decoration: none;
        margin-left: 5px;
        padding-top: 6px;
        color: #000;
    }

    .item-a {
        font-size: 10px;
        text-decoration: none;
        margin-left: 5px;
        padding-top: 6px;
    }

    .lang {
        padding-top: 10px;
        float: right
    }

        .lang > ul {
            display: -webkit-inline-box;
            display: -moz-inline-box;
            display: inline-flex;
            float: left;
        }

    .white a {
        color: #fff;
    }

    .scrolling .white a {
        color: #000;
    }


    .pcShow {
        display: none;
    }

    /* Pc */
    @media (min-device-width : 481px) {
        .pcShow {
            display: inline;
        }

        .disForSearch {
            margin-top: 30px;
        }
    }



@media (max-width: 768px) {
    .navbar-collapse {
        background-color: rgb(214 214 214) !important;

        padding: 10px;

    }
    .navbar-nav .nav-link,
    .mobileShow .nav-link {
        color: #000 !important;
    }
    .MultiLevelNav {
        flex-wrap: wrap; /* اجازه دهد در موبایل عناصر به خط بعد بروند */
        height: auto; /* ارتفاع در موبایل دینامیک باشد */
    }

    .navbar-nav .dropdown-menu {
        position: static !important; /* برای اینکه در موبایل درست نمایش داده شود */
    }
}



    @media (max-device-width : 481px) {
    }

    .idiomas-descricao {
        padding: 5px 25px;
        position: fixed;
        right: 0;
        left: 0;
        /*    background-color: #163853;*/
        color: #fff;
        font-size: 12px;
        line-height: 0px;
        z-index: 1000;
        height: 40px;
        border-bottom: 1px solid #fff;
    }

        .idiomas-descricao ul {
            display: -webkit-inline-box;
            display: -moz-inline-box;
            display: inline-flex;
            float: right;
        }

    #searchform {
        float: left;
        margin-left: 5px;
    }


 

    .enSearch {
        margin-bottom: 0;
        height: 30px;
        width: 20%;
        float: left !important;
    }

    .searchPic {
        height: 25px;
        float: left;
        padding-left: 5px;
        padding-top: 4px
    }
/**************************************/
.social-content {
    position: static;
    display: block;
    margin-bottom: 0;
    padding-top: 18px;
    padding-bottom: 20px;
}

    .social-content li {
        margin-bottom: 0;
        margin-right: 0;
        margin-left: 11px;
        display: inline-block;
    }

        .social-content li a {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            width: 30px;
            height: 30px;
            font-size: 14px;
            line-height: 28px;
            /*            border: 1px solid rgba(242, 242, 242, .4);*/
            color: #171717;
            -webkit-transition: border .3s ease-in, background-color .3s ease-in, color .3s ease-in;
            transition: border .3s ease-in, background-color .3s ease-in, color .3s ease-in;
        }

            .social-content li a svg {
                line-height: 30px;
                fill: #a3a3a3;
            }
/*WeChat Overlay*/



.icon-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.icon-img {
    display: block;
    width: auto;
    height: 64px; /* یا هر اندازه‌ای که می‌خوای */
}

.overlay {
    position: absolute;
    bottom: 100%; /* میاد بالای آیکن */
    left: 0;
    background-color: rgba(0, 150, 0, 0.8);
    color: white;
    padding: 8px;
    text-align: center;
    display: none;
    border-radius: 10px;
    white-space: nowrap;
}

.icon-container.show-overlay .overlay {
    display: block;
}
