/* roboto-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-800 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto/roboto-v47-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background: #fff;
    font-family: 'Roboto', 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);
}


.heading-box .heading {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #000;
    text-align: center;
}

.heading-box .heading-text {
    max-width: 720px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    color: #555;
    font-weight: 400;

}

@media (max-width: 991.98px) {
    .container {
        max-width: 1300px;
        padding-left: 25px;
        padding-right: 25px;
    }

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

    .heading-box .heading-text {
        font-size: 15px;
    }
}




.grad {
    background: -webkit-linear-gradient(60deg, var(--second-color), #de3b40, var(--second-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}







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


/** theme btn ***/


.t-btn.big {
    font-size: 16px;
}

.t-btn.small {
    font-size: 14px;
}

.t-btn {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    padding: 1em 1.5em;
    line-height: 1;
    border: none;
    border-radius: 4px;
    color: #fff;
    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: #fff;
}

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

.t-btn.white {
    background: #fff;
    color: #121212;
}



.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-btn.theme {
    border-color: var(--main-color);
    background: var(--main-color);
    color: var(--main-text-color);
}


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

.t-btn.ic .icon {
    display: inline-flex;
    background: #fff;
    padding: 4px;
    position: absolute;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    right: 7px;
    top: 50%;
    transform: translate(0,-50%);

}

.t-btn.ic {
    padding-right: 55px;
}

.t-btn.ic svg {
    color: #000;
}

.t-btn.white.ic svg {
    color: #fff;
}

.t-btn.white.ic .icon {
    background: #121212;
}



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

.main-header .top-bar {
    background: var(--main-color);
    color: var(--main-text-color);
    padding: 8px 0;
    text-align: center;
}

.main-header .top-bar p {
    margin-bottom: 0;
}


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

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

.main-header:not(.is-sticky) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}




.main-header.is-sticky .logo img {
    width: 50px;
}

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


/*.main-header::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    display: block;*/
/*    top: 0;*/
/*    left: -10%;*/
/*    width: 40%;*/
/*    transform: skewX(-30deg);*/
/*    height: 100%;*/
/*    background: #fff;*/
/*    z-index: -1;*/
/*}*/


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

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



.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: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #000;
    position: relative;
}

@media (min-width: 1200px) {
    .main-header .main-menu .menu-list .menu-link,
    .main-header .main-menu .menu-list .dropdown-toggle.menu-link {
        border-radius: 6px;
    }
}


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


.main-header .main-menu .menu-list .menu-link.active {
    background: var(--main-color);
    color: var(--main-text-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;
    color: #fff;
}


.main-header.is-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) .main-menu .menu-list .menu-link:not(.active) {
        color: #fff;
    }

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

}



/*@media (min-width: 1200px) {*/
/*    .main-header::before {*/
/*        left: -10%;*/
/*        width: 55%;*/
/*    }*/

/*}*/





/* mobile menu */


@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important;
        z-index: 99999;
        background: #fff;
        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 .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: #ccc;
    }


    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 #f1f1f1;
        font-size: 16px;
        padding: 17px 0;
    }

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



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

@media (max-width: 767.98px) {
    /*.main-header::before {*/
    /*    left: -10%;*/
    /*    width: 70%;*/
    /*    transform: skewX(-30deg);*/

    /*}*/

    .main-header .logo img {
        width: 60px;
    }
}






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

.main-footer {
    font-size: 14px;
}


