.hover-element {
       position: absolute;
       top: 5px;
       left: 5px;
       cursor: pointer;
       transition: all .1s ease;
       width: 200px;
       font-weight: 700;
       font-size: 16px;
       padding: 25px;
       height: 100px;
       z-index: 9999;
       color: #fff;
       border-radius: 10px;
       text-align: center;
       font-size: 14px;
       animation: backgroundChange 2s infinite;
 }

 @keyframes backgroundChange {
    0% {
        background-color: #FF9800;
    }
    50% {
        background-color: var(--main-color);
    }
    100% {
        background-color: #FF9800;
    }
}

 @media (max-width: 1400px) {
     .hover-element {
         display: none;
     }
 }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}


h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}


.ng-shadow {
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    border: 1px solid rgba(0,0,0,0.06);
}



/*** headings ***/

.heading-box .heading {
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--main-color);
}



@media (max-width: 767.98px) {
    .heading-box .heading {
        font-size: 27px;
    }

}


/********** btns ********/


/** theme btn ***/


.t-btn.big {
    font-size: 18px;

}

.t-btn.small {
    font-size: 12px;
    padding: 0.7em 1.2em;
}

.t-btn {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    padding: 1em 2em;
    line-height: 1;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 30px;
    color: var(--main-text-color);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s ease-in;
}


.t-btn:hover,
.t-btn:focus {
    transform: scale(1.05);
    text-decoration: none;
    color: var(--main-text-color);
}

.t-btn.dark {
    background: #333;
}

.t-btn {
    position: relative;
    z-index: 2;
}



.t-btn:hover {
    opacity: 1;
}



.t-color {
    color: var(--main-color);
}

.t-bg {
    background: var(--main-color);
}

.t-color-2 {
    color: var(--second-color);
}

.t-bg-2 {
    background: var(--second-color);
}


.t-color-3 {
    color: var(--third-color);
}

.t-bg-3 {
    background: var(--third-color);
}



.t-btn.theme {
    border-color: var(--third-color) !important;
    background: var(--third-color) !important;
    color: var(--third-text-color) !important;
}


.t-btn.theme2 {
    border-color: var(--second-color) !important;
    background: var(--second-color) !important;
    color: var(--second-text-color) !important;
}





/***************** MAIN HEADER *****************/



.main-header.sticky {
    position: sticky;
    top: 0;
    z-index: 9998;
}

.main-header.is-sticky,
.main-header.sticky {
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}


.main-header.is-sticky .top-bar {
    display: none;
}


.main-header:not(.is-sticky) .logo .second {
    display: none;
}

.main-header.is-sticky .logo .first {
    display: none;
}




.main-header .top-bar a {
    font-size: 12px;
}

.main-header .top-bar .container {
    border-bottom: 1px dashed rgba(255,255,255,0.5);
    padding-bottom: 8px;
    padding-top: 8px;
}


.main-header.sticky .top-bar .container {
    border-color: rgba(0,0,0,0.15);
}

.main-header .top-bar a {
    color: #fff;
    text-decoration: none;
}


.main-header .top-bar .link-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 10px;
}

.main-header .top-bar .social-links a {
    font-size: 18px;
    width: 25px;
    height: 25px;
    background: var(--main-color);
    color: var(--main-text-color);
}




.main-header.sticky .main-menu .menu-list .menu-link {
    color: #000;
}


.main-header .main-bar {
    padding: 8px 0;
}

