* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #009f4d;
    --bg-color: #fff;
    --font-color: #3f3a64;
}

body,
html {
    font-family: "Jost", sans-serif;
}

.radius-image {
    border-radius: 8px;
}

.generic-paragraph {
    font-size: 17px;
    line-height: 27px;
    color: #666;
    opacity: 0.8;
}

.title > h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1px;
    color: #7e7d7d;
}
.title > h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    color: var(--font-color);
}

.title-bold-small a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
    position: relative;
    text-decoration: none;
}

a.zoom img {
    transition: 0.3s ease-in-out;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

/* ////////////////////////// */

/* dark theme customization */

.dark {
    --font-color: white;
    background-color: #151421;
}

.dark .shape path {
    fill: #151421;
}

.dark p {
    color: #c2c2c2;
}

.dark .vision__item {
    background-color: #151421;
}

/* header dark */

.dark header.nav-fixed {
    background-color: #151421;
}

.dark .navbar-expand-lg .navbar-nav .dropdown-menu,
.dark .navbar-expand-lg .navbar-nav .dropdown-menu:before {
    background: #151421;
}

/* end header dark */

/* start gallary dark */
.dark .brands__logo {
    border-top: 1px solid rgba(238, 238, 238, 0.142);
}

.dark .news .card {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 98px 0 rgb(0, 0, 0, 0.04);
}

.dark .card-footer {
    background: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .card__logo img {
    border-radius: 50%;
}

.dark .card-footer .card__author span.author__by {
    opacity: 1;
}

.dark .card-footer .card__date p {
    font-weight: 600;
}

/* Light theme */

#switchButton {
    background: none;
    outline: none;
    border: none;
}
#switchButton .fa-sun {
    font-size: 25px;
    display: none;
    color: white;
}
#switchButton .fa-moon {
    display: block;
    font-size: 25px;
    color: white;
}

/* Dark Theme*/
.dark #switchButton {
    background-color: none;
    outline: none;
    border: none;
}
.dark #switchButton .fa-sun {
    display: block;
    color: white;
}

.dark #switchButton .fa-moon {
    display: none;
}

.dark .testimonial,
.dark .vision,
.dark .myGallery {
    background-color: #100f19;
}

@media screen and (max-width: 1280px) {
    #switchButton {
        position: absolute;
        right: 20px;
        top: 45px;
    }
    .header-search {
        position: absolute;
        right: 50px;
        top: 38px;
    }
}

@media only screen and (max-width: 991px) {
    .header-search {
        position: absolute;
        right: 110px;
        top: 39px;
    }
    .control .btn-material {
        line-height: 40px;
        text-align: center;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .search-input input {
        position: absolute;
        right: -50%;
        width: initial;
    }
    .header-search .icon-close {
        right: -50px;
    }

    #switchButton {
        right: 80px;
        top: 45px;
    }
}

@media only screen and (max-width: 736px) {
    .header-search .icon-close {
        right: -110px;
        z-index: 9;
    }
    .search-input input {
        position: absolute;
        right: -80px;
    }
}

@media only screen and (max-width: 568px) {
    .search-input input {
        font-size: 46px;
    }
    .header-search .icon-close {
        right: -60px;
        z-index: 9;
        font-size: 45px;
    }
}

@media only screen and (max-width: 480px) {
    .header-search {
        top: 30px;
    }
    .search-input input {
        font-size: 40px;
    }

    #switchButton {
        right: 60px;
        top: 38px;
    }
}

@media only screen and (max-width: 415px) {
    .search-input input {
        right: -125px;
    }
}

@media only screen and (max-width: 375px) {
    .search-input input {
        font-size: 35px;
    }
    .header-search .icon-close {
        font-size: 35px;
    }
}

/* ////////////////////////// */

/* HEADER */

.header__wrap {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.267);
}

/* HEADER SEARCH */

body {
    /* Search Active */
}
body.search-active {
    overflow: hidden;
}