.main-footer .copyright {
    padding: 20px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.main-footer .link-list {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.main-footer .icon-box {
    display: inline-flex;
    color: var(--main-color);
    background: #fff;
    border-radius: 4px;
    width: 40px;
    padding: 7px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.main-footer .icon-box svg {
    height: 100%;
    width: 100%;
}

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

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

.main-footer {
    background: #31363F;
    color: rgba(255,255,255,0.8);
}

.main-footer .text-box {
    padding-right: 25px;
}

.main-footer .foot-heading {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 18px;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.main-footer .main-bar {
    padding: 50px 0;
}


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

.main-footer .menu-list li {
    margin-bottom: 15px;
}

.main-footer .menu-list a {
    padding-left: 0;
    margin-bottom: 0;
    text-decoration: none;
    line-height: 1.5;
    font-weight: 500;
    list-style: none;
}

.main-footer .contact-item .head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.main-footer .contact-item .head .title {
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.8px;
    font-size: 13px;
    text-transform: uppercase;
}

.main-footer .contact-item .cont {
    font-weight: 500;
}


.main-footer .contact-item {
    margin-bottom: 15px;
}

.main-footer .contact-item .head i {
    display: inline-flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    /*background: linear-gradient(to right, #fff, var(--main-light-color));*/
    color: var(--second-color);
}

.main-footer .contact-item .cont a {
    text-decoration: none;
    display: block;
    color: var(--main-text-color);
}

.main-footer .contact-item .cont a:hover {
    color: var(--second-color);
}




/***** page banner *******/


.page-banner {
    padding-top: 250px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-banner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(to right top , rgba(32, 92, 147, 0.78) 20%, rgba(0, 0, 0, 0.58) 100%);*/
    background: linear-gradient(to right top , rgba(8, 23, 37, 0.68) 20%, rgba(8, 23, 37, 0.88) 100%);
    z-index: -1;
}

.page-banner .content {
    color: #fff;
}



.page-banner .cont .page-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-align: center;
}



.page-banner nav.path ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
    width: auto;
    align-items: center;
    list-style: none;
    font-size: 14px;
    margin-bottom: 0;
    column-gap: 10px;
    row-gap: 5px;
    color: rgba(255,255,255,1);

}

.page-banner nav.path ul li a {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    color: #fff;
    font-weight: 400;
    padding-right: 12px;
}

.page-banner nav.path ul li {
    display: inline-flex;
    align-items: center;
}


.page-banner nav.path ul li a:hover {
    text-decoration: underline;
    color: var(--second-color);
}

.page-banner nav.path ul li .final-path {
    font-weight: 600;
}

.page-banner nav.path ul li a:after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;

}



@media (max-width: 767.98px) {
    .page-banner .cont .page-title {
        font-size: 30px;
    }

    .page-banner {
        padding-top: 130px;
        padding-bottom: 40px;
    }
}



/********* home banner *******/

.hero-banner {
    padding: 260px 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hero-banner .spec-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 0;
}

.hero-banner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(to right top , var(--main-color) 20%, rgba(0, 0, 0, 0.58) 100%);*/
    background: radial-gradient(circle , rgba(0, 0, 0, 0.72) 40%, rgba(0, 0, 0, 0.78) 100%);
    z-index: -1;
}

.hero-banner .content {
    color: #fff;
}

.hero-banner .content .small-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.hero-banner .content .title {
    font-size: 56px;
    font-weight: 700;
}

.hero-banner .content {
    max-width: 700px;
}

.hero-banner .content .desc {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-banner .content {
        max-width: 100%;
    }

    .hero-banner .content .title {
        font-size: 46px;
    }

    .hero-banner .content .desc {
        font-size: 18px;
    }
}


@media (max-width: 556px) {

    .hero-banner .content .title {
        font-size: 35px;
    }

    .hero-banner .content .desc {
        font-size: 15px;
        font-weight: 400;
    }

    .hero-banner {
        padding: 100px 0;
        min-height: 800px;
        height: 100vh;
        height: -webkit-fill-available;

    }
}














/************** MAIN SLIDER ************/


.slider-section {
    overflow: hidden;
}


.main-slider .carousel-item .desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 70%;
    padding: 15px;
    max-width: 90%;
    width: 850px;
    color: #fff;
    background: rgba(0,0,0,0.65);
}

.main-slider .carousel-item .desc-box {
    padding: 25px;
}

.main-slider .carousel-item .desc-box .text {
    font-size: 19px;
    font-weight: 400;
}

.main-slider .carousel-item .desc-box .heading {
    font-size: 40px;
    font-weight: 700;
}

.main-slider .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.main-slider .carousel-indicators .active {
    background-color: var(--main-color);
}

.main-slider .carousel-control-prev i,
.main-slider .carousel-control-next i {
    font-size: 45px;
    color: #fff;
}

.main-slider .carousel-control-prev,
.main-slider .carousel-control-next {
    opacity: 1;
}