.main-header .main-menu .menu-list {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.main-header .main-menu .menu-list .menu-link,
.main-header .main-menu .menu-list .dropdown-toggle.menu-link {
    padding: 8px 15px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    border-radius: 0;
    border: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000;
    position: relative;
}


.main-header .main-menu .menu-list .menu-link:hover,
.main-header .main-menu .menu-list .menu-link:focus {
    color: var(--second-color);
}


.main-header .main-menu .menu-list .menu-link.active {
    color: var(--main-color);
}

.main-header .js-menu-open {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-decoration: none;
    border: none !important;
    background: none !important;
    color: var(--main-color);
}


.main-header.is-sticky .js-menu-open,
.main-header.sticky .js-menu-open {
    color: var(--main-color);
}

.main-header .js-menu-open:hover {
    color: var(--main-color);
}


.main-header .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.main-header .dropdown-menu {
    border-color: #f1f1f1;
}



.main-header .dropdown-menu .dropdown-item:hover,
.main-header .dropdown-menu .dropdown-item:focus {
    font-size: 14px;
    color: var(--main-text-color);
    background: var(--main-color);
}

@media (min-width: 1200px) {
    .main-header:not(.is-sticky,.sticky) .main-menu .menu-list .menu-link:not(.active){
        color: rgba(0,0,0,0.85);
    }

    .main-header:not(.is-sticky) .main-menu .menu-list .menu-link:not(.active):hover {
        color: var(--main-color);
    }


    /*.main-header.is-sticky .logo img {*/
    /*    max-width: 120px;*/
    /*    transition: all 0.2s ease-in;*/
    /*}*/

    .main-header.is-sticky .menu-list .menu-link {
        font-size: 16px;
    }

    .main-header .menu-list .menu-link {
        transition: all 0.2s ease-in;
    }

    .main-header .logo img {
        transition: all 0.2s ease-in;
    }

}





@media (max-width: 991.98px) {
    .main-header .top-bar .t-btn.small {
        font-size: 11px;
    }
}


@media (max-width: 767.98px) {
    .main-header .logo img {
        max-width: 110px;
    }

}





/* mobile menu */


@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important;
        z-index: 99999;
        background: #fff;
        width: 450px;
        max-width: 100%;
        height: 100%;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
    }

    body.menu-opened .mobile-head {
        padding: 8px 0;
        position: relative;
    }

    body.menu-opened .mobile-head img {
        max-width: 110px;
    }

    body.menu-opened .mobile-head .js-menu-close {
        font-size: 28px;
        display: inline-flex;
        width: 45px;
        height: 45px;
        justify-content: center;
        align-items: center;
        /*position: absolute;*/
        /*top: 15px;*/
        /*right: 15px;*/
        text-decoration: none;
        color: #696969;
        border: none !important;
        background: none !important;

    }


    body.menu-opened .js-menu .menu-list {
        flex-wrap: wrap;
        flex-direction: column;
    }



    body.menu-opened .main-header .js-menu .menu-item {
        text-align: center;
    }

    body.menu-opened .main-header .js-menu .menu-item .menu-link {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        font-size: 16px;
        padding: 17px 0;
        color: #333;
    }

    body.menu-opened .js-menu .dropdown-menu {
        position: static !important;
        transform: unset !important;
        background: var(--main-light-color);
        border: none;
        border-radius: 0;
    }





    body.menu-opened {
        height: 100vh !important;
        overflow: hidden;
    }

    body.menu-opened {
        height: 100vh !important;
        overflow: hidden;
        position: relative;
    }

    body.menu-opened .main-header {
        z-index: 9998;
    }

    body.menu-opened .layer {
        position: fixed;
        top: 0;
        right: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        width: calc(100% - 450px);
        max-width: 100%;
        height: 100%;
    }
}











/*********** MAIN FOOTER ***********/

.main-footer {
    background: var(--main-color);
}

.main-footer .copyright {
    padding: 20px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--main-text-color);
    text-align: center;
}

.main-footer .copyright a {
    color: #fff;
}


.main-footer a:hover {
    text-decoration: none;
    color: var(--third-color);
}




/************ HOME PAGE *************/



/*** hero section ***/

section.hero {
    padding-top: 170px;
    padding-bottom: 250px;
    background: var(--main-bg);
}