body.search-active .search-input {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

body.search-active .icon-close {
    opacity: 1;
    transform: rotate(-90deg);
}

body.search-active .control {
    cursor: default;
}

body.search-active .control .btn-material {
    transform: scale(70);
}

body.search-active .control .icon-material-search {
    opacity: 0;
}

/* Close Icon */
.header-search .icon-close {
    position: absolute;
    color: #fff;
    cursor: pointer;
    font-size: 70px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Search Input */
.search-input {
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50px;
    margin-top: -40px;
    pointer-events: none;
    opacity: 0;
    transform: translate(40px, 0);
    transition: all 0.3s ease-in-out;
    width: 88%;
}
.search-input input {
    color: #fff;
    font-size: 54px;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: 0;
    font-weight: 200;
    height: 100vh;
    width: 100%;
}
.search-input ::-webkit-input-placeholder {
    color: #eee;
}
.search-input :-moz-placeholder {
    color: #eee;
    opacity: 1;
}
.search-input ::-moz-placeholder {
    color: #eee;
    opacity: 1;
}
.search-input :-ms-input-placeholder {
    color: #eee;
}

/* control button */

.control {
    cursor: pointer;
}

.control .btn-material {
    line-height: 45px;
    text-align: center;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    box-sizing: border-box;
    background: var(--primary-color);
    outline: 0;
    transform-origin: 50%;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.control .icon-material-search {
    color: #fff;
    transition: opacity 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
    .control .btn-material {
        line-height: 40px;
        text-align: center;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .search-input input {
        position: absolute;
        right: -50%;
        width: initial;
    }
    .header-search .icon-close {
        right: -50px;
    }
}

.mobile-position {
    position: absolute;
    right: 44px;
    top: 18px;
}

@media only screen and (max-width: 736px) {
    .header-search .icon-close {
        right: -110px;
        z-index: 9;
    }
    .search-input input {
        position: absolute;
        right: -80px;
    }
}

@media only screen and (max-width: 568px) {
    .search-input input {
        font-size: 46px;
    }
    .header-search .icon-close {
        right: -60px;
        z-index: 9;
        font-size: 45px;
    }
}

@media only screen and (max-width: 480px) {
    .header-search {
        top: 30px;
        right: 80px;
    }
    .search-input input {
        font-size: 40px;
    }

    .themeBtn {
        top: 35px;
        right: 60px;
    }
}

.mobile-position {
    top: 13px;
}

@media only screen and (max-width: 415px) {
    .search-input input {
        right: -125px;
    }
}

@media only screen and (max-width: 375px) {
    .search-input input {
        font-size: 35px;
    }
    .header-search .icon-close {
        font-size: 35px;
    }
}

/* toggle switch */
/*-- toggle switch --*/
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
}

.theme-switch {
    display: inline-block;
    position: relative;
    margin: 0;
}

.theme-switch input {
    display: none;
}

.mode-container {
    width: 24px;
    height: 24px;
    padding: 1px 0;
}

.gg-sun {
    position: relative;
    transform: scale(var(--ggs, 1));
    height: 24px;
    background: linear-gradient(180deg, currentColor 4px, transparent 0)
            no-repeat 5px -6px/2px 6px,
        linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px
            14px/2px 6px,
        linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat -8px 5px/6px
            2px,
        linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 14px
            5px/6px 2px;
    border-radius: 100px;
    box-shadow: inset 0 0 0 2px;
    border: 6px solid transparent;
}

.gg-moon {
    overflow: hidden;
    position: relative;
    transform: rotate(-135deg) scale(var(--ggs, 1));
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-bottom: 2px solid transparent;
}

.gg-moon,
.gg-moon:after {
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    color: #eee;
}

.nav-fixed .gg-moon,
.nav-fixed .gg-moon:after {
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    color: var(--heading-color);
}

.nav-fixed #switchButton .fa-moon {
    color: black;
}

.gg-moon:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 18px;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px;
    top: 8px;
    left: 2px;
}

.gg-sun,
.gg-sun:after,
.gg-sun:before {
    box-sizing: border-box;
    display: block;
    width: 24px;
    color: #eee;
}

.gg-sun:after,
.gg-sun:before {
    content: "";
    position: absolute;
    height: 2px;
    border-right: 4px solid;
    border-left: 4px solid;
    left: -6px;
    top: 5px;
}

.gg-sun:before {
    transform: rotate(-45deg);
}

.gg-sun:after {
    transform: rotate(45deg);
}

.mode-container i.gg-sun {
    display: none;
}

.mode-container i.gg-moon {
    display: block;
}

input:checked + .mode-container i.gg-sun {
    display: block;
}

input:checked + .mode-container i.gg-moon {
    display: none;
}

/* fixed menu bar */

.dropdown-active {
    background: rgba(0, 0, 0, 0.7);
    /* text-align: center; */
}

header.nav-fixed {
    padding: 0px;
    background-color: var(--bg-color);

    border-bottom: none;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}

.nav-fixed .navbar .navbar-brand .logo,
.nav-fixed .navbar .navbar-brand span:first-child,
.nav-fixed .navbar .darkLight i {
    color: var(--font-color);
}

.nav-fixed .navbar .navbar-collapse .navbar-nav .nav-item a {
    color: var(--font-color);
    opacity: 0.7;
}

.nav-fixed .navbar .navbar-collapse .navbar-nav .active a {
    color: #00a63f;
}

.fixed__top {
    position: fixed;
    top: 0;
    z-index: 1999;
}

/* END fixed header */

header {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.navbar .navbar-brand .fa-solid {
    color: var(--primary-color);
    font-size: 30px;
    margin-right: 10px;
}

.navbar .navbar-brand span:first-child {
    font-weight: 800;
    font-size: 35px;
    vertical-align: center;
    color: white;
}

.navbar .navbar-brand .logo {
    font-size: 14px;
    padding-left: 65px;
    opacity: 0.9;
    text-transform: none;
    font-weight: 600;
    color: white;
}

.navbar-collapse {
    text-align: center;
}

.navbar .navbar-collapse .navbar-nav .nav-item {
    text-transform: uppercase;
    font-weight: 800;
}

.navbar .navbar-collapse .navbar-nav .nav-item a {
    color: white;
    font-weight: 600;
}

.header__icon {
    display: flex;
}

.navbar .header__search i {
    font-size: 15px;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
    color: white;
}

.navbar .darkLight i {
    font-size: 25px;
    padding: 15px;
    color: white;
}

.fa-bars,
.fa-times {
    color: white;
    background-color: var(--primary-color);
    padding: 5px;
    vertical-align: center;
    border-radius: 5px;
}

button.navbar-toggler .icon-close {
    display: block;
}

button.navbar-toggler .icon-expand {
    display: none;
}

button.navbar-toggler.collapsed .icon-close {
    display: none;
}

button.navbar-toggler.collapsed .icon-expand {
    display: block;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    transform: translateX(-50px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu:before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--bg-color);
    border: 1px solid #eee;
    display: block;
    border-right: none;
    border-bottom: none;
    transform: translateX(-50%) rotateZ(45deg);
    position: absolute;
    top: -7px;
    left: 49%;
    z-index: 1001;
}

.navbar.dropdown .nav-item a.dropdown-item {
    color: black;
}

.navbar .navbar-collapse .navbar-nav .nav-item {
    text-transform: uppercase;
    font-weight: 800;
}
.navbar .navbar-collapse .navbar-nav .nav-item a {
    color: #fff;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu a {
    color: var(--font-color);
    font-size: 15px;
    background: none;
    opacity: 0.8;
    font-weight: 600;
    padding: 6px 20px;
    text-transform: uppercase;
}

@media (max-width: 1280px) {
    .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu a {
        text-align: center;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        transform: translateX(-40px);
    }

    .navbar .navbar-collapse .navbar-nav .nav-item a {
        font-weight: 600;
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-collapse .navbar-nav .nav-item a {
        font-weight: 600;
        padding: 10px;
    }

    .dropdown-toggle::after {
        right: 0px;
    }

    .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .navbar .navbar-brand .fa-solid {
        font-size: 25px;
    }

    .navbar {
        padding-left: 0;
    }

    .navbar .navbar-brand span:first-child {
        font-size: 25px;
    }
    .navbar .navbar-brand .logo {
        transform: translateX(-15%);
    }

    /* .header__icon .header__search,
    .header__icon .darkLight {
        position: absolute;
        z-index: 1;
    } */

    .header__icon .header__search {
        right: 150px;
        top: 20px;
    }

    .header__icon .darkLight {
        right: 200px;
        top: 20px;
    }

    .navbar-toggler {
        padding: 0;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu a {
        text-align: center;
    }
}

/* CAROUSEL */

.myCarousel {
    height: auto;
    position: relative;
    overflow: hidden;
}

.carousel__sliders {
    height: 100%;
}

.bg1 {
    background: url(../img/b1.jpg) no-repeat top;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg2 {
    background: url(../img/b2.jpg) no-repeat top;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg3 {
    background: url(../img/b3.jpg) no-repeat top;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg4 {
    background: url(../img/b4.jpg) no-repeat top;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.slick-initialized .carousel__slide {
    position: relative;
    min-height: 800px;
    padding-bottom: 100px;
    display: flex !important;
    align-items: center;
}

.carousel__sliders .slick-arrow {
    position: absolute;
    right: 25px;
    bottom: 50px;
    font-size: 0;
    background: var(--bg-color);
    border: 0;
    width: 50px;
    height: 50px;
    z-index: 12;
    outline: none;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
}

.carousel__sliders .slick-arrow:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 16px;
    text-align: center;
    line-height: 46px;
    color: var(--heading-color);
}

.carousel__sliders .slick-arrow.slick-prev {
    right: 95px;
}

.carousel__sliders .slick-arrow.slick-prev:before {
    content: "\f060";
}

.carousel__sliders .slick-arrow.slick-next {
    right: 25px;
}

.carousel__sliders .slick-arrow.slick-next:before {
    content: "\f061";
}

.carousel__sliders .container {
    position: relative;
    z-index: 10;
    margin-top: 100px;
}

.carousel__slide .carousel__content {
    color: #fff;
}

.carousel__content p {
    font-size: 20px;
    max-width: 600;
    color: white;
    opacity: 0.9;
}

.carousel__content h2 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 800px;
    line-height: 1.1;
}

.carousel__content .cta-btn {
    padding-top: 30px;
}

.cta-btn a {
    padding: 15px 50px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 8px;
    font-weight: 800;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.cta-btn a:hover {
    background-color: #008030;
    border-color: #00732c;
    color: #fff;
}

.carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 42, 55, 0.7);
    z-index: 1;
}

.shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.svg {
    overflow: hidden;
    vertical-align: center;
}

.shape path {
    fill: var(--bg-color);
}

.slick-arrow.slick-prev {
    right: 95px;
}

@media (max-width: 1280px) {
    .carousel__content h2 {
        font-size: 50px;
    }

    .carousel__sliders .container {
        margin-top: 0;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .carousel__content h2 {
        font-size: 27px;
    }

    .carousel__sliders .container {
        margin-top: 150px;
        padding: 0;
    }

    .slick-initialized .carousel__slide {
        min-height: 550px;
    }

    .carousel__slide .cta-btn a {
        font-size: 16px;
        padding: 12px 30px;
    }

    .carousel__sliders .slick-arrow.slick-prev {
        right: 85px;
    }
}

/* ABOUT US SECTION */

.checklist__link {
    text-decoration: none;
    list-style-type: none;
    margin-bottom: 15px;
}

.checklist__link span {
    color: var(--primary-color);
}

.checklist__link a {
    text-decoration: none;
}

@media (max-width: 1280px) {
    .about-us .title h3,
    .about-us .title h2 {
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .about-us .title h3 {
        font-size: 16px;
        font-weight: 600;
    }

    .about-us .title h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
    }
}

/* VISION  */

.vision {
    background-color: #f7f7f7;
    margin-top: 50px;
}

.vision__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.vision__item {
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: rgb(1, 1, 1, 0.05) 1px 1px 5px 0px;
    background-color: white;
}

.vision__item:hover {
    transform: translateY(-0.25rem);
    box-shadow: rgb(46 41 51 / 8%) 0px 2px 4px, rgb(71 63 79 / 16%) 0px 5px 10px;
    -webkit-transition: 0.3s ease;
}

.vision__item a {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 25px;
    display: block;
    color: var(--font-color);
    text-decoration: none;
}

.vision__item a:hover {
    color: #009f4d;
    transition: all 0.5s;
}

@media (max-width: 1280px) {
    .vision .title h3,
    .vision .title h2 {
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .vision .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .vision .title h3 {
        margin-bottom: 0;
    }

    .vision .cta-btn {
        margin-bottom: 32px;
    }

    .vision .vision__item {
        padding: 20px 20px;
    }

    .vision .vision__item img {
        width: 45px;
    }

    .vision .vision__item a {
        font-size: 18px;
    }

    .vision .vision__grid {
        gap: 15px;
    }
}

/* SERVICES */

.services__details a:first-of-type {
    padding: 12px 35px;
    font-size: 19px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    background: #fff;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 8px;
    transform: translateY(-25px);
    box-shadow: rgb(1 1 1 / 5%) 1px 1px 5px 0px;
}

.services__details a:nth-of-type(2) {
    font-size: 16px;
    padding: 16px;
    line-height: 28px;
    font-weight: 800;
    border-radius: 8px;
}

.services__details a:hover {
    color: #009f4d;
    transition: all 0.5s;
}

.services__details a:nth-of-type(2):hover {
    color: #009f4d;
    transition: all 0.5s;
}

.dark .services__details a:first-of-type {
    background-color: #151421;
}
@media (max-width: 1280px) {
    .services .title h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .services .title h2 {
        font-size: 24px;
        margin-bottom: 0;
    }
}

/* GALLERY */
.myGallery {
    background-color: #f8f9fa;
}

.myGallery a.zoom {
    overflow: hidden;
    position: relative;
}

.myGallery a:hover img {
    overflow: hidden;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.gallery__content {
    color: white;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 42, 55, 0.7);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: all 0.5s;
}

.gallary__content {
    position: absolute;
    bottom: -100%;
    left: 0;
    padding: 46px 50px;
    color: white;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
}

.project__title {
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.project__description {
    font-size: 18px;
    color: #eee;
    display: block;
}

.myGallery a:hover .gallery__overlay {
    opacity: 1;
    visibility: visible;
}

.myGallery a:hover .gallary__content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.brands__logo img {
    transform: scale(0.7);
}

.brands__logo {
    border-top: 1px solid #eee;
}

@media (max-width: 1280px) {
    .myGallery .title h3,
    .myGallery .title h2 {
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .myGallery .title h2 {
        font-size: 24px;
        line-height: 30px;
    }
}
/* STATISTICS */

.progress {
    display: flex;
    height: 4px;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: var(--bg-grey);
    border-radius: 0.25rem;
}

.statistics .progress-infor {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.statistics .progress-bar {
    background-color: var(--primary-color);
    transition: width 0.6s ease;
}

.progress-bar.gradient-1:before,
.progress-bar.gradient-2:before,
.progress-bar.gradient-3:before,
.progress-bar.gradient-4:before {
    height: 28px;
    width: 28px;
    border: 1px solid;
    opacity: 0.3;
}

.progress-bar.gradient-1:after,
.progress-bar.gradient-2:after,
.progress-bar.gradient-3:after,
.progress-bar.gradient-4:after {
    height: 13px;
    width: 13px;
    border: 3px solid;
    background-color: var(--bg-color);
}

/* color for each button */
.statistics .progress-bar.gradient-1 {
    color: #61fded;
    background-color: #0d8abc;
    background-image: linear-gradient(-224deg, #0d8abc, #61fded);
}

.progress-bar.gradient-1:after,
.progress-bar.gradient-1:before {
    content: "";
    position: absolute;
    right: 20%;
    top: 90%;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.progress-bar.gradient-2 {
    color: #eece90;
    background-color: #d45529;
    background-image: linear-gradient(-224deg, #d45529, #eece90);
}

.progress-bar.gradient-2:after,
.progress-bar.gradient-2:before {
    content: "";
    position: absolute;
    right: 5%;
    top: 90%;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.progress-bar.gradient-3 {
    color: #5c51ff;
    background-color: #f646a9;
    background-image: linear-gradient(-224deg, #f646a9, #5c51ff);
}

.progress-bar.gradient-3:after,
.progress-bar.gradient-3:before {
    content: "";
    position: absolute;
    right: 40%;
    top: 90%;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.progress-bar.gradient-4 {
    color: #e5529a;
    background-color: #e77654;
    background-image: linear-gradient(-224deg, #e77654, #e5529a);
}

.progress-bar.gradient-4:after,
.progress-bar.gradient-4:before {
    content: "";
    position: absolute;
    right: 15%;
    top: 90%;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.progress-bar-striped {
    background-image: none;
    background-size: cover;
}

.statistics .progress-infor h6.progress__title {
    font-size: 18px;
    color: var(--font-color);
    margin-bottom: 10px;
    font-weight: 400;
}

.statistics .infor1 h6.progress__title {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 80%;
}

.statistics .infor2 h6.progress__title {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 95%;
}

.statistics .infor3 h6.progress__title {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 60%;
}
.statistics .infor4 h6.progress__title {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 85%;
}
.statistics img.statistics__img {
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .statistics img.statistics__img {
        margin-top: 50px;
    }
}

@media (max-width: 1028px) {
    .statistics .title h3 {
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .statistics .title h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        margin-bottom: 25px;
    }
    .statistics img.statistics__img {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .statistics .title h3 {
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .statistics .title h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }
}
/* TESTIMONIAL */

.testimonial {
    background-color: #f8f9fa;
}

.testimonial__item {
    padding: 40px 30px;
    display: block;
    position: relative;
    border: none;
    max-width: 900px;
    margin: auto;
}

.testimonial__people {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    grid-gap: 20px;
}

.testimonial__item blockquote p {
    font-size: 18px;
    line-height: 28px;
    color: #666;
    opacity: 0.8;
}

.testimonial__people .testimonial__img {
    width: 70px;
    height: 70px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial__people .testimonial__desc h3 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
    color: var(--font-color);
}

.testimonial__people .testimonial__desc p {
    margin-bottom: 0;
    font-size: normal;
    opacity: 0.8;
}

.testimonial .owl-dot {
    border: none;
    background: transparent;
}

.testimonial .testimonial__content .owl-dot span:hover {
    transform: scale(1.5);
    background: #213364;
    opacity: 1;
}

.testimonial .testimonial__content .owl-dot.active span {
    transform: scale(1.5);
    background: #213364;
    opacity: 1;
}

@media (max-width: 1028px) {
    .testimonial .title h3 {
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .testimonial .title h2 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .testimonial .title h3 {
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .testimonial .title h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }

    .testimonial__item {
        padding: 15px 0px 30px;
    }

    .testimonial__item p {
        margin-bottom: 30px;
    }
}

/* BLOGS */
.news .card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 0.25rem;
    box-shadow: 0 25px 98px 0 rgb(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.card .card__header img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card a {
    text-decoration: none;
}

.card__details .category {
    font-weight: 400;
    font-size: 17px;
    color: #999;
}

.blog-desc {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
    margin-top: 10px;
}

a.blog-desc:hover {
    color: #009f4d;
    transition: all 0.5s;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-top: 1px solid #eee;
}

.card-footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.card-footer .card__author span.author__by {
    color: #666;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.6;
}

.card-footer .card__author a {
    color: var(--font-color);
    font-weight: 600;
}

.card-footer .card__date p {
    color: #666;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
}

.card-footer a.author__name:hover {
    color: #009f4d;
    transition: all 0.5s;
}

.card__header a.zoom {
    overflow: hidden;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
}

.card__header a.zoom:hover img {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

@media (max-width: 1028px) {
    .news .title h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .testimonial .title h3 {
    }

    .news .title h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }
}

/* SUBSCRIBE */
.subscription {
    background-image: url(../img/map.png);
    background-color: #151421;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.subscription h3.title-big {
    color: #fff;
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
}

.subscription .header-section p {
    color: #eee;
}

.bottom-info {
    max-width: 700px;
    margin: 0 auto;
}

form.subscribe {
    margin-top: 25px;
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    max-width: 550px;
    margin: auto;
}

.subscribe .input-group-text {
    color: #999;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
    padding: 0 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.subscribe input[type="email"] {
    padding: 14px 20px;
    font-size: 16px;
    line-height: 28px;
    border: 1px solid var(--border-color-light);
    outline: none;
    width: 100%;
    background: var(--bg-color);
    border-radius: 0;
    color: #999;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
    border-left: none;
}

.subscribe button.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 25px;
    font-size: 16px;
    background: #00a63f;
    border-color: #00a63f;
    font-weight: 600;
}

.subscribe button.btn:hover {
    background-color: #008030;
    border-color: #00732c;
    color: #fff;
}

@media (max-width: 1028px) {
    .subscription h3.title-big {
        font-size: 32px;
        line-height: 40px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .subscription h3.title-big {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }

    .subscribe button.btn {
        padding: 0 20px;
    }
}

/* FOOTER */
.footer__main {
    background: #151421;
    border-top: 1px solid rgba(249, 249, 249, 0.1);
}

.footer__main h6.footer__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__main .navbar-brand {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    opacity: 1;
}

.footer__main .navbar-brand span.fa {
    color: var(--primary-color);
    margin-right: 5px;
    vertical-align: bottom;
}

.footer__main .navbar-brand span.logo {
    text-transform: none;
    display: block;
    font-size: 14px;
    padding-left: 46px;
    font-weight: 600;
    opacity: 0.9;
}

.footer__main .footer__item ul li,
.footer__main .midd-footer-29:nth-child(1) .footer__item ul li:last-child {
    list-style: none;
    margin-bottom: 10px;
}

.footer__main .footer__item ul li:last-child {
    margin-bottom: 0px;
}

.footer__main p {
    font-size: 18px;
    line-height: 28px;
    color: #97a1a9;
}

.footer__main .footer__item ul li a,
.footer__main .footer__item ul li p,
.copy-right .footer__item ul li a,
.footer__main a {
    font-size: 18px;
    line-height: 28px;
    color: #97a1a9;
    opacity: 0.8;
    text-decoration: none;
}

.footer__main .footer__item ul li a:hover,
.copy-right .footer__item ul li a:hover,
.footer__main a:hover {
    color: #fff;
    opacity: 1;
}

.social__icon a {
    margin-right: 15px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    background: none;
    border-radius: 50%;
    transition: 0.3s;
    color: #97a1a9;
    opacity: 0.6;
}

.social__icon a:hover {
    transition: 0.3s;
    color: #fff;
    opacity: 1;
}

.footer__item ul li span.fa {
    width: 25px;
}

.copy-right .copy__footer a {
    color: var(--primary-color);
}

.copy-right .copy__footer a:hover {
    color: #fff;
}

.copy-right {
    padding: 1.5em 0;
    border-top: 1px solid rgba(249, 249, 249, 0.1);
}

.footer__main .footer-29 form {
    margin-top: 25px;
    position: relative;
}

.footer__main .footer-post a {
    font-weight: 500;
    color: #ccc;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 4px;
    display: inline-block;
}

.copy-right #movetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    padding: 0;
    line-height: 36px;
    border-radius: 35px;
    transition: 0.3s ease-out;
}

.footer__main .footer-post a:hover {
    color: #eee;
}

.footer__main .map-iframe-ft iframe {
    -webkit-filter: var(--iframe-filter);
    -moz-filter: var(--iframe-filter);
    -ms-filter: var(--iframe-filter);
    -o-filter: var(--iframe-filter);
    filter: var(--iframe-filter);
    height: 200px;
    border-radius: var(--border-radius);
}

.copy-right p.copy__footer {
    align-self: center;
    color: #7f8a94;
    font-size: 17px;
    letter-spacing: 0.5px;
    opacity: 1;
}

/* BACK TO TOP  */
.backToTop {
    width: 50px;
    height: 50px;
    background: #00a63f;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    display: block;
    position: fixed;
    right: 25px;
    bottom: 25px;
    color: #fff;
    transition: all 0.2s;
    visibility: hidden;
    opacity: 0;
}

a.backToTop:hover{
    color: white;
}

.cd-top--is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top--fade-out {
    opacity: 0.9;
}

/* RESPONSIVE */

/* animation starts here  */

@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