.main-slider .carousel-control-prev:hover i,
.main-slider .carousel-control-next:hover i {
    color: var(--main-color);
}


/*** section about ***/




section.about .text {
    font-size: 17px;
    font-weight: 700;
}

section.about .text.gray {
    font-weight: 400;
    color: #555;
}




/** paralax **/


.home-page .paralax {
    position: relative;
    padding: 90px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.home-page .paralax:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right top, rgba(0, 0, 0, 0.68) 20%, rgba(0, 0, 0, 0.78) 100%);
    z-index: -1;
}

.home-page .paralax {
    color: #fff;
}

.home-page .paralax .heading {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

.home-page .paralax .text {
    font-weight: 400;
    font-size: 16px;
    margin: auto;
    max-width: 720px;
    color: rgba(255,255,255,0.8);
}


@media (max-width: 767.98px) {
    .home-page .paralax .heading {
        font-size: 36px;
    }


    .home-page .paralax {
        padding: 75px 0;
        background-attachment: unset;
    }

    .home-page .paralax .text {
        font-size: 15px;
    }
}


/******************* CONTACT PAGE **************/

.contact-page .contact-bar {
    background: #F7F9FC;
}

.contact-page .contact-bar .content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.contact-page .contact-bar .box .box-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.contact-page .contact-box small {
    font-size: 12px;
}


.contact-page .contact-bar .contact-box .heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--second-color);
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
}

.contact-page .contact-bar .contact-box .value {
    display: block;
    text-align: center;
    color: #555;
}

.contact-page .contact-bar .contact-box a.value {
    color: #000;
    text-decoration: none;
}


.contact-page .contact-form-box .form-control {
    border: none;
    background: #FAFAFC;
    padding: 15px;
}

.contact-page .contact-form-box .form-control::placeholder {
    color: #939393;
    font-size: 16px;
}

.contact-page .contact-form-box .form-control:focus {
    box-shadow: none;
    border: none;
    background: #f9f9f9;
}


/******************* ABOUT PAGE ********************/


/* timeline */


/* timeline */


.about-page .timeline-section {
    background: #F7F9FC;
}

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

}


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

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

.about-page .timeline .line:before,
.about-page .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;
}


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

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



.about-page .timeline .line:after {
    top: auto;
    bottom: 0;
}

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

}

.about-page .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;
}

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

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

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

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

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


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

.about-page .timeline .info-box {
    position: relative;
}

.about-page .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);
}

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

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

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

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

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



.about-page .timeline .info-box {
    font-size: 13px;
    color: #555;
}


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

    .about-page .timeline .item {
        flex-wrap: wrap;
    }

    .about-page .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;
    }

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

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

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


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


/**** end time line ****/

.about-page .about2 {
    background: var(--main-color);
    color: var(--main-text-color);
}

.about-page .about2 .heading-box .heading {
    color: #fff;
}

.about-page .about2 .heading-box .heading-text {
    color: #f1f1f1;
}



/** member item ***/



.member-item .img-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--second-color);
    object-fit: cover;
}

.member-item .name {
    font-size: 21px;
    color: #000;
    font-weight: 700;
    display: block;
    text-align: center;
}