.hero .heading {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero .subheading {
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 30px;
    line-height: 1.5;
}

.hero .subheading span {
    font-weight: 800;
}

.hero .t-btn i {
    position: relative;
    top: 2px;
}

@media (max-width: 767.98px) {

    section.hero {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero .heading {
        font-size: 30px;
    }

    .hero .subheading {
        font-size: 16px;
    }



    .hero img {
        margin-top: 20px;
    }

}


/**** pro ****/


.pro {
    background: var(--main-color);
    padding: 70px 0;
}


.pro .desc {
    font-size: 20px;
    font-weight: 500;

    max-width: 750px;
    margin: auto;
    color: #fff;
}

.pro .heading {
    color: var(--main-text-color);
}

@media (max-width: 767.98px) {


    .pro .desc {
        font-size: 17px;
    }

    .pro {
        padding: 50px 0;
    }

}



/*** faq ***/

.faq a,
.faq a:hover {
    color: var(--third-color);
    font-weight: 600;
}




.faq-page {
    background: #F7F9FC;
}

.faq-item {
    position: relative;
    border-radius: 6px;
    background: #fff;
}

.faq-item .roller {
    position: absolute;
    top: -15px;
    right: 25px;
    display: inline-flex;
    height: 32px;
    border-radius: 5px;
    width: 32px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: var(--second-color);
    color: var(--second-text-color);
}


.faq-item.active .roller {
    background: var(--second-color);
}

.faq-item.active i {
    transform: rotate(180deg);
}


.faq-item .faq-answer {
    display: none;
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;

}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.faq-item.active .faq-question {
    background: var(--main-color);
    color: var(--main-text-color);
}


.faq-item .faq-answer {
    padding: 15px;
    font-size: 16px;
}

@media (max-width: 767.98px) {

    .faq-item .faq-answer {
        padding: 12px;
        font-size: 14px;
    }

    .faq-item .faq-question {
        padding: 11px;
        font-size: 14px;
    }

    .faq-item .roller {
        top: -15px;
        right: 20px;
        height: 27px;
        width: 27px;
        font-size: 14px;
    }

}




/********* c2a *********/

.c2a {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
    background-repeat: no-repeat;
    z-index: 1;
    color: #fff;
}

.c2a .heading {
    font-size: 45px;
}

.c2a .text {
    max-width: 780px;
    font-weight: 500;
    margin: auto;
    font-size: 25px;
}

.c2a .heading {
    color: #fff;
}

.c2a:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    position: absolute;
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 767.98px) {


    .c2a .heading {
        font-size: 30px;
    }

    .c2a .text {
        font-size: 18px;
    }

    .c2a {
        background-attachment: unset;
    }

}





/*** benefits ***/


.benefits .benefit-item .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: block;
}

.benefits .benefit-item {
    padding: 35px 25px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    background: #fff;
}

.benefits .benefit-item .text-box {
    color: #6a6a6a;
    font-weight: 500;
    font-size: 17px;
}

.benefits .benefit-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    color: #fff;
    align-items: center;
    font-size: 27px;
    display: inline-flex;
}

.benefits .benefit-item .cont {
    width: calc(100% - 70px);
}


@media (max-width: 767.98px) {


    .benefits .benefit-item .title {
        font-size: 16px;
    }
    .benefits .benefit-item .text-box {
        font-size: 13px;
    }


}



/************ how *********/


/* timeline */



.how {
    background: var(--main-bg);
}

.how .timeline-section {
    background: #F7F9FC;
}

.how .timeline {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;

}


.how .timeline .sticky-line {
    position: sticky;
    top: 0;
    left: calc(50% - 1px);
    display: block;
    width: 2px;
    height: 30%;
    background: var(--second-color);
    z-index: -1;
}

.how .timeline .line {
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    display: block;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: -1;
}

.how .timeline .line:before,
.how .timeline .line:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 12px);
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--main-color);
    border: 3px solid #fff;
}


.how .timeline .item {
    display: flex;
    align-items: center;
}

.how .timeline .item .info-box {
    width: calc(50% - 50px) !important;
}



.how .timeline .line:after {
    top: auto;
    bottom: 0;
}

.how .timeline .year-box {
    text-align: center;
    padding: 0 30px;

}

.how .timeline .year-box .year {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    background: #000;
}

.how .timeline {
    /*max-width: 700px;*/
    margin: auto;
}

.how .timeline .info-box {
    width: min(300px, calc(50% - 25px));
    background: #fff;
    padding: 35px;
}