.member-item .position {
    color: var(--main-color);
    font-weight: 500;
    font-size: 17px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.member-item .desc {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.member-item .img-box {
    text-align: center;
}

.member-item {
    padding: 25px;
}

.member-item .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.member-item .contact-info a {
    display: block;
    text-align: center;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.member-item .contact-info {
    margin-bottom: 15px;
}












/** warning-bar **/

.warning-bar .content {
    position: relative;
    transform: translate(0,-50%);
    z-index: 5;
    padding: 25px;
    max-width: 750px;
    background: #FF5757;
    margin: auto;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-align: center;
}


.warning-bar .content strong {
    font-weight: 700;
}


@keyframes changeBackground {
    0% {
        box-shadow: 0px 0px 10px #000;
    }
    50% {
        box-shadow: 0px 0px 20px #000;
    }
    100% {
        box-shadow: 0px 0px 10px #000;
    }
}


@media (max-width: 767.98px) {
    .warning-bar .content {
        font-size: 17px;
    }
    .warning-bar .content {
        transform: unset;
        margin-top: 25px;
    }

}


/*.warning-bar .content {*/
/*    animation: changeBackground 2.5s infinite;*/
/*}*/














/********* CALL TO ACTION ********/

.call-to-action {
    position: relative;
    padding: 125px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

.call-to-action:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right top, rgba(8, 23, 37, 0.98) 20%, rgba(8, 23, 37, 0.18) 100%);
    z-index: -1;
}

.call-to-action {
    color: #fff;
}

.call-to-action .heading {
    font-size: 40px;
    font-weight: 900;
}

.call-to-action .text {
    font-weight: 500;
    font-size: 18px;
    margin: auto;
    max-width: 720px;
}


@media (max-width: 767.98px) {
    .call-to-action .heading {
        font-size: 36px;
    }

    .call-to-action .text {
        font-size: 15px;
    }

    .call-to-action {
        padding: 75px 0;
    }
}

/************* home service ************/

.home-page .services {
    background: rgba(0,0,0,0.03);
}

.home-page .services .service-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.home-page .services .service-item .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    margin-top: 15px;
    display: block;
    color: #000;
}

.home-page .services .service-item svg {
    color: var(--second-color);
}

.home-page .services .service-item p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}





/****** reviews ***********/

.home-page .reviews {
    background: rgba(0,0,0,0.03);
}


.testimonial-item {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.testimonial-item .quote i {
    font-size: 70px;
    position: absolute;
    top: 0;
    left: 25px;
    color: var(--main-color);
    opacity: 0.1;
}


.testimonial-item .meta img {
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-item .meta {
    display: flex;
}

.testimonial-item .meta .info-box .name {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.testimonial-item .meta .info-box .position {
    color: #555;
}

.testimonial-item .rating {
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    color: #F5B759;
}

.testimonial-item .blockquote {
    color: #555;
    font-size: 15px;
}


/******** CLEAN PAGE ********/

.clean-page {
    background: #F7F9FC;
}

.clean-page .content {
    padding: 25px;
    background: #fff;
}

.clean-page .content a {
    color: var(--second-color);
}


.clean-page .gallery-box .gallery-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clean-page .gallery-box {
    margin-top: 25px;
}

.clean-page .gallery-box .heading {
    text-align: center;
    margin-bottom: 15px;
}

.clean-page .gallery-box .gallery-imgs a {
    width: calc(100% / 7 - 10px);
    display: block;
}

.clean-page .gallery-box .gallery-imgs a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}



/********* FAQ PAGE **************/



/***************** FAQ PAGE *****************/

.faq-page {
    background: rgba(0, 0, 0, 0.03)
}

.faq-page .container {
    width: 1000px;
    max-width: 100%;

}

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

.faq-item .faq-answer a {
    color: var(--main-color);
    font-weight: 600;
}

.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 svg {
    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: 16px;
    font-weight: 500;
    color: #000;
}

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


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









/*************** BLOG PAGE ************/

.blog-page {
    background: #F7F9FC;
}



@media (min-width: 992px) {

    .blog-page .article-item {
        display: flex;
    }

    .blog-page .article-item .img-box {
        width: 270px;
    }

    .blog-page .article-item .content-box {
        width: calc(100% - 270px);
    }

    .blog-page .article-item .img-box img {
        width: 100%;
        height: 270px;
        object-fit: cover;
    }

    .blog-page .article-item {
        padding: 25px;
        background: #fff;
    }

    .blog-page .article-item .content-box {
        padding: 5px 0 0 25px;
        display: flex;
        flex-direction: column;
    }

    .blog-page  .article-item .more {
        margin-top: auto;
    }



    .blog-page .article-item .img-box a:note(.category) {
        display: block;
        width: 100%;
        height: 100%;
    }

}


/*** article page ********/


.article-page {
    background: #F7F9FC;
}

.article-page .content {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
}

.article-page .content .img-box {
    margin-bottom: 25px;
}

.article-page .img-box img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.article-page .img-box .meta {
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
}

.article-page .content .img-box .meta .date {
    font-size: 12px;
    color: #555;
}

.article-page .cont {
    color: #555;
    line-height: 1.7;

}

.article-page .cont a {
    color: var(--second-color);
}


.article-page .gallery-box .gallery-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-page .gallery-box {
    margin-top: 25px;
}

.article-page .gallery-box .heading {
    text-align: center;
    margin-bottom: 15px;
}

.article-page .gallery-box .gallery-imgs a {
    width: calc(100% / 7 - 10px);
    display: block;
}

.article-page .gallery-box .gallery-imgs a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}


@media( max-width: 7678.98px ) {
    .article-page .img-box img {
        height: auto;
        object-fit: contain;
    }
}











/* blog sidebar */



.blog-sidebar .box .heading {
    font-weight: 900;
    font-size: 22px;
    color: var(--second-color);
    margin-bottom: 20px;
}

.blog-sidebar .box .category-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.blog-sidebar .box .category-list li a {
    padding: 9px 12px;
    color: #000;
    border: 1px solid #f1f1f1;
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    background: #fff;

}

.blog-sidebar .box .category-list li a:hover,
.blog-sidebar .box .category-list li a.active {
    background: var(--main-color);
    color: var(--main-text-color);
}


.blog-sidebar .box .category-list li {
    margin-bottom: 5px;
}


.blog-sidebar .box {
    margin-bottom: 30px;

}

.blog-page .blog-sidebar .article-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}


.blog-sidebar .article-list li .date {
    color: #555;
    font-size: 12px;
}

.blog-sidebar .article-list li a {
    color: #272727;
    font-size: 15px;
}

.blog-sidebar .article-list li a:hover {
    color: var(--main-color);
}

.blog-sidebar .article-list li {
    margin-bottom: 15px;
}













/************* Article item ************/

.article-item .img-box {
    position: relative;
}

.article-item .img-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.article-item {
    border-radius: 6px;
    overflow: hidden;
}

.article-item .img-box .category {
    position: absolute;
    bottom: 5px;
    right: 5px;
    text-decoration: none;
    background: var(--second-color);
    color: var(--second-text-color);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 1;
}

.article-item .img-box .category:hover {
    background: var(--main-color);
    color: var(--main-text-color);
}




.article-item .meta i {
    display: inline-flex;
    width: 27px;
    height: 27px;
    outline-offset: 4px;
    outline: 2px solid var(--second-color);
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--main-text-color);
}

.article-item .meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-item .content-box {
    padding: 25px;
}

.article-item .meta .date {
    color: #555;
    font-size: 13px;
    font-weight: 400;
}

.article-item .title {
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    display: block;
    margin: 15px 0;
}


.article-item .title:hover {
    color: var(--second-color);
}

.article-item .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555;
    font-size: 16px;
    line-height: 25px;
    height: 75px;
    margin-bottom: 10px;
}

.article-item .more {
    display: inline-flex;
    color: var(--second-color);
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    gap: 5px;
}

.article-item .more i {
    font-size: 14px;
}


/********** service page ***************/

.service-page {
    background: #F7F9FC;
}

.service-page .service-menu {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
}

.service-page .service-menu a {
    width: 100%;
    display: block;
    padding: 10px 15px;
    color: #000;
    background: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.04);

}

.service-page .service-menu a:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: var(--main-text-color);
}

.service-page .service-item {
    border-bottom: 7px solid var(--main-light-color);
    padding: 25px;
    background: #fff;
    margin-bottom: 50px;
    border-radius: 8px;
}

.service-page .service-item ul {
    margin-top: 25px;
    padding-left: 20px;
    color: #555;
}

.service-page .service-item .icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--main-color);
    margin-bottom: 35px;

}



.service-page .icon-box .heading {
    margin-bottom: 0;
}


@media (max-width: 767.98px) {


    .service-page .service-menu {
        position: static;
    }

    .service-page .service-col {
        /*position: sticky;*/
        /*top: 100px;*/
    }

    .service-page .service-menu {
        flex-direction: row;
        overflow-x: auto;
        gap: 5px;
        background: var(--second-color);
        padding: 8px;
        margin-bottom: 10px;
    }

    .service-page .service-menu a {
        white-space: nowrap;
        padding: 8px;
        font-size: 14px;
        margin-bottom: 0;
    }
}