.how .timeline .info-box .text-box {
    font-size: 16px;
    color: #555;
    font-weight: 300;
    margin-bottom: 0;
}

.how .timeline .info-box .title {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.how .timeline .info-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}


.how .timeline .item .time {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-color);
}

.how .timeline .info-box {
    position: relative;
}

.how .timeline .info-box:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(45deg);
}

.how .timeline .item:nth-of-type(odd) .info-box:after {
    top: 50%;
    left: 0;
    right: auto;
    transform: translate(-50%, -50%) rotate(45deg);
}

.how .timeline .item:nth-of-type(odd) {
    margin-left: auto !important;
    justify-content: flex-end;
}

.how .timeline .item:nth-of-type(odd) .info-box {
    order: 3;
}

.how .timeline .item:nth-of-type(odd) .year-box {
    order: 2;
}

.how .timeline .item:nth-of-type(odd) .time {
    order: 1;
}



.how .timeline .info-box {
    font-size: 13px;
    color: #777;
}


@media (max-width: 600px) {
    .how .timeline .item .info-box {
        width: 100% !important;
    }

    .how .timeline .item {
        flex-wrap: wrap;
    }

    .how .timeline .item .time {
        order: 2 !important;
        position: relative;
        top: 30px;
        left: 10px;
        z-index: 5;
        font-size: 14px;
        background: var(--main-color);
        color: #fff;
        padding: 2px 5px;
    }

    .how .timeline .item:nth-of-type(odd) .time {
        left: auto;
        right: 10px;
    }

    .how .timeline .item .info-box {
        order: 3 !important;
    }

    .how .timeline .item .info-box:after {
        all: unset;
    }


    .how .timeline .item .year-box {
        order: 1 !important;
        width: 100%;
        margin-top: 25px;
    }
}






/********** EP **********/

.ep {
    background: var(--main-color);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ep .text {
    font-size: 25px;
    color: #fff;
    max-width: 760px;
    margin: auto;
}

.ep .heading {
    color: #fff;
}

.ep a {
    color: var(--third-color);
}

.ep {
    padding-bottom: 120px;
}

.ep .gdpr {
    font-size: 13px;
    color: #fff;
}


.ep .t-btn {
    font-size: 25px;
    border-radius: 50px;
}

.ep {
    position: relative;
    margin-top: 150px;
}

.ep img {
    position: relative;
    top: -150px;
    margin-bottom: -100px;
}

@media (max-width: 767.98px) {


    .ep .text {
        font-size: 17px;
    }

    .ep .t-btn {
        font-size: 18px;
    }


}










/************ social-links *********/



.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: var(--main-color);
    color: var(--main-text-color);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.social-links a:hover {
    background: var(--second-color);
    color: var(--second-text-color);
}



.ep .text.info {
    font-weight: 300;
    font-size: 16px;
}


.ep .email-box .info,
.ep .facebook-box .info {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;


}

.ep .or {
    font-size: 25px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
}

.ep .facebook-box i {
    font-size: 65px;
}

.ep .manual-box a {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid var(--third-color);
    font-size: 16px;
    font-weight: 600;
}

.ep .manual-box a:hover {
    border-bottom: 1px solid transparent;
}




/***** 404 page *****/

.page404 {
    padding-top: 150px;
}

.page404 .content {
    padding: 25px;
    min-height: 450px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page404 .content:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,51,102, 0.8);
    z-index: -1;
}

.page404 .cont h1 {
    color: #fff;
    font-weight: 700;
    font-size: 55px;
}

.page404 .cont h2 {
    color: #fff;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    .page404 .cont h1 {
        font-size: 35px;
    }

    .page404 .cont h2 {
        font-size: 16px;
    }

    .page404 {
        padding-top: 100px;
    }

    .page404 .content {
        background-attachment: unset;
    }
}



/*************** To top btn *************************/

#myBtn {

    position: fixed;
    bottom: 15px;
    right: 10px;
    z-index: 99;
    font-size: 25px;
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    background: #000;
}

#myBtn:hover {
    background: rgba(0, 0, 0, 0.65);
}