/************ category PAGE *************/

.category-page {
    background: #F7F9FC;
}

.category-page .category-box {
    display: flex;
    white-space: nowrap;
    overflow: auto;
    gap: 10px;
    margin-bottom: 45px;
    justify-content: center;

}

.category-page .category-box a {
    background: rgba(0,0,0,0.03);
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 17px;
    text-decoration: none;
    color: #111;
    font-weight: 600;

}



.category-page .filter-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-page .filter-box a {
    padding: 15px;
    color: #000;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #fafafa;
}

.category-page .filter-box a.active {
    color: var(--second-text-color);
    border-color: var(--second-color);
    background: var(--second-color);
}

.category-page .filter-box a:not(.active):hover {
    background: var(--second-light-color);
}

@media (max-width: 567.98px) {

    .category-page .filter-box {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}


/******* PORTFOLIO PAGE **********/


.portfolio-page {
    background: #F7F9FC;
}




.portfolio-page .content {
    background: #fff;
    border-radius: 12px;
    padding: 45px;
    max-width: 100%;
}

.portfolio-page .content .img-box {
    margin-bottom: 25px;
}

.portfolio-page .content .heading {
    font-size: 30px;
    color: var(--main-color);
}

.portfolio-page .img-box .meta {
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
}

.portfolio-page .content .img-box .meta .date {
    font-size: 12px;
    color: #555;
}

.portfolio-page .cont {
    color: #555;
    line-height: 1.7;

}

.portfolio-page .cont a {
    color: var(--second-color);
}


.portfolio-page .gallery-box .gallery-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-page .gallery-box {
    margin-top: 25px;
}

.portfolio-page .gallery-box .heading {
    text-align: center;
    margin-bottom: 15px;
}

.portfolio-page .gallery-box .gallery-imgs a {
    width: calc(100% / 7 - 60px / 7);
    display: block;
}

.portfolio-page .gallery-box .gallery-imgs a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}


@media (max-width: 767.98px) {
    .portfolio-page .content {
        padding: 45px 25px;
    }
}









/************* PORTFOLIO item ************/

.portfolio-item .img-box {
    position: relative;
}

.portfolio-item .img-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.portfolio-item {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.portfolio-item .img-box .category {
    position: absolute;
    bottom: 5px;
    right: 5px;
    text-decoration: none;
    background: var(--second-color);
    color: var(--second-text-color);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 1;
}

.portfolio-item .img-box .category:hover {
    background: var(--main-color);
    color: var(--main-text-color);
}




.portfolio-item .meta i {
    display: inline-flex;
    width: 27px;
    height: 27px;
    outline-offset: 4px;
    outline: 2px solid var(--second-color);
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--main-text-color);
}

.portfolio-item .meta {
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-item .content-box {
    padding: 25px;
}

.portfolio-item  .meta {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--main-color);
    padding: 4px 15px;
}

.portfolio-item .meta svg {
    color: #fff;
}

.portfolio-item .meta .date {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.portfolio-item .title {
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    display: block;
    margin-top: 15px;
}


.portfolio-item .title:hover {
    color: var(--second-color);
}

.portfolio-item .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555;
    font-size: 16px;
    line-height: 25px;
    height: 75px;
    margin-bottom: 10px;
}

.portfolio-item .more {
    display: inline-flex;
    color: var(--second-color);
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    gap: 5px;
}

.portfolio-item .more i {
    font-size: 14px;
}

@media (max-width: 567.98px) {

    .portfolio-item .img-box img {
        height: 230px;
    }
}




/*********** PRICING PAGE ********/


.pricing-page table.main th {
    padding-bottom: 35px;
}

.pricing-page table.main td,
.pricing-page table.main th  {
    border: none;
}

.pricing-page table.main .desc {
    max-width: 450px;
    color: #555;
    font-style: italic;
    font-size: 16px;
}

.pricing-page table.main td .title {
    font-size: 17px;
    font-weight: 700;
    display: block;
}

.pricing-page table.main th .title {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}





.pricing-page table.main .price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--main-color);
    text-align: center;
}

.pricing-page table.main th .specth {

    color: rgba(255,255,255,0.85);
    font-size: 16px;
    background: var(--main-color);

    font-weight: 700;
    padding: 5px 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 65px;
}



.pricing-page section.second .cont {
    max-width: 100%;
    width: 1000px;
    margin: auto;
}

.pricing-page {
    background: rgba(0,0,0,0.04);
}

.pricing-page .second .cont {
    max-width: 100%;
    width: 1200px;
    padding: 45px;
    border-radius: 12px;
    background: #fff;
}

.pricing-page .second .table td {
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    padding: 12px 12px;
    border: none;
}

.pricing-page .second .table tr:nth-of-type(even) td {
    background: rgba(0,0,0,0.02);
}

.pricing-page .second .table .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}



.pricing-page section.second .info {
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

.pricing-page section.second ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    gap: 60px;
}

.pricing-page section.second ul .desc {
    font-size: 15px;
}

.pricing-page section.second ul li {
    display: flex;
    justify-content: space-between;

}

.pricing-page section.second ul li .price {
    flex-shrink: 0;
    font-size: 17px;
    color: var(--main-color);
    font-weight: 800;
}

.pricing-page section.second .contact-foot {
    text-align: center;
    margin-top: 75px;
}

.pricing-page section.second .contact-foot .working-time {
    margin-bottom: 20px;
    margin-top: 5px;
    display: block;
    color: #848484;
    font-weight: 400;
    font-size: 22px;
}

.pricing-page section.second .contact-foot .titler {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    color: var(--main-color);
}

.pricing-page section.second .contact-foot .number {
    font-weight: 800;
    font-size: 55px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    padding: 0.2em 0.3em;
    border-radius: 18px;
    background: var(--main-color);
    color: var(--main-text-color);
}




@media (max-width: 767.98px) {
    .pricing-page table.main .desc {
        font-size: 12px;
        width: 250px;
    }

    .pricing-page section.second ul .desc {
        font-size: 13px;
    }




    .pricing-page section.second .contact-foot .working-time {
        font-size: 16px;
    }

    .pricing-page section.second .contact-foot .number {
        font-size: 35px;
    }

    .pricing-page section.second ul {
        columns: 1;
    }

    .pricing-page table.main td .title {
        font-size: 15px;
    }

    .pricing-page table.main th .title {
        font-size: 20px;
    }





    .pricing-page table.main .price {
        font-size: 17px;
        white-space: nowrap;
    }

    .pricing-page table.main th .specth {
        font-size: 14px;
        min-height: 65px;
        white-space: nowrap;
    }

}












/** global **/


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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 32px;
    height: 32px;
    text-decoration: none;
    border-radius: 6px;
    color: var(--main-text-color);
    background: var(--main-color);
    transition: transform 0.1s ease-in;
}

.social-links a:hover {
    transform: scale(1.05);
}



.social-links a.facebook {
    background: #1877f2;
    color: #fff;
}
.social-links a.youtube {
    background: #ff0000;
    color: #fff;
}
.social-links a.instagram {
    background: #c32aa3;
    color: #fff;
}
.social-links a.linkedin {
    background: #0a66c2;
    color: #fff;
}
.social-links a.tiktok {
    background: #010101;
    color: #fff;
}
.social-links a.x-twitter {
    background: #000;
    color: #fff;
}



/******* NOT FOUND PAGE *******/

.not-found-page h1.head {
    font-size: 175px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -18px;
    color: var(--second-color);
    text-shadow: -4px 0 #272727;
    margin-left: -18px;
}

.not-found-page {
    background: #272727;
}

.not-found-page h1.head .first {
    z-index: 1;
    position: relative;
}

.not-found-page h1.head .second {
    z-index: 2;
    position: relative;
}

.not-found-page p {
    text-align: center;
    position: relative;
    top: 40px;
    color: #fff;
    font-weight: 500;
}

.not-found-page h1.head .third {
    z-index: 3;
    position: relative;
}

@media (max-width: 767.98px) {

    .not-found-page h1.head {
        font-size: 105px;
        letter-spacing: -10px;
        margin-left: -10px;
    }

    .not-found-page p {
        top: 20px;
    }
}



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

#myBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 10px;
    z-index: 99;
    font-size: 25px;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.45);
}

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