/*
Theme Name: Eduzio
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Education HTML Template
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #005BFF;
    --theme-2: #00E2C5;
    --theme-3: #FFD25D;
    --header: #031F42;
    --base: #2EB97E;
    --text: #808080;
    --text2: #ffffffcc;
    --border: #E6E6E6;
    --border2: #373737;
    --ratting: #F8BC26;
    --bg: #F4F9FF;
    --bg2: #0D0D0D;
    --box-shadow: 10px 4px 60px rgba(190, 190, 190, 0.25);
}

.theme-btn {
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 15px;
    border: none;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
    padding: 18px 30px;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
}

    .theme-btn i {
        margin-left: 5px;
    }

    .theme-btn::after, .theme-btn::before {
        content: "";
        display: block;
        width: 50px;
        height: 50px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        border-radius: 50%;
        z-index: -1;
        background-color: var(--header);
        -webkit-transition: 1s ease;
        transition: 1s ease;
    }

    .theme-btn::before {
        top: -2em;
        left: -2em;
    }

    .theme-btn::after {
        left: calc(100% + 2em);
        top: calc(100% + 2em);
    }

    .theme-btn:hover {
        color: var(--white);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .theme-btn:hover::after, .theme-btn:hover::before {
            height: 410px;
            width: 410px;
        }

    .theme-btn.hover-white::after, .theme-btn.hover-white::before {
        background-color: var(--white);
    }

    .theme-btn.hover-white:hover {
        color: var(--header);
    }

    .theme-btn.pink-btn {
        background-color: var(--theme-3);
        color: var(--header);
    }

        .theme-btn.pink-btn:hover {
            color: var(--white);
        }

@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.link-btn {
    letter-spacing: 1.2px;
    text-transform: capitalize;
    color: var(--header);
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
}

    .link-btn i {
        margin-left: 5px;
    }

    .link-btn:hover {
        color: var(--theme);
    }

    .link-btn.white-btn {
        color: var(--white);
    }

        .link-btn.white-btn:hover {
            color: var(--theme);
        }

    .link-btn.color-2:hover {
        color: var(--theme-2);
    }

    .link-btn.color-3:hover {
        color: var(--theme-3);
    }

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "League Spartan", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    /* text-transform: capitalize; */
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 120%;
}

h2 {
    font-size: 52px;
    line-height: 120%;
    font-weight: 700;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 133%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

    .preloader .animation-preloader {
        z-index: 1000;
    }

        .preloader .animation-preloader .spinner {
            -webkit-animation: spinner 1s infinite linear;
            animation: spinner 1s infinite linear;
            border-radius: 50%;
            border: 3px solid rgba(0, 0, 0, 0.2);
            border-top-color: var(--theme);
            height: 9em;
            margin: 0 auto 3.5em auto;
            width: 9em;
        }

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "League Spartan", sans-serif, "Poppins", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative;
}

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.2s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
        -webkit-animation-delay: 1.4s;
        animation-delay: 1.4s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading::before {
        -webkit-animation: letters-loading 4s infinite;
        animation: letters-loading 4s infinite;
        color: var(--header);
        content: attr(data-text-preloader);
        left: 0;
        opacity: 0;
        font-family: "League Spartan", sans-serif;
        position: absolute;
        top: -3px;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

    .preloader .loader .row {
        height: 100%;
    }

    .preloader .loader .loader-section {
        padding: 0px;
    }

        .preloader .loader .loader-section .bg {
            background-color: #fff;
            height: 100%;
            left: 0;
            width: 100%;
            -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
            transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
        }

.preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}

    .search-wrap .search-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .search-wrap .search-cell {
        position: absolute;
        top: 50%;
        width: 100%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .search-wrap .search-field-holder {
        width: 50%;
        margin: auto;
        position: relative;
        -webkit-animation: slideInUp 0.3s;
        animation: slideInUp 0.3s;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--header);
    border-bottom: 2px solid var(--header);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--header);
}

input.main-search-input::-webkit-input-placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input::-ms-input-placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input::placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::-webkit-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input:-ms-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input::-ms-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input::placeholder {
        font-size: 18px;
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .scroll-up::after {
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        content: "\f176";
        text-align: center;
        line-height: 50px;
        font-weight: 700;
        font-size: 18px;
        color: var(--theme);
        left: 0;
        top: 0;
        height: 50px;
        width: 50px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .scroll-up svg path {
        fill: none;
    }

    .scroll-up svg.scroll-circle path {
        stroke: var(--theme);
        stroke-width: 4px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .scroll-up.active-scroll {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        z-index: 999;
    }

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

@media (max-width: 767px) {
    .mouse-cursor {
        display: none;
    }
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

    .cursor-inner.cursor-hover {
        margin-left: -35px;
        margin-top: -35px;
        width: 70px;
        height: 70px;
        background-color: var(--theme);
        opacity: 0.3;
    }

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

    .cursor-outer.cursor-hover {
        opacity: 0;
    }

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}

    .search-wrap .search-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .search-wrap .search-cell {
        position: absolute;
        top: 50%;
        width: 100%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .search-wrap .search-field-holder {
        width: 50%;
        margin: auto;
        position: relative;
        -webkit-animation: slideInUp 0.3s;
        animation: slideInUp 0.3s;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme);
}

input.main-search-input::-webkit-input-placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input::-ms-input-placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::-webkit-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input:-ms-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input::-ms-input-placeholder {
        font-size: 18px;
    }

    input.main-search-input::placeholder {
        font-size: 18px;
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -5px;
}

@media (max-width: 767px) {
    .section-title {
        text-align: center;
        margin-bottom: 0;
    }
}

.section-title h6 {
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: var(--theme);
    position: relative;
    display: inline-block;
}

@media (max-width: 575px) {
    .section-title h6 {
        margin-bottom: 10px;
    }
}

.section-title h6::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bar/top-bar.png);
    -webkit-animation: width 1.5s linear 2 !important;
    animation: width 1.5s linear 2 !important;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-position: center;
}

.section-title h6.text-white::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bar/white-bar.png);
    -webkit-animation: width 1.5s linear !important;
    animation: width 1.5s linear !important;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-position: center;
}

.section-title.color-pink h6 {
    position: relative;
    color: var(--theme-3);
}

    .section-title.color-pink h6::before {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        content: "";
        width: 100%;
        height: 6px;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(../img/bar/yellow-bar.svg);
        -webkit-animation: width 1.5s linear !important;
        animation: width 1.5s linear !important;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        background-position: center;
    }

.section-title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title-area {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.section-title-area .section-title {
    margin-bottom: 0;
}

.section-title-area .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .section-title-area .nav .nav-item .nav-link {
        font-size: 16px;
        font-weight: 500;
        color: var(--text);
    }

        .section-title-area .nav .nav-item .nav-link.active {
            color: var(--header);
            position: relative;
            display: inline-block;
        }

            .section-title-area .nav .nav-item .nav-link.active::before {
                position: absolute;
                bottom: 5px;
                left: 50%;
                right: 0;
                content: "";
                width: 100%;
                height: 5px;
                background-size: cover;
                background-repeat: no-repeat;
                background-image: url(../img/bar/tab-bar.png);
                -webkit-animation: width 1.5s linear !important;
                animation: width 1.5s linear !important;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
                background-position: center;
                max-width: 70px;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg) !important;
}

.section-bg-2 {
    background-color: var(--bg2);
}

.section-padding {
    padding: 70px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@-webkit-keyframes cir36 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes cir36 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rounded {
    50% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
}

@keyframes rounded {
    50% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
}

@-webkit-keyframes rounded-2 {
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

@keyframes rounded-2 {
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animation__rotate {
    -webkit-animation: rotate 40s linear infinite;
    animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderpulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes loaderpulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@-webkit-keyframes top-image-bounce {
    0% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    50% {
        -webkit-transform: translateX(12px);
        transform: translateX(12px);
    }

    100% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@keyframes top-image-bounce {
    0% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    50% {
        -webkit-transform: translateX(12px);
        transform: translateX(12px);
    }

    100% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@-webkit-keyframes top-image-bounce-2 {
    0% {
        -webkit-transform: translatey(-8px);
        transform: translatey(-8px);
    }

    50% {
        -webkit-transform: translatey(12px);
        transform: translatey(12px);
    }

    100% {
        -webkit-transform: translatey(-8px);
        transform: translatey(-8px);
    }
}

@keyframes top-image-bounce-2 {
    0% {
        -webkit-transform: translatey(-8px);
        transform: translatey(-8px);
    }

    50% {
        -webkit-transform: translatey(12px);
        transform: translatey(12px);
    }

    100% {
        -webkit-transform: translatey(-8px);
        transform: translatey(-8px);
    }
}

@-webkit-keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@-webkit-keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes moveCursor2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0;
}

    .header-main .main-menu ul {
        margin-bottom: 0;
    }

        .header-main .main-menu ul li {
            position: relative;
            list-style: none;
            display: inline-block;
            -webkit-margin-end: 45px;
            margin-inline-end: 45px;
        }

@media (max-width: 1899px) {
    .header-main .main-menu ul li {
        -webkit-margin-end: 35px;
        margin-inline-end: 35px;
    }
}

@media (max-width: 1600px) {
    .header-main .main-menu ul li {
        -webkit-margin-end: 30px;
        margin-inline-end: 30px;
    }
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li {
        -webkit-margin-end: 25px;
        margin-inline-end: 10px;
    }
}

.header-main .main-menu ul li:last-child {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: var(--header);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-family: "League Spartan", sans-serif;
}

    .header-main .main-menu ul li a .head-icon {
        margin-left: 0;
        margin-right: 3px;
    }

    .header-main .main-menu ul li a i {
        margin-left: 5px;
    }

    .header-main .main-menu ul li a:hover {
        color: var(--theme) !important;
    }

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 250px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    color: var(--header);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
    box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
    /*-webkit-transform: translateY(10px);
    transform: translateY(10px);*/
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 30px 30px;
}

    .header-main .main-menu ul li .submenu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .header-main .main-menu ul li .submenu li:not(:last-child) {
            padding-bottom: 15px;
        }

        .header-main .main-menu ul li .submenu li a {
            position: relative;
            z-index: 11;
            font-size: 18px;
            font-weight: 400;
            color: var(--header);
            padding: 0 0;
            padding-bottom: 0;
            padding-top: 0;
            text-transform: capitalize;
            font-family: "League Spartan", sans-serif;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

            .header-main .main-menu ul li .submenu li a:hover {
                color: var(--white) !important;
            }

        .header-main .main-menu ul li .submenu li:last-child a {
            border: none;
        }

        .header-main .main-menu ul li .submenu li .submenu {
            inset-inline-start: 113%;
            top: 0;
            visibility: hidden;
            opacity: 0;
        }

        .header-main .main-menu ul li .submenu li:hover > a {
            color: var(--theme) !important;
        }

            .header-main .main-menu ul li .submenu li:hover > a::after {
                color: var(--theme);
            }

        .header-main .main-menu ul li .submenu li:hover > .submenu {
            -webkit-transform: translateY(1);
            transform: translateY(1);
            visibility: visible;
            opacity: 1;
        }

        .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
            position: absolute;
            top: 50%;
            inset-inline-end: 25px;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            color: var(--theme);
        }

.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    /* left: -250px; */
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
        position: relative;
        overflow: hidden;
    }

        .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
            width: 100%;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
        text-align: center;
        margin: 15px auto;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
    }

        .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
            color: var(--header);
        }

            .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
                color: var(--theme) !important;
            }

.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

    .header-main .main-menu ul li:hover > a::after {
        color: var(--theme);
    }

.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.header-main .header-right {
    gap: 30px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .header-right .search-icon {
    color: var(--header);
    font-size: 18px;
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--header);
}

.header-1 .container-fluid {
    padding: 0 70px;
}

@media (max-width: 1899px) {
    .header-1 .container-fluid {
        padding: 0 20px;
    }
}

@media (max-width: 1199px) {
    .header-1 .container-fluid {
        padding: 0 30px;
    }
}

.header-1 .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    max-width: 415px;
    width: 100%;
}

@media (max-width: 1899px) {
    .header-1 .header-left {
        max-width: 360px;
        gap: 25px;
    }
}

@media (max-width: 1600px) {
    .header-1 .header-left {
        max-width: 340px;
    }
}

@media (max-width: 1399px) {
    .header-1 .header-left {
        max-width: initial;
        width: initial;
    }
}

@media (max-width: 1199px) {
    .header-1 .header-left {
        max-width: 415px;
        width: 100%;
    }
}

.header-1 .header-left .category-oneadjust {
    max-width: 215px;
    width: 100%;
    position: relative;
}

@media (max-width: 1399px) {
    .header-1 .header-left .category-oneadjust {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-1 .header-left .category-oneadjust {
        display: block;
    }
}

@media (max-width: 575px) {
    .header-1 .header-left .category-oneadjust {
        display: none;
    }
}

.header-1 .header-left .category-oneadjust .dot {
    position: absolute;
    top: 15px;
    left: 15px;
}

.header-1 .header-left .category-oneadjust .nice-select {
    width: unset !important;
    gap: 20px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 91, 255, 0.1);
    background: rgba(0, 91, 255, 0.05);
    padding: 20px 35px 20px 40px;
    line-height: 1;
}

    .header-1 .header-left .category-oneadjust .nice-select::after {
        width: 8px;
        height: 8px;
        right: 20px;
        top: 52%;
    }

    .header-1 .header-left .category-oneadjust .nice-select span {
        font-size: 14px;
        font-weight: 500;
        color: var(--header);
    }

    .header-1 .header-left .category-oneadjust .nice-select .selected.focus {
        background-color: var(--theme);
        color: var(--white);
        font-weight: 500;
    }

    .header-1 .header-left .category-oneadjust .nice-select .focus {
        background-color: transparent;
    }

    .header-1 .header-left .category-oneadjust .nice-select .option:hover {
        background-color: transparent;
        color: var(--header);
    }

    .header-1 .header-left .category-oneadjust .nice-select .list {
        max-height: 15vh;
        background: var(--bg);
        width: 100%;
        padding: 5px 8px;
        overflow-y: scroll;
    }

@media (max-width: 1199px) {
    .header-1 .header-left .category-oneadjust .nice-select .list {
        right: -60px;
    }
}

.header-1 .header-left .category-oneadjust .nice-select .list li {
    color: var(--header);
    font-size: 14px;
    border: none;
}

.header-1 .header-right {
    gap: 40px;
}

@media (max-width: 1199px) {
    .header-1 .header-right {
        gap: 20px;
    }
}

.header-1 .header-right .header-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199px) {
    .header-1 .header-right .header-button {
        display: none;
    }
}

.header-1 .header-right .header-button .theme-btn {
    padding: 16px 24px;
}

    .header-1 .header-right .header-button .theme-btn.style-2 {
        background: var(--theme-3);
        border: 1px solid var(--border);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        color: var(--header);
    }

@media (max-width: 1600px) {
    .header-1 .header-right .header-button .theme-btn.style-2 {
        display: none;
    }
}

.header-1 .header-right .header-button .theme-btn.style-2 i {
    margin-left: 0;
    margin-right: 0;
}

.header-1 .header-right .header-button .theme-btn.style-2:hover {
    color: #fff;
}

.header-1 .search-toggle {
    color: var(--header);
    font-size: 16px;
}

.header-1 .sidebar__toggle {
    cursor: pointer;
}

    .header-1 .sidebar__toggle .header-bar {
        position: relative;
        width: 31px;
        height: 18px;
    }

        .header-1 .sidebar__toggle .header-bar span {
            position: absolute;
            width: 100%;
            height: 2px;
            display: inline-block;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            left: 0;
            background: var(--header);
            overflow: hidden;
        }

            .header-1 .sidebar__toggle .header-bar span:first-child {
                top: 0;
                background: var(--header);
                left: 16px;
                width: 15px;
            }

            .header-1 .sidebar__toggle .header-bar span:nth-child(2) {
                top: 44%;
                background: var(--header);
                width: 30px;
            }

            .header-1 .sidebar__toggle .header-bar span:last-child {
                bottom: 0;
                background: var(--header);
                width: 15px;
            }

        .header-1 .sidebar__toggle .header-bar.active span:first-child {
            -webkit-transform: rotate(45deg) translate(3px, 9px);
            transform: rotate(45deg) translate(3px, 9px);
        }

        .header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
            opacity: 0;
        }

        .header-1 .sidebar__toggle .header-bar.active span:last-child {
            -webkit-transform: rotate(-45deg) translate(3px, -9px);
            transform: rotate(-45deg) translate(3px, -9px);
        }

        .header-1 .sidebar__toggle .header-bar:hover {
            cursor: pointer;
        }

.header-2 {
    background-color: var(--white);
    -webkit-box-shadow: 10px 4px 60px 0px rgba(184, 184, 184, 0.25);
    box-shadow: 10px 4px 60px 0px rgba(184, 184, 184, 0.25);
    /* border-top: 1px solid var(--border); */
}

    .header-2 .header-logo {
        display: none;
    }

@media (max-width: 1199px) {
    .header-2 .header-logo {
        display: block;
    }
}

.header-2 .header-right {
    gap: 20px;
}

    .header-2 .header-right .icon-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }

        .header-2 .header-right .icon-items i {
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 50%;
            background-color: #C3F499;
            font-size: 14px;
        }

        .header-2 .header-right .icon-items h6 {
            font-size: 14px;
            font-weight: 600;
        }

            .header-2 .header-right .icon-items h6 a {
                color: var(--header);
            }

    .header-2 .header-right .header-button .theme-btn {
        padding: 14px 20px;
    }

@media (max-width: 1199px) {
    .header-2 .header-right .header-button .theme-btn {
        display: none;
    }
}

.header-2 .sidebar__toggle {
    cursor: pointer;
}

    .header-2 .sidebar__toggle .header-bar {
        position: relative;
        width: 31px;
        height: 18px;
    }

        .header-2 .sidebar__toggle .header-bar span {
            position: absolute;
            width: 100%;
            height: 2px;
            display: inline-block;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            left: 0;
            background: var(--header);
            overflow: hidden;
        }

            .header-2 .sidebar__toggle .header-bar span:first-child {
                top: 0;
                background: var(--header);
                left: 16px;
                width: 15px;
            }

            .header-2 .sidebar__toggle .header-bar span:nth-child(2) {
                top: 44%;
                background: var(--header);
                width: 30px;
            }

            .header-2 .sidebar__toggle .header-bar span:last-child {
                bottom: 0;
                background: var(--header);
                width: 15px;
            }

        .header-2 .sidebar__toggle .header-bar.active span:first-child {
            -webkit-transform: rotate(45deg) translate(3px, 9px);
            transform: rotate(45deg) translate(3px, 9px);
        }

        .header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
            opacity: 0;
        }

        .header-2 .sidebar__toggle .header-bar.active span:last-child {
            -webkit-transform: rotate(-45deg) translate(3px, -9px);
            transform: rotate(-45deg) translate(3px, -9px);
        }

        .header-2 .sidebar__toggle .header-bar:hover {
            cursor: pointer;
        }

.header-top {
    padding: 17px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-top {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .header-top .top-logo {
        display: none;
    }
}

.header-top .category-oneadjust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 991px) {
    .header-top .category-oneadjust {
        display: none !important;
    }
}

.header-top .category-oneadjust .icon {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--theme);
}

.header-top .category-oneadjust .nice-select {
    width: 226px !important;
    gap: 20px;
    font-size: 16px;
    border: 1px solid rgba(0, 91, 255, 0.1);
    padding: 16px 20px;
    border-radius: 10px 0px 0px 10px;
    border-right: none !important;
    padding-left: 40px;
    background-color: #F4F9FF;
    position: relative;
}

    .header-top .category-oneadjust .nice-select::before {
        position: absolute;
        top: 23px;
        left: 15px;
        content: "";
        width: 13px;
        height: 13px;
        background-size: cover;
        background-image: url("../img/logo/dot.png");
    }

    .header-top .category-oneadjust .nice-select::after {
        margin-top: 0;
        right: 20px;
        top: 37%;
    }

    .header-top .category-oneadjust .nice-select span {
        font-weight: 500;
        color: var(--header);
    }

    .header-top .category-oneadjust .nice-select .list {
        /* max-height: 15vh; */
        background: var(--header);
        width: 100%;
        padding: 5px 8px;
        overflow-y: scroll;
        right: 0;
    }

        .header-top .category-oneadjust .nice-select .list li {
            color: var(--white);
            font-size: 14px;
            border: none;
        }

.header-top .category-oneadjust .search-toggle-box {
    width: 400px;
}

@media (max-width: 1399px) {
    .header-top .category-oneadjust .search-toggle-box {
        width: 270px;
    }
}

@media (max-width: 1399px) {
    .header-top .category-oneadjust .search-toggle-box {
        width: 710px;
    }
}

@media (max-width: 991px) {
    .header-top .category-oneadjust .search-toggle-box {
        width: 250px;
    }
}

.header-top .category-oneadjust .search-toggle-box .input-area {
    position: relative;
}

    .header-top .category-oneadjust .search-toggle-box .input-area input {
        outline: none;
        border: 1px solid rgba(0, 91, 255, 0.1);
        background: #F4F9FF;
        padding: 14px 20px;
        width: 100%;
        border-radius: 0px 10px 10px 0px;
        color: var(--text);
        font-weight: 500;
    }

        .header-top .category-oneadjust .search-toggle-box .input-area input::-webkit-input-placeholder {
            color: var(--text);
            font-weight: 500;
        }

        .header-top .category-oneadjust .search-toggle-box .input-area input:-ms-input-placeholder {
            color: var(--text);
            font-weight: 500;
        }

        .header-top .category-oneadjust .search-toggle-box .input-area input::-ms-input-placeholder {
            color: var(--text);
            font-weight: 500;
        }

        .header-top .category-oneadjust .search-toggle-box .input-area input::placeholder {
            color: var(--text);
            font-weight: 500;
        }

    .header-top .category-oneadjust .search-toggle-box .input-area .cmn-btn {
        font-size: 18px;
        color: var(--theme);
        position: relative;
        top: 8px;
        right: 45px;
    }

.header-section-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

    .sticky.header-2 .header-logo {
        display: block;
    }

    .sticky.header-2 .header-main .main-menu ul li {
        -webkit-margin-end: 25px;
        margin-inline-end: 25px;
    }

@media (max-width: 1399px) {
    .sticky.header-2 .header-button .theme-btn {
        display: none;
    }
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

    .offcanvas__info.info-open {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

.offcanvas__logo a img {
    max-width: 200px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

    .offcanvas__wrapper .offcanvas-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .offcanvas__wrapper .offcanvas__content p {
        color: var(--header);
    }

    .offcanvas__wrapper .offcanvas__content .offcanvas__close {
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--theme);
        position: relative;
        z-index: 9;
        cursor: pointer;
    }

        .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
            color: var(--white);
        }

    .offcanvas__wrapper .offcanvas__content .social-icon {
        margin-top: 30px;
        gap: 10px;
        margin-bottom: 30px;
    }

        .offcanvas__wrapper .offcanvas__content .social-icon a {
            width: 52px;
            height: 52px;
            line-height: 52px;
            text-align: center;
            font-size: 16px;
            display: block;
            background: transparent;
            color: var(--header);
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            text-align: center;
            border: 1px solid var(--border);
        }

            .offcanvas__wrapper .offcanvas__content .social-icon a:hover {
                background-color: var(--theme);
                color: var(--white);
                border: 1px solid var(--theme);
            }

    .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
        margin-top: 20px;
    }

        .offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
            font-size: 16px;
            color: var(--header);
        }

            .offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
                margin-bottom: 10px;
            }

            .offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
                font-weight: 600;
                color: var(--header);
                font-size: 18px;
            }

            .offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
                font-size: 16px;
                color: var(--header);
            }

        .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
            text-transform: initial;
        }

        .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 300px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

@media (max-width: 1399px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

    .offcanvas__overlay.overlay-open {
        opacity: 0.8;
        visibility: visible;
    }

@media (max-width: 450px) {
    .offcanvas__info {
        width: 350px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}

    .breadcrumb-wrapper .page-heading {
        position: relative;
        z-index: 9;
        text-align: center;
    }

        .breadcrumb-wrapper .page-heading h1 {
            font-size: 60px;
            position: relative;
            z-index: 9;
            line-height: 1.2;
        }

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 32px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
    color: var(--header);
    font-weight: 500;
    text-transform: capitalize;
}

    .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
        color: var(--header);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
            color: var(--theme);
        }

    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        color: var(--theme);
    }

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        font-size: 16px;
    }
}

.breadcrumb-wrapper .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

    .breadcrumb-wrapper .shape-1 img {
        width: 100%;
        height: 100%;
    }

.breadcrumb-wrapper .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

    .breadcrumb-wrapper .shape-2 img {
        width: 100%;
        height: 100%;
    }

.error-items .error-image {
    margin-bottom: 50px;
}

    .error-items .error-image img {
        width: 100%;
        height: 100%;
    }

.coming-soon-page-area {
    height: 100vh;
    width: 100%;
    background: var(--theme);
    padding: 200px 0;
    min-height: 500px;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
}

    .coming-soon-content .title {
        color: var(--white);
        font-size: 100px;
    }

@media (max-width: 991px) {
    .coming-soon-content .title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .coming-soon-content .title {
        font-size: 62px;
    }
}

@media (max-width: 575px) {
    .coming-soon-content .title {
        font-size: 48px;
    }
}

.coming-soon-content .coming-soon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    max-width: 650px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px auto;
    text-align: center;
}

@media (max-width: 1199px) {
    .coming-soon-content .coming-soon ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.coming-soon-content .coming-soon ul li span {
    font-size: 42px;
    color: var(--white);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    border: 3px solid var(--white);
    display: inline-block;
}

@media (max-width: 1199px) {
    .coming-soon-content .coming-soon ul li span {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 32px;
    }
}

.coming-soon-content .coming-soon ul li p {
    color: var(--white);
    margin-top: 10px;
    text-transform: uppercase;
}

.coming-soon-content .form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
    overflow: hidden;
}

    .coming-soon-content .form input {
        color: var(--header);
        width: 100%;
        padding: 19px 35% 19px 30px;
        border: none;
        outline: none;
        text-transform: capitalize;
        font-size: 16px;
        border-radius: 5px;
        display: inline-block;
    }

@media (max-width: 575px) {
    .coming-soon-content .form input {
        font-size: 14px;
    }
}

.coming-soon-content .form .theme-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    padding: 16px 35px;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

    .mean-container .mean-nav > ul .homemenu {
        position: relative;
    }

        .mean-container .mean-nav > ul .homemenu .homemenu-thumb {
            position: relative;
            width: 280px;
        }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                width: 60%;
                gap: 10px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                opacity: 0;
                visibility: hidden;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
                    padding: 10px 30px;
                    color: var(--white) !important;
                    width: initial;
                    font-size: 14px;
                    text-align: center;
                }

                    .mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
                        color: var(--white) !important;
                    }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
                background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
                background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                overflow: hidden;
                opacity: 0;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                content: "";
            }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
                visibility: visible;
                opacity: 1;
            }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
                opacity: 1;
                visibility: visible;
                margin-top: 0;
            }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
                opacity: 1;
                visibility: visible;
                bottom: 50%;
                -webkit-transform: translateY(50%);
                transform: translateY(50%);
            }

            .mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
                width: 100%;
            }

        .mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
            margin-top: 15px;
            display: inline-block;
            font-size: 16px;
        }

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

    .mean-container .mean-nav ul li a.border-none {
        border: none;
    }

    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }

    .mean-container .mean-nav ul li a .head-icon {
        /* display: none; */
    }

    .mean-container .mean-nav ul li a:last-child {
        border-bottom: 0;
    }

    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }

    .mean-container .mean-nav ul li a.mean-expand {
        margin-top: 10px;
        padding: 0 !important;
    }

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav ul li.menu-thumb {
        display: none;
    }
}

.hero-1 {
    padding: 80px 0 100px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content {
        text-align: center;
    }
}

.hero-1 .hero-content h1 {
    font-size: 90px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 35px;
    }
}

.hero-1 .hero-content h1 span {
    color: var(--theme);
    position: relative;
}

    .hero-1 .hero-content h1 span img {
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 90%;
    }

@media (max-width: 991px) {
    .hero-1 .hero-content h1 span img {
        display: none;
    }
}

.hero-1 .hero-content p {
    font-size: 20px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content p {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content p {
        font-size: 16px;
        margin-top: 20px;
    }
}

.hero-1 .hero-content .hero-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content .hero-button {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content .hero-button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.hero-1 .hero-content .hero-button .button-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
}

.hero-1 .hero-content .hero-button .button-text .video-btn {
    width: 55px;
    height: 55px;
    line-height: 55px;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--header);
    border-radius: 50%;
    text-align: center;
    color: var(--header);
}

.hero-1 .hero-image-items .hero-image {
    position: relative;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image-items .hero-image img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image-items .hero-image img {
        width: initial;
        height: initial;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-image-items .hero-image img {
        width: 100%;
        height: 100%;
    }
}

.hero-1 .hero-image-items .hero-image .hero-shape {
    position: absolute;
    top: 56%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 1399px) {
    .hero-1 .hero-image-items .hero-image .hero-shape img {
        width: initial;
        height: initial;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-image-items .hero-image .hero-shape {
        display: none;
    }
}

.hero-1 .hero-image-items .hero-image .counter-box {
    background-color: var(--white);
    z-index: 9;
    position: absolute;
    top: 5px;
    right: -105px;
    padding: 30px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 10px 4px 60px rgba(168, 168, 168, 0.25);
    box-shadow: 10px 4px 60px rgba(168, 168, 168, 0.25);
}

@media (max-width: 1399px) {
    .hero-1 .hero-image-items .hero-image .counter-box {
        right: initial;
        left: 0;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image-items .hero-image .counter-box {
        right: 0;
        left: initial;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-image-items .hero-image .counter-box {
        display: none;
    }
}

.hero-1 .hero-image-items .hero-image .counter-box p {
    font-size: 18px;
}

.hero-1 .hero-image-items .hero-image .counter-box h2 {
    color: var(--theme);
    font-size: 50px;
}

.hero-2 {
    background-color: #031F42;
    padding: 130px 0 0;
    position: relative;
}

    .hero-2 .shape-left {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 99;
    }

@media (max-width: 1199px) {
    .hero-2 .shape-left {
        display: none;
    }
}

.hero-2 .shape-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 1199px) {
    .hero-2 .shape-right {
        display: none;
    }
}

.hero-2 .dot-shape {
    position: absolute;
    left: 110px;
    top: 50%;
}

.hero-2 .vector-shape {
    position: absolute;
    right: 110px;
    top: 30%;
}

.hero-2 .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

    .hero-2 .hero-content span {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -0.44px;
        display: inline-block;
        position: relative;
        color: var(--theme-3);
        padding-bottom: 10px;
        width: 270px;
    }

        .hero-2 .hero-content span::before {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            content: "";
            width: 100%;
            height: 5px;
            background-size: cover;
            background-repeat: no-repeat;
            background-image: url(../img/bar/yellow-bar-3.png);
            -webkit-animation: width 1.5s linear 3 !important;
            animation: width 1.5s linear 3 !important;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            background-position: center;
        }

@media (max-width: 767px) {
    .hero-2 .hero-content span {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content span {
        font-size: 18px;
    }
}

.hero-2 .hero-content span img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 5px;
    -webkit-animation: width 3.5s linear infinite;
    animation: width 3.5s linear infinite;
}

.hero-2 .hero-content h1 {
    color: var(--white);
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 90px;
}

@media (max-width: 1399px) {
    .hero-2 .hero-content h1 {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 54px;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-2 .hero-content h3 {
    color: var(--white);
    font-size: 27px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .hero-2 .hero-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h3 {
        font-size: 20px;
    }
}

.hero-2 .hero-content .hero-button {
    margin-top: 50px;
}

.hero-2 .hero-image {
    max-width: 1070px;
    margin: 130px auto 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .hero-2 .hero-image {
        height: 630px;
    }

        .hero-2 .hero-image img {
            -o-object-fit: cover;
            object-fit: cover;
        }
}

@media (max-width: 767px) {
    .hero-2 .hero-image {
        height: 520px;
    }
}

.hero-2 .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 7px 7px 0px 0px;
}

.hero-2 .hero-image .counter-box {
    background-color: var(--white);
    z-index: 9;
    position: absolute;
    bottom: 130px;
    left: -230px;
    padding: 35px 50px;
    border-radius: 10px;
}

@media (max-width: 1899px) {
    .hero-2 .hero-image .counter-box {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-image .counter-box {
        padding: 30px 50px;
        border-radius: 0;
    }
}

.hero-2 .hero-image .counter-box p {
    font-size: 18px;
}

.hero-2 .hero-image .counter-box h2 {
    color: var(--theme);
    font-size: 65px;
}

@media (max-width: 767px) {
    .hero-2 .hero-image .counter-box h2 {
        font-size: 40px;
    }
}

.hero-2 .hero-image .rating-box {
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 10px;
    position: absolute;
    top: -100px;
    right: -140px;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1899px) {
    .hero-2 .hero-image .rating-box {
        right: 0px;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-image .rating-box {
        padding: 20px 30px;
        display: -ms-grid;
        display: grid;
        gap: 10px;
    }
}

.hero-2 .hero-image .rating-box h2 {
    font-size: 65px;
}

@media (max-width: 767px) {
    .hero-2 .hero-image .rating-box h2 {
        font-size: 40px;
    }
}

.hero-2 .hero-image .rating-box p {
    font-size: 18px;
}

.hero-2 .hero-image .rating-box .star {
    color: #FFAE5D;
}

.hero-2 .hero-image .rating-box img {
    padding-left: 50px;
    width: initial;
    border-left: 1px solid var(--border);
}

.hero-2 .hero-image .circle-img {
    position: absolute;
    top: -55px;
    left: -55px;
    z-index: -1;
}

.hero-3 {
    position: relative;
}

    .hero-3 .array-button {
        position: absolute;
        top: 50%;
        right: 55px;
        display: -ms-grid;
        display: grid;
        z-index: 9;
        gap: 20px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

@media (max-width: 1199px) {
    .hero-3 .array-button {
        top: 50%;
    }
}

@media (max-width: 991px) {
    .hero-3 .array-button {
        display: none;
    }
}

.hero-3 .array-button .arry-prev {
    background-color: var(--theme-3);
    color: var(--header);
}

.hero-3 .swiper-slide-active .hero-image {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.hero-3 .hero-image {
    overflow: hidden;
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -2;
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

    .hero-3 .hero-image::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #02000c;
        opacity: 0.749;
    }

.hero-3 .hero-content {
    position: relative;
    padding-top: 180px;
    padding-bottom: 200px;
}

@media (max-width: 575px) {
    .hero-3 .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

.hero-3 .hero-content h5 {
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .hero-3 .hero-content h5 {
        margin-bottom: 15px;
    }
}

.hero-3 .hero-content h1 {
    font-size: 80px;
    line-height: 110%;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 74px;
    }
}

@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 62px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }
}

.hero-3 .hero-content p {
    color: var(--white);
    margin-top: 20px;
}

.hero-3 .hero-content .hero-button {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .hero-3 .hero-content .hero-button {
        margin-top: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.hero-3 .hero-content .hero-button .theme-btn {
    background-color: var(--theme-3);
    color: var(--header);
}

    .hero-3 .hero-content .hero-button .theme-btn:hover {
        color: var(--white);
    }

.hero-3 .hero-content .hero-button .video-btn {
    background-color: var(--theme-3);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

    .hero-3 .hero-content .hero-button .video-btn::before {
        position: absolute;
        top: 50%;
        left: 50%;
        right: 0;
        bottom: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid var(--theme-3);
        content: "";
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.hero-3 .hero-content .hero-button .button-text span {
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
}

.counter-section {
    position: relative;
    z-index: 9;
}

    .counter-section .line-shape {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

.counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: -35px;
}

@media (max-width: 991px) {
    .counter-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.counter-wrapper .counter-items .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background: var(--theme);
    margin: 0 auto;
}

@media (max-width: 575px) {
    .counter-wrapper .counter-items .icon {
        width: 85px;
        height: 85px;
        line-height: 85px;
    }
}

.counter-wrapper .counter-items .icon.bg-2 {
    background: var(--theme-2);
}

.counter-wrapper .counter-items .icon.bg-3 {
    background: var(--theme-3);
}

.counter-wrapper .counter-items .icon.bg-4 {
    background: #F69B17;
}

.counter-wrapper .counter-items .content {
    text-align: center;
    margin: 30px auto;
}

    .counter-wrapper .counter-items .content h2 {
        margin-bottom: 10px;
    }

.counter-section-2 {
    position: relative;
    z-index: 9;
}

    .counter-section-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        height: 50%;
        background-color: var(--bg);
        z-index: -1;
    }

.counter-wrapper-2 {
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    padding: 60px 50px;
}

    .counter-wrapper-2 .counter-box-items {
        border: 1px solid var(--border);
        border-radius: 5px;
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

    .counter-wrapper-2.style-2 {
        margin-top: -120px;
        position: relative;
        z-index: 9;
        background-color: var(--white);
    }

.work-card-items {
    margin-top: 30px;
    position: relative;
    text-align: center;
}

    .work-card-items .icon {
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
        position: relative;
        margin: 0 auto;
        font-size: 48px;
        color: var(--theme-2);
    }

        .work-card-items .icon .number {
            width: 34px;
            height: 34px;
            line-height: 34px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--theme-2);
            color: var(--white);
            position: absolute;
            top: 0;
            left: 0;
            font-weight: 400;
        }

    .work-card-items .content {
        margin-top: 30px;
    }

        .work-card-items .content h3 {
            margin-bottom: 10px;
        }

.main-choose-us-wrapper {
    position: relative;
}

    .main-choose-us-wrapper .choose-us-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

@media (max-width: 1199px) {
    .main-choose-us-wrapper .choose-us-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .main-choose-us-wrapper .choose-us-top {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.main-choose-us-wrapper .choose-us-top .icon-items {
    max-width: 220px;
}

    .main-choose-us-wrapper .choose-us-top .icon-items .icon {
        width: 130px;
        height: 130px;
        line-height: 140px;
        text-align: center;
        border-radius: 50%;
        font-size: 60px;
        color: var(--header);
        background-color: var(--theme-2);
    }

@media (max-width: 767px) {
    .main-choose-us-wrapper .choose-us-top .icon-items .icon {
        margin: 0 auto;
    }
}

.main-choose-us-wrapper .choose-us-top .icon-items .content {
    margin-top: 50px;
}

    .main-choose-us-wrapper .choose-us-top .icon-items .content h2 {
        font-size: 55px;
        margin-bottom: 5px;
    }

.main-choose-us-wrapper .choose-us-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 345px;
}

@media (max-width: 1199px) {
    .main-choose-us-wrapper .choose-us-bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .main-choose-us-wrapper .choose-us-bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items {
    max-width: 220px;
    margin-top: 110px;
    margin-left: 90px;
}

@media (max-width: 1199px) {
    .main-choose-us-wrapper .choose-us-bottom .icon-items {
        margin-left: 0;
        margin-top: 30px;
    }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
    width: 130px;
    height: 130px;
    line-height: 150px;
    text-align: center;
    border-radius: 50%;
    font-size: 60px;
    color: var(--white);
    background-color: var(--theme);
}

@media (max-width: 767px) {
    .main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
        margin: 0 auto;
    }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .content {
    margin-top: 25px;
}

    .main-choose-us-wrapper .choose-us-bottom .icon-items .content h2 {
        font-size: 55px;
        margin-bottom: 5px;
    }

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
    margin-top: -185px;
    margin-left: 0;
}

@media (max-width: 1199px) {
    .main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
        margin-top: 0;
    }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 .icon {
    background-color: var(--theme-3);
    color: var(--header);
}

.main-choose-us-wrapper .line-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .main-choose-us-wrapper .line-shape {
        display: none;
    }
}

.main-choose-us-wrapper .line-shape img {
    width: 100%;
    height: 100%;
}

.choose-us-box-4 {
    margin-top: 30px;
    padding: 35px;
    background-color: var(--white);
    position: relative;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .choose-us-box-4 {
        padding: 30px;
        text-align: center;
    }
}

.choose-us-box-4::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid var(--theme-3);
    border-left: 1px solid var(--theme-3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: initial;
    transform: initial;
    border-radius: 10px;
}

.choose-us-box-4::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid var(--theme-3);
    border-right: 1px solid var(--theme-3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
}

.choose-us-box-4 .icon {
    font-size: 55px;
    color: var(--theme-3);
}

.choose-us-box-4 .content {
    margin-top: 30px;
}

    .choose-us-box-4 .content h4 {
        margin-bottom: 15px;
        line-height: 150%;
        font-size: 24px;
    }

    .choose-us-box-4 .content p {
        line-height: 188%;
    }

.choose-us-box-4:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.choose-us-box-4:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transform: initial;
    transform: initial;
    -webkit-transform-origin: initial;
    transform-origin: initial;
}

.choose-us-4 {
    background-color: #F8F2EC;
}

.choose-us-section-3 {
    position: relative;
}

.choose-us-wrapper-3 .video-image {
    max-width: 1165px;
    position: relative;
}

    .choose-us-wrapper-3 .video-image img {
        width: 100%;
        height: 100%;
    }

    .choose-us-wrapper-3 .video-image .video-btn {
        width: 130px;
        height: 130px;
        line-height: 130px;
        text-align: center;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.6) 14.64%, rgba(255, 255, 255, 0.5) 86.55%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        color: var(--white);
    }

@media (max-width: 767px) {
    .choose-us-wrapper-3 .video-image .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

.choose-us-wrapper-3 .choose-content {
    background-color: #102F25;
    padding: 100px;
    margin-left: -80px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 1399px) {
    .choose-us-wrapper-3 .choose-content {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {
    .choose-us-wrapper-3 .choose-content {
        margin-left: 0;
        margin-top: 0;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .choose-us-wrapper-3 .choose-content {
        text-align: center;
    }
}

.choose-us-wrapper-3 .choose-content .circle-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.choose-us-wrapper-3 .choose-content .icon-items {
    margin-top: 50px;
}

    .choose-us-wrapper-3 .choose-content .icon-items .icon {
        color: var(--white);
        font-size: 50px;
        margin-bottom: 20px;
    }

    .choose-us-wrapper-3 .choose-content .icon-items h3 {
        color: var(--white);
    }

.feature-wrapper-3 {
    background-color: var(--white);
    border-radius: 7px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1899px) {
    .feature-wrapper-3 {
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
    }
}

@media (max-width: 575px) {
    .feature-wrapper-3 .feature-wrapper-3 {
        padding-bottom: 50px;
    }
}

.feature-wrapper-3 .feature-card-items {
    text-align: center;
    border-right: 1px solid var(--theme);
    padding: 40px 20px;
}

@media (max-width: 1199px) {
    .feature-wrapper-3 .feature-card-items {
        border-right: none;
        padding: 30px 20px;
    }
}

.feature-wrapper-3 .feature-card-items .icon {
    font-size: 55px;
    color: var(--theme);
}

.feature-wrapper-3 .feature-card-items .content {
    margin-top: 20px;
}

    .feature-wrapper-3 .feature-card-items .content h5 {
        margin-bottom: 10px;
    }

.feature-wrapper-3.style-2 {
    background-color: var(--white);
    -webkit-box-shadow: 10px 4px 60px rgba(190, 190, 190, 0.25);
    box-shadow: 10px 4px 60px rgba(190, 190, 190, 0.25);
}

    .feature-wrapper-3.style-2 .feature-card-items {
        border-right: 1px solid var(--border);
    }

        .feature-wrapper-3.style-2 .feature-card-items .icon {
            color: var(--theme);
        }

@media (max-width: 991px) {
    .about-wrapper {
        margin-top: -29px;
    }
}

@media (max-width: 767px) {
    .about-wrapper {
        margin-top: -104px;
    }
}

.about-wrapper .about-image {
    margin-left: 0%;
    max-width: 585px;
    margin-top: 80px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-image {
        max-width: 1000px;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

.about-wrapper .about-content {
    max-width: 700px;
    margin-top: 37px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }
}

.about-wrapper .about-content p {
    font-size: 20px;
    color: var(--header);
    line-height: 175%;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content p {
        text-align: center;
    }
}

.about-wrapper .about-content .counter-box-items {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .counter-box-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .counter-box-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.about-wrapper .about-content .counter-box-items .counter-content {
    border-right: 1px solid var(--border);
    padding-right: 150px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .counter-box-items .counter-content {
        padding-right: 0;
        border-right: none;
    }
}

.about-wrapper .about-content .counter-box-items .counter-content h2 {
    font-size: 85px;
}

@media (max-width: 767px) {
    .about-wrapper .about-content .counter-box-items .counter-content h2 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .counter-box-items .counter-content h2 {
        font-size: 46px;
    }
}

.about-wrapper .about-content .counter-box-items .counter-content p {
    font-size: 18px;
    color: var(--text);
}

.about-wrapper .about-content .counter-box-items .text {
    max-width: 270px;
    color: var(--text);
    font-size: 16px;
}

.about-wrapper .about-content .theme-btn {
    background-color: transparent;
    color: var(--header);
    border: 1px solid var(--header);
}

    .about-wrapper .about-content .theme-btn::before, .about-wrapper .about-content .theme-btn::after {
        background-color: var(--theme);
    }

    .about-wrapper .about-content .theme-btn:hover {
        color: var(--white);
        border: 1px solid var(--theme);
    }

.about-wrapper .about-image-items {
    position: relative;
    margin-right: -10px;
    text-align: right;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image-items {
        text-align: left;
    }
}

.about-wrapper .about-image-items .about-image-2 img {
    border-radius: 7px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image-items .about-image-2 img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-image-items .about-image-2 img {
        height: 600px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-image-2 img {
        height: 500px;
    }
}

.about-wrapper .about-image-items .about-image-3 {
    position: absolute;
    bottom: -100px;
    left: -60px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image-items .about-image-3 {
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-image-items .about-image-3 {
        height: 300px;
    }
}

.about-wrapper .about-image-items .about-image-3 img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-wrapper-2 .about-image-items {
    position: relative;
}

    .about-wrapper-2 .about-image-items .counter-shape {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px;
        padding: 24px;
        background-color: var(--white);
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
        position: absolute;
        top: 80px;
        left: -80px;
        z-index: 1;
    }

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .counter-shape {
        left: 0;
        top: initial;
        bottom: 0;
    }
}

.about-wrapper-2 .about-image-items .counter-shape .content h3 {
    font-size: 28px;
    font-weight: bold;
}

.about-wrapper-2 .about-image-items .about-image-1 {
    max-width: 415px;
    height: 445px;
    position: relative;
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image-items .about-image-1 {
        max-width: 560px;
    }
}

.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    position: absolute;
    bottom: -13%;
    right: -35%;
}

    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 9;
    }

        .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .video-buttton {
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--theme);
            display: inline-block;
            z-index: 9;
            font-size: 18px;
            color: var(--white);
            position: relative;
        }

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .video-buttton {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .video-buttton {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::before, .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::after {
    width: 80px;
    height: 80px;
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::before, .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::before, .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 .video-box .ripple::after {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
        right: -20%;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
        width: 200px;
        bottom: 0;
        right: -10%;
    }

        .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 img {
            width: 100%;
        }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
        width: 180px;
        bottom: initial;
        top: 0;
        right: 0;
    }
}

.about-wrapper-2 .about-image-items .about-image-1::after {
    content: "";
    width: 100%;
    height: 88%;
    position: absolute;
    right: -55px;
    top: 20%;
    border: 3px solid var(--theme);
    z-index: -1;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-image-items .about-image-1::after {
        right: -30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image-items .about-image-1::after {
        width: 100%;
        height: 88%;
        right: -30px;
        top: 17%;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-image-items .about-image-1::after {
        display: none;
    }
}

.about-wrapper-2 .about-content .about-list {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

    .about-wrapper-2 .about-content .about-list ul li {
        font-weight: 500;
        color: var(--header);
    }

        .about-wrapper-2 .about-content .about-list ul li:not(:last-child) {
            margin-bottom: 15px;
        }

        .about-wrapper-2 .about-content .about-list ul li i {
            margin-right: 5px;
            color: var(--theme);
            font-size: 18px;
        }

.about-wrapper-2 .about-content .about-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content .about-author {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.about-wrapper-2 .about-content .about-author .author-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

    .about-wrapper-2 .about-content .about-author .author-image img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }

    .about-wrapper-2 .about-content .about-author .author-image .content h6 {
        margin-bottom: 5px;
    }

.about-wrapper-2.style-2 {
    margin-bottom: 45px;
}

@media (max-width: 1399px) {
    .about-wrapper-2.style-2 {
        margin-bottom: 10px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-2.style-2 {
        margin-bottom: 0;
    }
}

.about-wrapper-2.style-2 .about-image-items .circle-shape {
    position: absolute;
    top: 10%;
    right: 15%;
    -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
    animation: 4s ease 0s infinite alternate forwards running tpswing;
}

.about-wrapper-2.style-2 .about-image-items .about-image-1 {
    height: 560px;
    border-radius: 20px;
    margin-left: 30px;
}

@media (max-width: 575px) {
    .about-wrapper-2.style-2 .about-image-items .about-image-1 {
        height: 450px;
    }
}

.about-wrapper-2.style-2 .about-image-items .about-image-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    border-radius: 20px;
    left: -30px;
    z-index: -1;
    top: 30px;
}

.about-wrapper-2.style-2 .about-image-items .about-image-1::after {
    display: none;
}

.about-wrapper-2.style-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: -20%;
}

@media (max-width: 1199px) {
    .about-wrapper-2.style-2 .about-image-items .about-image-1 .about-image-2 {
        right: 0;
        bottom: 0;
    }
}

.about-wrapper-2.style-2 .about-image-items .about-image-1 .about-image-2 img {
    border-radius: 20px;
}

.about-wrapper-2.style-2 .about-content .about-icon-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
    gap: 50px;
}

@media (max-width: 1199px) {
    .about-wrapper-2.style-2 .about-content .about-icon-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2.style-2 .about-content .about-icon-items {
        -ms-flex-wrap: initial;
        flex-wrap: initial;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .about-wrapper-2.style-2 .about-content .about-icon-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-wrapper-2.style-2 .about-content .about-icon-items .about-icon {
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    padding: 20px 30px;
    border-radius: 5px;
}

    .about-wrapper-2.style-2 .about-content .about-icon-items .about-icon .content {
        margin-top: 15px;
    }

        .about-wrapper-2.style-2 .about-content .about-icon-items .about-icon .content h3 {
            margin-bottom: 10px;
        }

.about-section {
    position: relative;
}

    .about-section .arrow-shape {
        position: absolute;
        top: 15%;
        right: 12%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

    .about-section .circle-shape {
        position: absolute;
        bottom: 17%;
        right: 14%;
    }

.about-wrapper-3 .about-content {
    max-width: 770px;
}

    .about-wrapper-3 .about-content .about-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 50px;
    }

@media (max-width: 767px) {
    .about-wrapper-3 .about-content .about-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.about-wrapper-3 .about-content .about-items .circle-text {
    position: relative;
}

    .about-wrapper-3 .about-content .about-items .circle-text .icon {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .about-wrapper-3 .about-content .about-items .circle-text .circle-animation {
        -webkit-animation: cir36 10s linear infinite;
        animation: cir36 10s linear infinite;
    }

.about-wrapper-3 .about-content .about-items .content {
    max-width: 420px;
}

    .about-wrapper-3 .about-content .about-items .content P {
        margin-bottom: 50px;
    }

.about-wrapper-3 .hero-image {
    text-align: center;
    position: relative;
}

@media (max-width: 991px) {
    .about-wrapper-3 .hero-image {
        margin-top: 30px;
    }
}

.about-wrapper-3 .hero-image .bg-shape {
    position: absolute;
    left: -18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 991px) {
    .about-wrapper-3 .hero-image .bg-shape {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 767px) {
    .about-wrapper-5 .about-content {
        text-align: center;
    }
}

.about-wrapper-5 .about-content p {
    font-size: 19px;
    color: var(--header);
}

.about-wrapper-5 .about-content .counter-box-items {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .about-wrapper-5 .about-content .counter-box-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper-5 .about-content .counter-box-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 15px;
    }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content {
    border-right: 1px solid var(--border);
    padding-right: 90px;
}

@media (max-width: 1399px) {
    .about-wrapper-5 .about-content .counter-box-items .counter-content {
        padding-right: 0;
        border-right: none;
    }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
    font-size: 85px;
}

@media (max-width: 767px) {
    .about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
        font-size: 46px;
    }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content p {
    font-size: 18px;
    color: var(--text);
}

.about-wrapper-5 .about-content .counter-box-items .text {
    max-width: 270px;
    color: var(--text);
    font-size: 16px;
}

.courses-card-main-items {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    /* Defining animation Keyframes */
}

    .courses-card-main-items .courses-card-items {
        margin-top: 30px;
        background-color: var(--white);
        border-radius: 7px;
        border: 1px solid #d2d4d5;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        width: 100%;
        height: 100%;
    }

        .courses-card-main-items .courses-card-items .courses-image {
            padding: 5px 5px 0 5px;
            position: relative;
        }

            .courses-card-main-items .courses-card-items .courses-image img {
                width: 100%;
                height: 100%;
                border-radius: 7px;
            }

            .courses-card-main-items .courses-card-items .courses-image .courses-title {
                color: var(--white);
                text-align: center;
                font-size: 35px;
                font-weight: 600;
                letter-spacing: -1.05px;
                position: absolute;
                top: 20px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                width: 100%;
            }

            .courses-card-main-items .courses-card-items .courses-image .topic-title {
                position: absolute;
                bottom: 20px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                width: 100%;
                color: var(--white);
                text-align: center;
                font-size: 18px;
                font-weight: 600;
                letter-spacing: -0.9px;
            }

            .courses-card-main-items .courses-card-items .courses-image .arrow-items {
                position: absolute;
                left: 27px;
                top: 44%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

        .courses-card-main-items .courses-card-items .courses-content {
            padding: 25px 30px 10px 30px;
        }

            .courses-card-main-items .courses-card-items .courses-content .post-cat {
                margin-bottom: 20px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
            }

                .courses-card-main-items .courses-card-items .courses-content .post-cat li i {
                    font-size: 14px;
                    color: var(--theme);
                    -webkit-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                }

                .courses-card-main-items .courses-card-items .courses-content .post-cat li a {
                    display: inline-block;
                    padding: 8px 10px;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    background-color: var(--bg);
                    font-weight: 500;
                    font-size: 14px;
                    color: var(--theme);
                    line-height: 1;
                    border-radius: 7px;
                }

            .courses-card-main-items .courses-card-items .courses-content .client-items {
                margin-top: 15px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 10px;
                border-bottom: 1px solid var(--border);
                padding-bottom: 25px;
            }

                .courses-card-main-items .courses-card-items .courses-content .client-items .client-img {
                    border-radius: 50%;
                    width: 25px;
                    height: 25px;
                }

                .courses-card-main-items .courses-card-items .courses-content .client-items p {
                    font-size: 14px;
                    font-weight: 500;
                    color: var(--header);
                    text-transform: capitalize;
                }

            .courses-card-main-items .courses-card-items .courses-content .post-class {
                display: -webkit-box;
                display: -ms-flexbox;
                /* display: flex; */
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                margin-top: 20px;
            }

@media (max-width: 1399px) {
    .courses-card-main-items .courses-card-items .courses-content .post-class {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.courses-card-main-items .courses-card-items .courses-content .post-class li {
    font-size: 14px;
    color: var(--header);
}

    .courses-card-main-items .courses-card-items .courses-content .post-class li i {
        color: var(--text);
        margin-right: 5px;
    }

.courses-card-main-items .courses-card-items.style-2 {
    opacity: 1;
    visibility: visible;
}

    .courses-card-main-items .courses-card-items.style-2 .courses-image .courses-title {
        font-size: 30px;
    }

    .courses-card-main-items .courses-card-items.style-2 .courses-image .topic-title {
        font-size: 20px;
    }

    .courses-card-main-items .courses-card-items.style-2 .courses-content h3 a:hover {
        color: var(--theme);
    }

    .courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn {
        padding: 12px 15px;
        font-size: 14px;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--bs-blue);
    }

        .courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::before, .courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::after {
            background-color: var(--theme);
        }

        .courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn:hover {
            color: var(--white);
        }

    .courses-card-main-items .courses-card-items.style-2:hover {
        -webkit-box-shadow: 10px 4px 60px rgba(143, 102, 255, 0.3);
        box-shadow: 10px 4px 60px rgba(143, 102, 255, 0.3);
    }

.courses-card-main-items .courses-card-items-hover {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--theme);
    border-radius: 7px;
    border: 1px solid var(--theme);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    top: 0;
    right: -100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .courses-card-main-items .courses-card-items-hover {
        padding-top: 70px;
    }
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-cat {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .courses-card-main-items .courses-card-items-hover .courses-content .post-cat li i {
        font-size: 14px;
        color: var(--white);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a {
        display: inline-block;
        padding: 8px 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.1);
        font-weight: 500;
        font-size: 14px;
        color: var(--white);
        line-height: 1;
        border-radius: 7px;
    }

        .courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a:hover {
            background-color: var(--white);
            color: var(--header);
        }

@media (max-width: 767px) {
    .courses-card-main-items .courses-card-items-hover .courses-content h5 {
        font-size: 20px;
    }
}

.courses-card-main-items .courses-card-items-hover .courses-content h5 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

    .courses-card-main-items .courses-card-items-hover .courses-content h5 a:hover {
        color: var(--white);
        background-size: 100% 2px;
        background-image: -webkit-gradient(linear, left top, left bottom, from(var(--white)), to(var(--white)));
        background-image: linear-gradient(var(--white), var(--white));
    }

.courses-card-main-items .courses-card-items-hover .courses-content h4 {
    color: var(--white);
    font-size: 35px;
    padding: 15px 0;
}

.courses-card-main-items .courses-card-items-hover .courses-content span {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.courses-card-main-items .courses-card-items-hover .courses-content .client-items {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 25px;
}

    .courses-card-main-items .courses-card-items-hover .courses-content .client-items .client-img {
        border-radius: 50%;
        width: 25px;
        height: 25px;
    }

    .courses-card-main-items .courses-card-items-hover .courses-content .client-items p {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
        text-transform: capitalize;
    }

.courses-card-main-items .courses-card-items-hover .courses-content .post-class {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

    .courses-card-main-items .courses-card-items-hover .courses-content .post-class li {
        font-size: 14px;
        color: var(--white);
    }

        .courses-card-main-items .courses-card-items-hover .courses-content .post-class li i {
            color: var(--white);
            margin-right: 5px;
        }

.courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
    padding: 15px 25px;
    margin-top: 19px;
}

@media (max-width: 575px) {
    .courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.courses-card-main-items:hover .courses-card-items {
    opacity: 0;
    visibility: hidden;
}

    .courses-card-main-items:hover .courses-card-items.style-2 {
        opacity: 1;
        visibility: visible;
        right: 0;
        -webkit-transform: initial;
        transform: initial;
    }

.courses-card-main-items:hover .courses-card-items-hover {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.courses-card-main-items .GlidingArrow {
    -webkit-animation: slide 5s linear infinite;
    animation: slide 5s linear infinite;
}

.courses-card-main-items .delay1 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.courses-card-main-items .delay2 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.courses-card-main-items .delay3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.courses-card-main-items .delay4 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.courses-card-main-items .delay5 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-150);
        transform: translateX(-150);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-90);
        transform: translateX(-90);
    }

    80% {
        opacity: 1;
        -webkit-transform: translateX(90);
        transform: translateX(90);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(150);
        transform: translateX(150);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-150);
        transform: translateX(-150);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-90);
        transform: translateX(-90);
    }

    80% {
        opacity: 1;
        -webkit-transform: translateX(90);
        transform: translateX(90);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(150);
        transform: translateX(150);
    }
}

.single-courses-items {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    background-color: var(--white);
    position: relative;
    z-index: 9;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .single-courses-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding: 30px;
    }
}

.single-courses-items .courses-image {
    width: 220px;
    height: 280px;
    position: relative;
    border-radius: 10px;
}

    .single-courses-items .courses-image .post-cat {
        position: absolute;
        top: 0;
        right: 0;
        padding: 4px 15px;
        background-color: var(--theme);
        color: var(--white);
        display: inline-block;
        border-radius: 10px 10px 0 10px;
    }

.single-courses-items .courses-content {
    padding: 20px 0;
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
}

@media (max-width: 767px) {
    .single-courses-items .courses-content {
        padding: 0;
    }
}

.single-courses-items .courses-content .post-box-1 {
    display: inline-block;
    padding: 10px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--bg);
    font-weight: 500;
    font-size: 14px;
    color: var(--theme);
    line-height: 1;
    border-radius: 7px;
    margin-bottom: 15px;
}

    .single-courses-items .courses-content .post-box-1:hover {
        background-color: var(--theme);
        color: var(--white);
    }

.single-courses-items .courses-content h3 a:hover {
    color: var(--theme);
}

.single-courses-items .courses-content .client-items {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

    .single-courses-items .courses-content .client-items .content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }

    .single-courses-items .courses-content .client-items .client-img {
        border-radius: 50%;
        width: 25px;
        height: 25px;
    }

    .single-courses-items .courses-content .client-items p {
        font-size: 14px;
        font-weight: 500;
        color: var(--header);
        text-transform: capitalize;
    }

.single-courses-items .courses-content .star {
    color: var(--ratting);
    font-size: 14px;
}

.single-courses-items .courses-content h4 {
    font-size: 24px;
    color: var(--theme-2);
}

.single-courses-items .courses-content .post-class {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .single-courses-items .courses-content .post-class {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.single-courses-items .courses-content .post-class li {
    font-size: 14px;
    color: var(--text);
}

    .single-courses-items .courses-content .post-class li i {
        color: var(--text);
        margin-right: 5px;
    }

    .single-courses-items .courses-content .post-class li .theme-btn {
        padding: 12px 15px;
        font-size: 14px;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
    }

        .single-courses-items .courses-content .post-class li .theme-btn::before, .single-courses-items .courses-content .post-class li .theme-btn::after {
            background-color: var(--theme);
        }

        .single-courses-items .courses-content .post-class li .theme-btn:hover {
            color: var(--white);
        }

.live-courses-main-items {
    border: 1px solid rgba(3, 31, 66, 0.1);
    background-color: #F4F9FF;
    border-radius: 7px;
    margin-top: 30px;
    padding: 5px;
    height: 100%;
}

    .live-courses-main-items .live-courses-items {
        padding: 30px 19px;
        border-radius: 7px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        overflow: hidden;
    }

        .live-courses-main-items .live-courses-items .live-courses-content {
            max-width: 180px;
        }

            .live-courses-main-items .live-courses-items .live-courses-content h3 {
                font-size: 22px;
                letter-spacing: -0.9px;
                font-weight: 600;
                color: var(--white);
            }

                .live-courses-main-items .live-courses-items .live-courses-content h3 span {
                    font-size: 24px;
                    font-weight: 300;
                    letter-spacing: -0.72px;
                }

            .live-courses-main-items .live-courses-items .live-courses-content .icon {
                width: 65px;
                height: 65px;
                line-height: 65px;
                text-align: center;
                border-radius: 50%;
                background-color: var(--white);
                margin-top: 20px;
            }

        .live-courses-main-items .live-courses-items .live-courses-image {
            margin-bottom: -32px;
        }

    .live-courses-main-items .content {
        text-align: center;
        padding: 30px 20px;
        margin: 0 auto;
        padding-top: 0;
    }

        .live-courses-main-items .content .client-img {
            border: 3px solid var(--white);
            border-radius: 50%;
            width: 70px;
            height: 70px;
            margin: -35px auto 25px;
        }

        .live-courses-main-items .content h4 a:hover {
            color: var(--theme);
        }

        .live-courses-main-items .content .list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            margin-bottom: 30px;
        }

@media (max-width: 1399px) {
    .live-courses-main-items .content .list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.live-courses-main-items .content .list li {
    font-size: 16px;
}

    .live-courses-main-items .content .list li i {
        margin-right: 5px;
    }

.live-courses-main-items .content .theme-btn {
    font-size: 14px;
    padding: 16px 25px;
}

.education-activities-items {
    margin-top: 30px;
    text-align: center;
}

    .education-activities-items .icon {
        position: relative;
        width: 88px;
        height: 88px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../img/activities/01.png);
        text-align: center;
        line-height: 110px;
        font-size: 48px;
        color: #FFA0C9;
    }

        .education-activities-items .icon.style-2 {
            background-image: url(../img/activities/02.png);
            color: #4260FF;
            line-height: 100px;
        }

        .education-activities-items .icon.style-3 {
            background-image: url(../img/activities/03.png);
            color: #FFB876;
            line-height: 100px;
        }

        .education-activities-items .icon.style-4 {
            background-image: url(../img/activities/04.png);
            color: #E95D66;
            line-height: 100px;
        }

        .education-activities-items .icon.style-5 {
            background-image: url(../img/activities/05.png);
            color: #6EC857;
            line-height: 100px;
        }

    .education-activities-items .content {
        margin-top: 20px;
    }

        .education-activities-items .content h3 {
            margin-bottom: 10px;
        }

            .education-activities-items .content h3 a:hover {
                color: var(--theme-3);
            }

.courses-wrapper .section-title-area .courses-tab .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 575px) {
    .courses-wrapper .section-title-area .courses-tab .nav {
        gap: 15px;
    }
}

.courses-wrapper .section-title-area .courses-tab .nav .nav-link {
    text-align: center;
    padding: 10px 30px;
    background-color: #EBEBEB;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--header);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 991px) {
    .courses-wrapper .section-title-area .courses-tab .nav .nav-link {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .courses-wrapper .section-title-area .courses-tab .nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.courses-wrapper .section-title-area .courses-tab .nav .nav-link.active {
    position: relative;
    background-color: var(--theme-3);
    color: var(--white);
}

.education-activities-section {
    position: relative;
}

    .education-activities-section .shape-1 {
        position: absolute;
        top: 10%;
        right: 8%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

    .education-activities-section .shape-2 {
        position: absolute;
        left: 5%;
        bottom: 15%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

.courses-details-wrapper {
    margin-bottom: -10px;
}

    .courses-details-wrapper .details-image {
        position: relative;
    }

        .courses-details-wrapper .details-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .courses-details-wrapper .details-image .video-box {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 9;
        }

            .courses-details-wrapper .details-image .video-box .video-buttton {
                width: 100px;
                height: 100px;
                line-height: 100px;
                text-align: center;
                border-radius: 50%;
                background-color: var(--theme);
                display: inline-block;
                z-index: 9;
                font-size: 18px;
                color: var(--white);
                position: relative;
            }

@media (max-width: 767px) {
    .courses-details-wrapper .details-image .video-box .video-buttton {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .details-image .video-box .video-buttton {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.courses-details-wrapper .details-image .video-box .ripple::before, .courses-details-wrapper .details-image .video-box .ripple::after {
    width: 100px;
    height: 100px;
}

@media (max-width: 767px) {
    .courses-details-wrapper .details-image .video-box .ripple::before, .courses-details-wrapper .details-image .video-box .ripple::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .details-image .video-box .ripple::before, .courses-details-wrapper .details-image .video-box .ripple::after {
        width: 60px;
        height: 60px;
    }
}

.courses-details-wrapper .courses-details-content {
    padding: 30px 30px 0;
}

@media (max-width: 1199px) {
    .courses-details-wrapper .courses-details-content {
        padding: 30px 0;
    }
}

.courses-details-wrapper .courses-details-content .top-details-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .top-details-content {
        margin-top: 20px;
        gap: 15px;
    }
}

.courses-details-wrapper .courses-details-content .top-details-content .author-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

    .courses-details-wrapper .courses-details-content .top-details-content .author-image .thumb {
        width: 40px;
        height: 40px;
    }

        .courses-details-wrapper .courses-details-content .top-details-content .author-image .thumb img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

.courses-details-wrapper .courses-details-content .top-details-content .rating i {
    color: var(--ratting);
}

.courses-details-wrapper .courses-details-content .top-details-content .rating span {
    margin-left: 10px;
}

.courses-details-wrapper .courses-details-content h2 {
    font-weight: 600;
}

.courses-details-wrapper .courses-details-content .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .nav {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
    }
}

.courses-details-wrapper .courses-details-content .nav .nav-link {
    padding: 0;
}

    .courses-details-wrapper .courses-details-content .nav .nav-link.active {
        position: relative;
    }

        .courses-details-wrapper .courses-details-content .nav .nav-link.active h6 {
            color: var(--theme);
        }

        .courses-details-wrapper .courses-details-content .nav .nav-link.active::before {
            position: absolute;
            bottom: -21px;
            left: 0;
            height: 2px;
            width: 100%;
            content: "";
            background: var(--theme);
            -webkit-transition: .3s;
            transition: .3s;
        }

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .nav .nav-link.active::before {
        display: none;
    }
}

.courses-details-wrapper .courses-details-content .nav .nav-link h6 {
    font-size: 24px;
}

.courses-details-wrapper .courses-details-content .faq-content .accordion-item {
    border: 1px solid var(--border);
}

    .courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button {
        color: var(--header);
        letter-spacing: -.2px;
        border: none !important;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
        padding: 25px 40px 0;
        text-transform: capitalize;
        font-size: 24px;
        border-radius: 5px;
        font-weight: 600;
    }

@media (max-width: 1199px) {
    .courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 18px;
        padding: 20px 20px 0;
    }
}

.courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button::after {
    content: "\f324";
    font-family: "Font Awesome 5 Pro";
    background: transparent;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
    color: var(--header);
    font-size: 16px;
}

.courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f325";
    font-family: "Font Awesome 5 Pro";
    background: transparent;
    font-weight: 500;
    color: var(--header);
}

.courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    padding: 25px 30px;
    color: var(--header);
}

.courses-details-wrapper .courses-details-content .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 0;
    padding-right: 0;
    color: var(--header);
    background-color: var(--white);
    border-radius: 5px;
    padding-bottom: 0;
}

.courses-details-wrapper .courses-details-content .menu-list-area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .menu-list-area {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.courses-details-wrapper .courses-details-content .menu-list-area .menu-list:hover {
    position: relative;
}

    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list:hover h6 {
        color: var(--theme);
    }

    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list:hover::before {
        position: absolute;
        bottom: -21px;
        left: 0;
        height: 2px;
        width: 100%;
        content: "";
        background: var(--theme);
        -webkit-transition: .3s;
        transition: .3s;
    }

@media (max-width: 470px) {
    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list:hover::before {
        display: none;
    }
}

.courses-details-wrapper .courses-details-content .menu-list-area .menu-list.active {
    position: relative;
}

    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list.active h6 {
        color: var(--theme);
    }

    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list.active::before {
        position: absolute;
        bottom: -21px;
        left: 0;
        height: 2px;
        width: 100%;
        content: "";
        background: var(--theme);
        -webkit-transition: .3s;
        transition: .3s;
    }

@media (max-width: 470px) {
    .courses-details-wrapper .courses-details-content .menu-list-area .menu-list.active::before {
        display: none;
    }
}

.courses-details-wrapper .courses-details-content .menu-list-area .menu-list h6 {
    font-size: 24px;
}

.courses-details-wrapper .courses-details-content .tab-content {
    margin-top: 40px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-description-item h3 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-description-item .list-items {
        margin-top: 10px;
        display: inline-block;
        margin-bottom: 50px;
    }

        .courses-details-wrapper .courses-details-content .tab-content .course-description-item .list-items li:not(:last-child) {
            margin-bottom: 15px;
        }

        .courses-details-wrapper .courses-details-content .tab-content .course-description-item .list-items li i {
            margin-right: 5px;
            color: var(--theme);
        }

    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items h3 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items h3 {
        font-size: 22px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson {
    border: 1px solid var(--border);
    padding: 40px 50px 50px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson {
        padding: 30px 40px 40px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson {
        padding: 25px 30px 30px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson .title {
    font-size: 24px;
    margin-bottom: 10px;
}

.courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson ul {
    margin-top: 10px;
}

    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 26px;
        padding: 16px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson ul li .badge-list {
            margin: -3px;
            text-align: right;
        }

            .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson ul li .badge-list .badge-primary {
                background-color: rgba(26, 182, 157, 0.07);
                opacity: 1;
                color: var(--theme);
            }

            .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson ul li .badge-list .badge-secondary {
                background-color: rgba(238, 74, 99, 0.07);
                opacity: 1;
                color: var(--theme-2);
            }

.courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson.style-2 {
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0 40px;
    padding-bottom: 20px;
}

    .courses-details-wrapper .courses-details-content .tab-content .curriculum-items .course-lesson.style-2 ul {
        margin-top: 12px;
        margin-bottom: 15px;
    }

.courses-details-wrapper .courses-details-content .tab-content .course-instructor-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-instructor-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content span {
    margin-bottom: 10px;
    display: inline-block;
}

.courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content .social-icon {
    gap: 10px;
    margin-top: 20px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content .social-icon a {
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        display: inline-block;
        background-color: transparent;
        color: var(--text);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        border: 1px solid var(--border);
    }

        .courses-details-wrapper .courses-details-content .tab-content .course-instructor-items .instructor-content .social-icon a:hover {
            background-color: var(--theme);
            color: var(--white);
            border: 1px solid transparent;
        }

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .rating-box {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    text-align: center;
    padding: 30px 10px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .rating-box h3 {
        color: var(--theme);
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .rating-box .star {
        color: var(--ratting);
        margin-bottom: 10px;
    }

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items:not(:last-child) {
        margin-bottom: 10px;
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .rating-value {
        display: inline-block;
        font-size: 16px;
        color: var(--header);
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .rating-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: var(--header);
    }

        .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .rating-text i {
            font-size: 14px;
            color: var(--ratting);
        }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .progress {
        background: #ebebeb;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-radius: 100px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 6px;
        width: 100%;
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .progress-value {
        -webkit-animation: load 3s normal forwards;
        animation: load 3s normal forwards;
        border-radius: 0;
        background: var(--ratting);
        height: 6px;
        width: 0;
        border-radius: 16px;
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .progress-area .pro-items .style-two {
        -webkit-animation: load2 3s normal forwards;
        animation: load2 3s normal forwards;
    }

@-webkit-keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 0%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 0%;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right {
    max-width: 452px;
    width: 100%;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item:not(:last-child) {
    margin-bottom: 15px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .star {
    color: #FFAE5D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .star i.color-2 {
        color: var(--text);
    }

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item span {
    font-weight: 500;
    color: var(--header);
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .progress {
    background: rgba(255, 174, 93, 0.3);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5px;
    width: 100%;
    max-width: 244px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .progress-value {
    -webkit-animation: load 3s normal forwards;
    animation: load 3s normal forwards;
    border-radius: 0;
    background: #FFAE5D;
    height: 5px;
    width: 0;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .style-two {
    -webkit-animation: load2 3s normal forwards;
    animation: load2 3s normal forwards;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .style-three {
    -webkit-animation: load3 3s normal forwards;
    animation: load3 3s normal forwards;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .style-four {
    -webkit-animation: load4 3s normal forwards;
    animation: load4 3s normal forwards;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .reviews-ratting-right .reviews-ratting-item .style-five {
    -webkit-animation: load5 3s normal forwards;
    animation: load5 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 90%;
    }
}

@-webkit-keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@-webkit-keyframes load4 {
    0% {
        width: 0;
    }

    100% {
        width: 70%;
    }
}

@keyframes load4 {
    0% {
        width: 0;
    }

    100% {
        width: 70%;
    }
}

@-webkit-keyframes load5 {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}

@keyframes load5 {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items {
        margin-top: 30px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items h4 {
    font-size: 28px;
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items h4 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items h4 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .admin-img {
    width: 100px;
    height: 100px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .admin-img img {
        border-radius: 50%;
    }

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content {
    position: relative;
    border: 1px solid var(--border);
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 30px;
        background-color: var(--white);
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 40%;
        left: -16px;
    }

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content::before {
        display: none;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content .head-content h5 span {
    font-size: 14px;
    margin-left: 30px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content p {
    font-size: 14px;
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-items .admin-items .content .star i {
    font-size: 14px;
    color: var(--ratting);
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-title .rate-now {
    margin-top: 15px;
    gap: 15px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-title .rate-now p {
        font-size: 16px;
        text-transform: capitalize;
    }

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-title .rate-now i {
        font-size: 16px;
        color: var(--theme);
    }

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-form {
    margin-top: 40px;
}

    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-form .form-clt input {
        width: 100%;
        outline: none;
        border: none;
        padding: 18px 35px;
        color: var(--text);
        background-color: var(--bg);
        font-size: 16px;
        text-transform: capitalize;
        border-radius: 5px;
    }

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-form .form-clt input {
        padding: 15px 20px;
    }
}

.courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-form .form-clt-big textarea {
    padding: 18px 35px 170px;
    width: 100%;
    outline: none;
    color: var(--text);
    background-color: var(--bg);
    font-size: 16px;
    border: none;
    text-transform: capitalize;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .courses-details-wrapper .courses-details-content .tab-content .course-reviews-items .review-form .form-clt-big textarea {
        padding: 15px 20px;
    }
}

.courses-details-wrapper .details-list-area {
    margin-top: -80px;
    margin-right: 40px;
    padding: 30px 40px;
    border-radius: 5px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .courses-details-wrapper .details-list-area {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .courses-details-wrapper .details-list-area {
        margin-top: 0;
    }
}

.courses-details-wrapper .details-list-area .details-list {
    margin-bottom: 30px;
}

    .courses-details-wrapper .details-list-area .details-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
    }

        .courses-details-wrapper .details-list-area .details-list li:not(:last-child) {
            border-bottom: 1px solid var(--border);
        }

        .courses-details-wrapper .details-list-area .details-list li span i {
            color: var(--theme);
        }

.courses-details-wrapper .details-list-area .theme-btn {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.courses-details-wrapper .details-list-area .social-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

    .courses-details-wrapper .details-list-area .social-icon a {
        color: var(--text);
    }

        .courses-details-wrapper .details-list-area .social-icon a:hover {
            color: var(--theme);
        }

.courses-details-wrapper .details-list-area.style-two {
    padding: 0;
}

    .courses-details-wrapper .details-list-area.style-two .courses-list-video {
        padding: 20px;
        position: relative;
    }

        .courses-details-wrapper .details-list-area.style-two .courses-list-video .video-box {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 9;
        }

            .courses-details-wrapper .details-list-area.style-two .courses-list-video .video-box .video-buttton {
                width: 60px;
                height: 60px;
                line-height: 60px;
                text-align: center;
                border-radius: 50%;
                background-color: var(--theme);
                display: inline-block;
                z-index: 9;
                font-size: 17px;
                color: var(--white);
                position: relative;
            }

            .courses-details-wrapper .details-list-area.style-two .courses-list-video .video-box .ripple::before, .courses-details-wrapper .details-list-area.style-two .courses-list-video .video-box .ripple::after {
                width: 60px;
                height: 60px;
            }

        .courses-details-wrapper .details-list-area.style-two .courses-list-video img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }

    .courses-details-wrapper .details-list-area.style-two ul {
        padding: 5px 40px 30px;
        margin-bottom: 0;
    }

    .courses-details-wrapper .details-list-area.style-two .courses-list-button {
        padding: 0 40px 30px;
    }

.courses-card-inner {
    margin-top: 30px;
    position: relative;
}

    .courses-card-inner .courses-card-items .courses-image {
        position: relative;
    }

        .courses-card-inner .courses-card-items .courses-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px 10px 0 0;
        }

        .courses-card-inner .courses-card-items .courses-image .post-cat {
            position: absolute;
            bottom: -20px;
            right: 0;
            background-color: var(--theme-3);
            color: var(--white);
            padding: 7px 18px;
            border-radius: 5px 0 0 5px;
        }

        .courses-card-inner .courses-card-items .courses-image .price {
            position: absolute;
            top: 10px;
            line-height: 1;
            left: 10px;
            background-color: var(--theme-3);
            padding: 8px 10px;
            color: var(--white);
            font-size: 14px;
        }

    .courses-card-inner .courses-card-items .courses-content {
        padding: 25px 30px;
        background-color: var(--white);
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
    }

        .courses-card-inner .courses-card-items .courses-content .star {
            color: var(--ratting);
            margin-bottom: 10px;
        }

        .courses-card-inner .courses-card-items .courses-content h4 {
            font-size: 24px;
            color: var(--theme-3);
            margin-bottom: 15px;
        }

@media (max-width: 991px) {
    .courses-card-inner .courses-card-items .courses-content h3 {
        font-size: 20px;
    }
}

.courses-card-inner .courses-card-items .courses-content h3 a:hover {
    color: var(--theme-3);
}

.courses-card-inner .courses-card-items .courses-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

    .courses-card-inner .courses-card-items .courses-content ul li i {
        margin-right: 5px;
    }

.courses-card-inner .courses-card-hover {
    background-color: var(--theme-3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    padding: 60px 40px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .courses-card-inner .courses-card-hover {
        padding: 40px 30px;
    }
}

.courses-card-inner .courses-card-hover .post-cat {
    background-color: var(--white);
    color: var(--header);
    padding: 7px 18px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
}

.courses-card-inner .courses-card-hover .price {
    position: absolute;
    top: 20px;
    line-height: 1;
    right: 20px;
    background-color: var(--white);
    padding: 8px 10px;
    color: var(--header);
    font-size: 14px;
}

.courses-card-inner .courses-card-hover .courses-content {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover .courses-content {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover .courses-content {
        margin-top: 30px;
    }
}

.courses-card-inner .courses-card-hover .courses-content .star {
    color: var(--ratting);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover .courses-content .star {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover .courses-content .star {
        margin-bottom: 10px;
    }
}

.courses-card-inner .courses-card-hover .courses-content h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover .courses-content h4 {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover .courses-content h4 {
        margin-bottom: 15px;
    }
}

.courses-card-inner .courses-card-hover .courses-content h3 {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover .courses-content h3 {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover .courses-content h3 {
        margin-bottom: 15px;
    }
}

.courses-card-inner .courses-card-hover .courses-content h3 a {
    color: var(--white);
}

.courses-card-inner .courses-card-hover .courses-content p {
    color: var(--white);
}

.courses-card-inner .courses-card-hover .courses-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .courses-card-inner .courses-card-hover .courses-content ul {
        margin-bottom: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .courses-card-inner .courses-card-hover .courses-content ul {
        margin-top: 20px;
        margin-bottom: 25px;
    }
}

.courses-card-inner .courses-card-hover .courses-content ul li {
    color: var(--white);
}

    .courses-card-inner .courses-card-hover .courses-content ul li i {
        margin-right: 5px;
    }

.courses-card-inner .courses-card-hover .courses-content .link-btn {
    color: var(--white);
}

.courses-card-inner:hover .courses-card-hover {
    opacity: 1;
    visibility: visible;
}

.popular-program-box-items {
    background-color: var(--white);
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
}

    .popular-program-box-items .thumb {
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 263"><path fill-rule="evenodd" clip-rule="evenodd" d="M356.5 218C439.619 218 507 150.619 507 67.5C507 -15.6189 439.619 -83 356.5 -83C312.832 -83 273.508 -64.4021 246.016 -34.6949C235.853 -36.8604 225.309 -38 214.5 -38C194.328 -38 175.083 -34.0314 157.503 -26.8325C131.903 -46.9806 99.6053 -59 64.5 -59C-18.6189 -59 -86 8.38114 -86 91.5C-86 174.619 -18.6189 242 64.5 242C84.6719 242 103.917 238.031 121.497 230.832C147.097 250.981 179.395 263 214.5 263C258.168 263 297.492 244.402 324.984 214.695C335.147 216.86 345.691 218 356.5 218Z" /></svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 263"><path fill-rule="evenodd" clip-rule="evenodd" d="M356.5 218C439.619 218 507 150.619 507 67.5C507 -15.6189 439.619 -83 356.5 -83C312.832 -83 273.508 -64.4021 246.016 -34.6949C235.853 -36.8604 225.309 -38 214.5 -38C194.328 -38 175.083 -34.0314 157.503 -26.8325C131.903 -46.9806 99.6053 -59 64.5 -59C-18.6189 -59 -86 8.38114 -86 91.5C-86 174.619 -18.6189 242 64.5 242C84.6719 242 103.917 238.031 121.497 230.832C147.097 250.981 179.395 263 214.5 263C258.168 263 297.492 244.402 324.984 214.695C335.147 216.86 345.691 218 356.5 218Z" /></svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center center;
        mask-position: center center;
        -webkit-mask-size: cover;
        mask-size: cover;
        padding: 5px;
        padding-bottom: 0;
    }

        .popular-program-box-items .thumb img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }

    .popular-program-box-items .content {
        padding: 30px 40px;
        position: relative;
        z-index: 9;
    }

        .popular-program-box-items .content .price {
            top: 40px;
            right: 40px;
            font-size: 35px;
            color: var(--header);
            position: absolute;
        }

        .popular-program-box-items .content .star {
            font-size: 14px;
            color: var(--theme-3);
            margin-bottom: 15px;
        }

            .popular-program-box-items .content .star span {
                color: var(--header);
            }

        .popular-program-box-items .content h3 {
            margin-bottom: 15px;
        }

            .popular-program-box-items .content h3 a:hover {
                color: var(--theme-3);
            }

        .popular-program-box-items .content .list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 25px;
            margin-top: 10px;
            margin-bottom: 30px;
        }

@media (max-width: 1399px) {
    .popular-program-box-items .content .list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.popular-program-box-items .content .list li {
    color: var(--header);
    font-size: 14px;
}

    .popular-program-box-items .content .list li i {
        color: var(--text);
        margin-right: 5px;
    }

.popular-program-box-items .content .theme-btn {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    background-color: #F8F2EC;
    border-radius: 8px;
    border: 1px solid rgba(16, 47, 37, 0.1);
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px 30px;
    color: var(--header);
}

    .popular-program-box-items .content .theme-btn::before, .popular-program-box-items .content .theme-btn::after {
        background-color: var(--theme-3);
    }

.popular-program-box-items::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid var(--theme-3);
    border-left: 1px solid var(--theme-3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: initial;
    transform: initial;
    border-radius: 20px;
}

.popular-program-box-items::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid var(--theme-3);
    border-right: 1px solid var(--theme-3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 20px;
}

.popular-program-box-items:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.popular-program-box-items:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transform: initial;
    transform: initial;
    -webkit-transform-origin: initial;
    transform-origin: initial;
}

.popular-program-section {
    background-color: #EDF3F5;
    position: relative;
}

    .popular-program-section .frame-shape {
        position: absolute;
        bottom: 80px;
        left: 60px;
        -webkit-animation: rounded 5s linear infinite;
        animation: rounded 5s linear infinite;
    }

    .popular-program-section .star-shape {
        position: absolute;
        top: 118px;
        right: 102px;
    }

.program-details-wrapper .program-details-items .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.program-details-wrapper .program-details-items .details-content {
    margin-top: 40px;
}

    .program-details-wrapper .program-details-items .details-content .post {
        background-color: var(--theme);
        color: var(--white);
        padding: 4px 15px;
        border-radius: 8px;
        display: inline-block;
        margin-bottom: 20px;
    }

    .program-details-wrapper .program-details-items .details-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

@media (max-width: 767px) {
    .program-details-wrapper .program-details-items .details-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .program-details-wrapper .program-details-items .details-content h2 {
        font-size: 24px;
    }
}

.program-details-wrapper .program-details-items .details-content .details-author-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 40px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .program-details-wrapper .program-details-items .details-content .details-author-area {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.program-details-wrapper .program-details-items .details-content .details-author-area .author-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.program-details-wrapper .program-details-items .details-content .details-author-area .class-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

    .program-details-wrapper .program-details-items .details-content .details-author-area .class-list li i {
        color: var(--theme);
    }

.program-details-wrapper .program-details-items .details-content .list-items {
    margin-top: 20px;
}

    .program-details-wrapper .program-details-items .details-content .list-items li:not(:last-child) {
        margin-bottom: 10px;
    }

    .program-details-wrapper .program-details-items .details-content .list-items li i {
        margin-right: 5px;
        color: var(--theme);
    }

.program-details-wrapper .details-list-area {
    padding: 30px 40px;
    border-radius: 10px;
    position: relative;
    z-index: 9;
    border: 1px solid var(--border);
}

@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .program-details-wrapper .details-list-area {
        padding: 30px 40px;
    }
}

.program-details-wrapper .details-list-area h3 {
    font-size: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .program-details-wrapper .details-list-area {
        margin-top: 0;
    }
}

.program-details-wrapper .details-list-area .details-list {
    margin-bottom: 30px;
}

    .program-details-wrapper .details-list-area .details-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

        .program-details-wrapper .details-list-area .details-list li span {
            font-weight: 600 !important;
            color: var(--header);
        }

            .program-details-wrapper .details-list-area .details-list li span i {
                color: var(--theme);
            }

.program-details-wrapper .details-list-area .theme-btn {
    padding: 19px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area .theme-btn {
        padding: 19px 25px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .program-details-wrapper .details-list-area .theme-btn {
        padding: 19px 40px;
        font-size: 16px;
    }
}

.program-details-wrapper .details-list-area .theme-btn.border-style {
    border: 1px solid var(--theme);
    color: var(--theme);
    background-color: transparent;
    padding: 18px 40px;
}

    .program-details-wrapper .details-list-area .theme-btn.border-style::after, .program-details-wrapper .details-list-area .theme-btn.border-style::before {
        background-color: var(--theme);
    }

    .program-details-wrapper .details-list-area .theme-btn.border-style:hover {
        color: var(--white);
    }

.program-details-wrapper .details-list-area .social-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

    .program-details-wrapper .details-list-area .social-icon a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        font-size: 16px;
        display: block;
        color: var(--theme);
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        text-align: center;
        background-color: transparent;
        border: 1px solid var(--theme);
        border-radius: 8px;
    }

        .program-details-wrapper .details-list-area .social-icon a:hover {
            background-color: var(--theme);
            color: var(--white);
            border: 1px solid transparent;
        }

.program-details-wrapper .program-author-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 23px;
}

@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.program-details-wrapper .program-author-items .thumb {
    max-width: 370px;
}

    .program-details-wrapper .program-author-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

.program-details-wrapper .program-author-items .content {
    max-width: 700px;
}

@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content {
        margin: 0 auto;
        text-align: center;
    }
}

.program-details-wrapper .program-author-items .content h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content h2 {
        font-size: 26px;
    }
}

.program-details-wrapper .program-author-items .content span {
    margin-bottom: 20px;
    display: inline-block;
}

@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content span {
        margin-bottom: 10px;
    }
}

.program-details-wrapper .program-author-items .content ul {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}

.program-details-wrapper .program-author-items .content ul li {
    color: var(--header);
}

    .program-details-wrapper .program-author-items .content ul li i {
        margin-right: 5px;
    }

    .program-details-wrapper .program-author-items .content ul li .color-star {
        color: var(--theme);
    }

.program-details-wrapper .program-author-items .content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content .social-icon {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content .social-icon {
        margin-top: 20px;
    }
}

.program-details-wrapper .program-author-items .content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--theme);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--theme);
}

    .program-details-wrapper .program-author-items .content .social-icon a:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid transparent;
    }

.event-box-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

    .event-box-items .accordion-single {
        overflow: hidden;
    }

        .event-box-items .accordion-single .header-area .accordion-btn {
            padding: 34px 50px;
            background-color: var(--white);
            border-radius: 7px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

@media (max-width: 1399px) {
    .event-box-items .accordion-single .header-area .accordion-btn {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.event-box-items .accordion-single .content-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

@media (max-width: 1199px) {
    .event-box-items .accordion-single .content-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.event-box-items .accordion-single .content-items .post-date {
    padding: 11px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 91, 255, 0.1);
    background: rgba(0, 91, 255, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: var(--theme);
    display: inline-block;
    line-height: 1;
}

.event-box-items .accordion-single .content-items .content {
    max-width: 385px;
}

    .event-box-items .accordion-single .content-items .content h5 {
        font-size: 22px;
    }

        .event-box-items .accordion-single .content-items .content h5 a:hover {
            color: var(--theme);
        }

.event-box-items .accordion-single .event-image {
    max-width: 300px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    margin-bottom: -400px;
    opacity: 0;
    visibility: hidden;
}

    .event-box-items .accordion-single .event-image img {
        width: 100%;
        height: 100%;
        border-radius: 7px;
    }

.event-box-items .accordion-single .button-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1399px) {
    .event-box-items .accordion-single .button-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.event-box-items .accordion-single .button-list li {
    font-size: 16px;
}

    .event-box-items .accordion-single .button-list li i {
        color: var(--theme);
        margin-right: 7px;
    }

    .event-box-items .accordion-single .button-list li .theme-btn {
        background-color: transparent;
        color: var(--header);
        padding: 16px 25px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #c5c1c1;
    }

        .event-box-items .accordion-single .button-list li .theme-btn::before, .event-box-items .accordion-single .button-list li .theme-btn::after {
            background-color: var(--theme);
        }

        .event-box-items .accordion-single .button-list li .theme-btn:hover {
            color: var(--white);
        }

.event-box-items .accordion-single.active .event-image {
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
}

.event-box-items .accordion-single.active .content-items {
    display: block;
}

    .event-box-items .accordion-single.active .content-items .post-date {
        margin-bottom: 25px;
        display: inline-block;
    }

.event-box-items .accordion-single.active .button-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 65px;
}

@media (max-width: 1399px) {
    .event-box-items .accordion-single.active .button-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.event-box-items .accordion-single.active .button-list .theme-btn {
    background-color: var(--theme);
    color: var(--white);
}

.event-card-items {
    margin-top: 30px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    border-radius: 0 0 5px 5px;
}

    .event-card-items .event-image {
        position: relative;
    }

        .event-card-items .event-image img {
            width: 100%;
            height: 100%;
            border-radius: 5px 5px 0 0;
        }

        .event-card-items .event-image .post-time {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--theme);
            border-radius: 4px;
            padding: 4px 10px;
            font-weight: 500;
            font-size: 14px;
            color: var(--white);
        }

        .event-card-items .event-image .post-date {
            width: 80px;
            height: 80px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--theme);
            position: absolute;
            bottom: -35px;
            right: 30px;
        }

            .event-card-items .event-image .post-date h3 {
                color: var(--white);
                line-height: initial;
                padding-top: 17px;
            }

            .event-card-items .event-image .post-date span {
                font-size: 18px;
                color: var(--white);
                margin-top: -10px;
                display: inline-block;
            }

    .event-card-items .event-content {
        padding: 25px 30px;
    }

        .event-card-items .event-content ul {
            margin-bottom: 10px;
        }

            .event-card-items .event-content ul li i {
                margin-right: 5px;
                color: var(--theme);
            }

        .event-card-items .event-content h3 {
            margin-bottom: 10px;
        }

            .event-card-items .event-content h3 a:hover {
                color: var(--theme);
            }

        .event-card-items .event-content .theme-btn {
            padding: 12px 15px;
            font-size: 14px;
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
        }

            .event-card-items .event-content .theme-btn::before, .event-card-items .event-content .theme-btn::after {
                background-color: var(--theme);
            }

            .event-card-items .event-content .theme-btn:hover {
                color: var(--white);
            }

    .event-card-items.style-2 .event-image .post-time {
        background-color: var(--theme);
    }

    .event-card-items.style-2 .event-image .post-date {
        background-color: var(--theme);
    }

    .event-card-items.style-2 .event-content ul li i {
        color: var(--theme);
    }

    .event-card-items.style-2 .event-content h3 a:hover {
        color: var(--theme);
    }

.single-event-area {
    margin-right: -42%;
}

@media (max-width: 1199px) {
    .single-event-area {
        margin-right: 0;
    }
}

.single-event-area .single-event-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .single-event-area .single-event-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .single-event-area .single-event-items br {
            display: none;
        }
}

.single-event-area .single-event-items .event-img {
    max-width: 300px;
    height: 430px;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    position: relative;
}

@media (max-width: 991px) {
    .single-event-area .single-event-items .event-img {
        max-width: 750px;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 767px) {
    .single-event-area .single-event-items .event-img {
        max-width: 550px;
    }
}

@media (max-width: 575px) {
    .single-event-area .single-event-items .event-img {
        height: 350px;
    }
}

.single-event-area .single-event-items .event-img .post-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-3);
    font-size: 16px;
    color: var(--white);
    padding: 4px 10px;
}

.single-event-area .single-event-items .event-content {
    background-color: var(--white);
    padding: 40px;
    margin-left: -120px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .single-event-area .single-event-items .event-content {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-event-area .single-event-items .event-content {
        padding: 30px;
    }
}

.single-event-area .single-event-items .event-content ul {
    margin-bottom: 15px;
}

    .single-event-area .single-event-items .event-content ul i {
        color: var(--theme-3);
        margin-right: 5px;
    }

.single-event-area .single-event-items .event-content h3 {
    margin-bottom: 10px;
}

    .single-event-area .single-event-items .event-content h3 a:hover {
        color: var(--theme-3);
    }

.event-details-wrapper {
    margin-bottom: -10px;
}

    .event-details-wrapper .details-image img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .event-details-wrapper .details-content {
        margin-top: 30px;
    }

@media (max-width: 575px) {
    .event-details-wrapper .details-content {
        margin-top: 20px;
    }
}

.event-details-wrapper .details-content h2 {
    font-weight: 600;
    font-size: 36px;
}

@media (max-width: 767px) {
    .event-details-wrapper .details-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .event-details-wrapper .details-content h2 {
        font-size: 26px;
    }
}

.event-details-wrapper .details-content .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.event-details-wrapper .details-content .offer-list {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .event-details-wrapper .details-content .offer-list li i {
        color: var(--theme);
        margin-right: 5px;
    }

    .event-details-wrapper .details-content .offer-list li:not(:last-child) {
        margin-bottom: 15px;
    }

.event-details-wrapper .details-content .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

    .event-details-wrapper .details-content .location li i {
        color: var(--theme);
        margin-right: 5px;
    }

    .event-details-wrapper .details-content .location li a {
        color: var(--text);
    }

.event-details-wrapper .details-content .map-items {
    margin-top: 40px;
}

    .event-details-wrapper .details-content .map-items iframe {
        width: 100%;
        height: 450px;
    }

.event-details-wrapper .details-list-area {
    margin-top: -60px;
    margin-left: 30px;
    padding: 30px 40px;
    border-radius: 5px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

    .event-details-wrapper .details-list-area h3 {
        margin-bottom: 10px;
    }

@media (max-width: 1199px) {
    .event-details-wrapper .details-list-area {
        margin-left: 0;
        padding: 30px 26px;
    }
}

@media (max-width: 991px) {
    .event-details-wrapper .details-list-area {
        margin-top: 30px;
    }
}

.event-details-wrapper .details-list-area .details-list {
    margin-bottom: 30px;
}

    .event-details-wrapper .details-list-area .details-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
    }

        .event-details-wrapper .details-list-area .details-list li:not(:last-child) {
            border-bottom: 1px solid var(--border);
        }

        .event-details-wrapper .details-list-area .details-list li span i {
            color: var(--theme);
        }

.event-details-wrapper .details-list-area .theme-btn {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.event-details-wrapper .details-list-area .social-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

    .event-details-wrapper .details-list-area .social-icon a {
        color: var(--text);
    }

        .event-details-wrapper .details-list-area .social-icon a:hover {
            color: var(--theme);
        }

.event-wrapper-2 .event-image {
    height: 890px;
}

@media (max-width: 1199px) {
    .event-wrapper-2 .event-image {
        height: initial;
    }
}

@media (max-width: 991px) {
    .event-wrapper-2 .event-image {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .event-wrapper-2 .event-image {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .event-wrapper-2 .event-image {
        height: 400px;
    }
}

.event-wrapper-2 .event-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.event-wrapper-2 .event-right-items {
    padding: 80px;
    background-color: #102F25;
    margin-left: -80px;
}

@media (max-width: 1899px) {
    .event-wrapper-2 .event-right-items {
        margin-left: -120px;
        padding: 40px;
    }
}

@media (max-width: 1199px) {
    .event-wrapper-2 .event-right-items {
        margin-left: 0;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .event-wrapper-2 .event-right-items {
        margin-left: 0;
        padding: 20px;
    }
}

.event-wrapper-2 .event-right-items .event-list-area {
    overflow: hidden;
    height: 723px;
}

.event-wrapper-2 .event-right-items .event-list-items {
    background-color: var(--white);
    border-radius: 7px;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-animation: scrolly 7s linear infinite;
    animation: scrolly 7s linear infinite;
}

@media (max-width: 1199px) {
    .event-wrapper-2 .event-right-items .event-list-items {
        padding: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 25px;
    }
}

.event-wrapper-2 .event-right-items .event-list-items:not(:last-child) {
    margin-bottom: 10px;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 1399px) {
    .event-wrapper-2 .event-right-items .event-list-items .event-content .content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .date {
    background-color: var(--theme-3);
    padding: 12px 20px 12px;
    border-radius: 7px;
    text-align: center;
}

    .event-wrapper-2 .event-right-items .event-list-items .event-content .content .date h2 {
        font-size: 40px;
        color: var(--header);
    }

    .event-wrapper-2 .event-right-items .event-list-items .event-content .content .date span {
        font-size: 14px;
        color: var(--header);
        font-weight: 500;
    }

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text {
    max-width: 230px;
}

    .event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text h4 {
        line-height: 135%;
        font-size: 24px;
    }

        .event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text h4 a:hover {
            color: var(--theme-3);
        }

    .event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
        border-top: 1px solid rgba(16, 47, 37, 0.1);
        margin-top: 20px;
        padding-top: 20px;
    }

@media (max-width: 1199px) {
    .event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time li i {
    margin-right: 7px;
}

.event-wrapper-2 .event-right-items .event-list-items .event-thumb {
    max-width: 215px;
}

@media (max-width: 767px) {
    .event-wrapper-2 .event-right-items .event-list-items .event-thumb {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 800px;
    }
}

.event-wrapper-2 .event-right-items .event-list-items .event-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px var(--theme);
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

    .ripple::before, .ripple::after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 115px;
        height: 115px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        border-radius: 50%;
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        -webkit-animation: rippleOne 3s infinite;
        animation: rippleOne 3s infinite;
    }

    .ripple::before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .ripple::after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }

.swiper-dot .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    background: var(--theme);
    opacity: 1;
    border-radius: 7px;
}

    .swiper-dot .swiper-pagination-bullet:not(:last-child) {
        margin-right: 15px;
    }

    .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        -webkit-transition: 0.6s;
        transition: 0.6s;
        position: relative;
    }

        .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
            position: absolute;
            width: 22px;
            height: 22px;
            line-height: 22px;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background-color: transparent;
            border: 1px solid var(--theme);
            content: "";
        }

.swiper-dot.bg-color-3 .swiper-pagination-bullet {
    background: var(--theme-3);
}

    .swiper-dot.bg-color-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
        border: 1px solid var(--theme-3);
        content: "";
    }

.theme-blue-bg {
    background-color: var(--theme);
}

.array-button {
    position: relative;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

    .array-button .array-prev {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        background-color: var(--theme);
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

@media (max-width: 575px) {
    .array-button .array-prev {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

.array-button .array-prev:hover {
    background-color: var(--white);
    color: var(--theme);
}

.array-button .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--theme);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .array-button .array-next {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

.array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

.array-button.style-2 .array-prev {
    background-color: var(--theme-2);
    color: var(--header);
}

    .array-button.style-2 .array-prev:hover {
        background-color: var(--white);
        color: var(--theme-2);
    }

.array-button.style-2 .array-next {
    color: var(--theme-2);
}

    .array-button.style-2 .array-next:hover {
        color: var(--white);
        background-color: var(--theme-2);
    }

.array-button.style-3 .array-prev {
    background-color: var(--theme-3);
    color: var(--header);
}

    .array-button.style-3 .array-prev:hover {
        background-color: var(--white);
        color: var(--theme-3);
    }

.array-button.style-3 .array-next {
    color: var(--theme-3);
}

    .array-button.style-3 .array-next:hover {
        color: var(--header);
        background-color: var(--theme-3);
    }

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 575px) {
    br {
        display: none;
    }
}

/* background */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.nice-select {
    background-color: transparent;
    border: transparent;
    float: initial;
    overflow: initial;
    height: initial;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 150%;
    width: 100%;
    border: none;
}

    .nice-select:focus, .nice-select:hover {
        border-color: transparent;
    }

    .nice-select::after {
        height: 10px;
        width: 10px;
        right: 15px;
        top: initial;
        border-color: var(--border);
        border-bottom: 2px solid var(--header);
        border-right: 2px solid var(--header);
    }

    .nice-select .list {
        width: initial;
        background-color: var(--theme);
        -webkit-box-shadow: none;
        box-shadow: none;
        overflow: initial;
        -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
        width: 100%;
        top: 100%;
        padding: 0;
        max-height: 50vh;
        overflow-x: auto;
    }

        .nice-select .list::-webkit-scrollbar {
            width: 2px;
            opacity: 1;
            display: block;
        }

        .nice-select .list::-webkit-scrollbar-button, .nice-select .list::-webkit-scrollbar-thumb {
            background: var(--header);
        }

    .nice-select .option {
        background-color: transparent;
        font-size: 16px;
        line-height: 150%;
        padding: 4px 5px;
        min-height: initial;
        font-weight: 500;
    }

        .nice-select .option:hover, .nice-select .option:focus, .nice-select .option.selected.focus {
            background-color: transparent;
        }

    .nice-select .current {
        font-weight: 500;
        color: var(--header);
    }

.head-color {
    color: var(--header);
}

.footer-bg {
    background-color: #031F42;
}

.background-black {
    background-color: var(--black) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

@media (max-width: 1199px) {
    .section-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .section-wrap {
        gap: 20px;
    }
}

.mt-35 {
    margin-top: -35px;
}

.mt-10 {
    margin-top: -10px;
}

.box-shadow {
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

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

.margin-bottom-minus-30 {
    margin-bottom: -30px;
}

.blue-bg {
    background-color: var(--theme);
}

.theme-green-bg {
    background-color: #102F25;
}

.theme-yellow-bg {
    background-color: var(--theme-3);
}

    .theme-yellow-bg .cmn-textslide {
        color: var(--header) !important;
    }

.team-wrapper {
    margin-right: -55%;
}

@media (max-width: 991px) {
    .team-wrapper {
        margin-right: 0;
    }
}

.team-items {
    padding: 30px;
    border-bottom: 5px solid var(--theme);
    position: relative;
    z-index: 9;
    width: 265px;
}

    .team-items::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--white);
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
        border-radius: 5px;
        height: initial;
        top: 30%;
        z-index: -1;
    }

    .team-items .team-image img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }

    .team-items .team-content {
        padding-top: 20px;
        position: relative;
    }

        .team-items .team-content h3 a:hover {
            color: var(--theme);
        }

        .team-items .team-content .social-profile {
            position: absolute;
            right: 20px;
            bottom: 0;
            content: "";
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            z-index: 2;
            display: inline-block;
            overflow: hidden;
            cursor: pointer;
        }

            .team-items .team-content .social-profile ul {
                -webkit-transform: translateY(100px);
                transform: translateY(100px);
                -webkit-transition: all 0.6s ease-in-out;
                transition: all 0.6s ease-in-out;
                opacity: 0;
                visibility: hidden;
                z-index: -1;
            }

                .team-items .team-content .social-profile ul li a {
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    display: block;
                    background: var(--theme);
                    color: var(--white);
                    -webkit-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
                    text-align: center;
                    margin: 0 auto;
                    border-radius: 5px;
                    margin-bottom: 10px;
                }

            .team-items .team-content .social-profile .plus-btn {
                z-index: 2;
                cursor: pointer;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                display: inline-block;
                background: var(--theme);
                color: var(--white);
                -webkit-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
                border-radius: 5px;
            }

                .team-items .team-content .social-profile .plus-btn:hover {
                    background-color: var(--theme);
                    color: var(--white);
                }

            .team-items .team-content .social-profile:hover ul {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

.team-section {
    position: relative;
}

    .team-section .dot-shape {
        position: absolute;
        top: 45%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 3%;
    }

.team-card-items {
    margin-top: 30px;
}

    .team-card-items .team-image {
        position: relative;
    }

        .team-card-items .team-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .team-card-items .team-image .team-content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px 20px;
        }

            .team-card-items .team-image .team-content h3 {
                margin-bottom: 5px;
            }

                .team-card-items .team-image .team-content h3 a:hover {
                    color: var(--theme);
                }

            .team-card-items .team-image .team-content .social-profile {
                position: absolute;
                right: 20px;
                bottom: 30px;
                content: "";
                -webkit-transition: all .4s ease-in-out;
                transition: all .4s ease-in-out;
                z-index: 2;
                display: inline-block;
                overflow: hidden;
                cursor: pointer;
            }

                .team-card-items .team-image .team-content .social-profile ul {
                    -webkit-transform: translateY(100px);
                    transform: translateY(100px);
                    -webkit-transition: all 0.6s ease-in-out;
                    transition: all 0.6s ease-in-out;
                    opacity: 0;
                    visibility: hidden;
                    z-index: -1;
                }

                    .team-card-items .team-image .team-content .social-profile ul li a {
                        width: 40px;
                        height: 40px;
                        line-height: 40px;
                        text-align: center;
                        display: block;
                        background: var(--theme-2);
                        color: var(--white);
                        -webkit-transition: all .4s ease-in-out;
                        transition: all .4s ease-in-out;
                        text-align: center;
                        margin: 0 auto;
                        border-radius: 5px;
                        margin-bottom: 10px;
                    }

                        .team-card-items .team-image .team-content .social-profile ul li a:hover {
                            background-color: var(--header);
                            color: var(--white);
                        }

                .team-card-items .team-image .team-content .social-profile .plus-btn {
                    z-index: 2;
                    cursor: pointer;
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    display: inline-block;
                    background: var(--theme-2);
                    color: var(--white);
                    -webkit-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out;
                    border-radius: 5px;
                }

                    .team-card-items .team-image .team-content .social-profile .plus-btn:hover {
                        background-color: var(--header);
                        color: var(--white);
                    }

                .team-card-items .team-image .team-content .social-profile:hover ul {
                    -webkit-transform: translateY(0);
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                }

.team-section {
    position: relative;
}

    .team-section .world-shape {
        position: absolute;
        top: 15%;
        left: 3%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

    .team-section .roket-shape {
        position: absolute;
        right: 3%;
        bottom: 0;
    }

.team-single-items {
    margin-top: 30px;
}

    .team-single-items .team-image {
        position: relative;
    }

        .team-single-items .team-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .team-single-items .team-image .social-profile {
            position: absolute;
            right: 20px;
            top: 20px;
            content: "";
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            z-index: 2;
            display: inline-block;
            overflow: hidden;
            cursor: pointer;
        }

            .team-single-items .team-image .social-profile ul {
                -webkit-transform: translateY(-100px);
                transform: translateY(-100px);
                -webkit-transition: all 0.6s ease-in-out;
                transition: all 0.6s ease-in-out;
                opacity: 0;
                visibility: hidden;
                z-index: -1;
            }

                .team-single-items .team-image .social-profile ul li a {
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    display: block;
                    background: var(--theme);
                    color: var(--white);
                    -webkit-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
                    text-align: center;
                    margin: 0 auto;
                    border-radius: 50%;
                    margin-top: 10px;
                }

                    .team-single-items .team-image .social-profile ul li a:hover {
                        background-color: var(--header);
                        color: var(--white);
                    }

            .team-single-items .team-image .social-profile .plus-btn {
                z-index: 2;
                cursor: pointer;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                display: inline-block;
                background: var(--theme);
                color: var(--white);
                -webkit-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
                border-radius: 50%;
            }

                .team-single-items .team-image .social-profile .plus-btn:hover {
                    background-color: var(--header);
                    color: var(--white);
                }

            .team-single-items .team-image .social-profile:hover ul {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

    .team-single-items .team-content {
        text-align: center;
        margin-top: 20px;
    }

        .team-single-items .team-content h3 a:hover {
            color: var(--theme);
        }

.team-details-wrapper .team-details-left .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-details-wrapper .team-details-content {
    margin-left: 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content span {
    font-weight: 500;
    color: var(--theme);
    margin-bottom: 5px;
    display: inline-block;
}

.team-details-wrapper .team-details-content h3 {
    font-size: 32px;
    font-weight: 600;
}

.team-details-wrapper .team-details-content .team-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

    .team-details-wrapper .team-details-content .team-meta li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 20px;
    }

        .team-details-wrapper .team-details-content .team-meta li span {
            margin-bottom: 0;
            color: var(--header);
            margin-left: 10px;
        }

        .team-details-wrapper .team-details-content .team-meta li .rating {
            color: var(--ratting);
        }

.team-details-wrapper .team-details-content h4 {
    font-size: 24px;
}

.team-details-wrapper .team-details-content .contact-list {
    margin-top: 20px;
}

    .team-details-wrapper .team-details-content .contact-list li:not(:last-child) {
        margin-bottom: 5px;
    }

    .team-details-wrapper .team-details-content .contact-list li span {
        font-weight: 500;
        color: var(--header);
        display: inline-block;
        min-width: 100px;
        display: inline-block;
    }

    .team-details-wrapper .team-details-content .contact-list li a {
        color: var(--text);
    }

.team-box-items {
    position: relative;
}

    .team-box-items .team-image {
        position: relative;
        z-index: 9;
        overflow: hidden;
    }

        .team-box-items .team-image::before {
            content: "";
            position: absolute;
            top: 70%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(3, 31, 66, 0.8);
            -webkit-transform-origin: center;
            transform-origin: center;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .team-box-items .team-image img {
            width: 100%;
            height: 100%;
        }

        .team-box-items .team-image .team-content {
            position: absolute;
            left: 40px;
            bottom: -40px;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

            .team-box-items .team-image .team-content h3 {
                font-size: 26px;
                margin-bottom: 5px;
            }

                .team-box-items .team-image .team-content h3 a {
                    color: var(--white);
                }

            .team-box-items .team-image .team-content p {
                color: var(--white);
            }

        .team-box-items .team-image .social-profile {
            position: absolute;
            right: 20px;
            top: -120px;
            content: "";
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            z-index: 2;
            display: inline-block;
            overflow: hidden;
            z-index: 9;
            opacity: 0;
            visibility: hidden;
        }

            .team-box-items .team-image .social-profile ul {
                -webkit-transform: translateY(-100px);
                transform: translateY(-100px);
                -webkit-transition: all 0.6s ease-in-out;
                transition: all 0.6s ease-in-out;
                opacity: 0;
                visibility: hidden;
            }

                .team-box-items .team-image .social-profile ul li {
                    margin-bottom: 10px;
                }

                    .team-box-items .team-image .social-profile ul li a {
                        width: 50px;
                        height: 50px;
                        line-height: 50px;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 500;
                        display: block;
                        background: var(--white);
                        color: var(--header);
                        -webkit-transition: all .4s ease-in-out;
                        transition: all .4s ease-in-out;
                        text-align: center;
                        margin: 0 auto;
                        border-radius: 5px;
                    }

                        .team-box-items .team-image .social-profile ul li a:hover {
                            background: var(--theme);
                        }

            .team-box-items .team-image .social-profile .plus-btn {
                z-index: 2;
                cursor: pointer;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                font-size: 18px;
                font-weight: 500;
                display: inline-block;
                background: var(--theme);
                color: var(--header);
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                border-radius: 5px;
                margin-bottom: 10px;
            }

                .team-box-items .team-image .social-profile .plus-btn:hover {
                    background: var(--theme);
                }

            .team-box-items .team-image .social-profile:hover ul {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

    .team-box-items:hover .team-image::before {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .team-box-items:hover .team-image .team-content {
        visibility: visible;
        opacity: 1;
        bottom: 20px;
    }

    .team-box-items:hover .team-image .social-profile {
        visibility: visible;
        opacity: 1;
        top: 20px;
    }

    .team-box-items.style-2 {
        margin-top: 30px;
    }

        .team-box-items.style-2 .team-image::before {
            display: none;
        }

        .team-box-items.style-2 .team-image img {
            border-radius: 7px;
        }

        .team-box-items.style-2 .team-image .social-profile {
            position: absolute;
            right: 20px;
            top: 20px;
            opacity: 1;
            visibility: visible;
        }

            .team-box-items.style-2 .team-image .social-profile ul li a {
                width: 40px;
                height: 40px;
                line-height: 40px;
                background: var(--white);
                color: var(--header);
                border-radius: 50%;
            }

                .team-box-items.style-2 .team-image .social-profile ul li a:hover {
                    background: var(--theme);
                    color: var(--white);
                }

            .team-box-items.style-2 .team-image .social-profile .plus-btn {
                width: 40px;
                height: 40px;
                line-height: 40px;
                background: var(--white);
                color: var(--header);
                border-radius: 50%;
            }

                .team-box-items.style-2 .team-image .social-profile .plus-btn:hover {
                    background: var(--theme);
                    color: var(--white);
                }

        .team-box-items.style-2 .team-content {
            margin-top: 20px;
            text-align: center;
        }

            .team-box-items.style-2 .team-content h4 {
                font-size: 24px;
            }

                .team-box-items.style-2 .team-content h4 a:hover {
                    color: var(--theme);
                }

.team-wrapper-12 {
    margin-top: 65px;
}

@media (max-width: 767px) {
    .team-wrapper-12 {
        margin-top: 30px;
    }
}

.team-wrapper-12 .team-list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid var(--border);
    padding: 30px 50px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .team-wrapper-12 .team-list-items {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .team-wrapper-12 .team-list-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.team-wrapper-12 .team-list-items.active {
    background-color: var(--theme-3);
    -webkit-box-shadow: 10px 4px 60px 0px rgba(255, 210, 93, 0.5);
    box-shadow: 10px 4px 60px 0px rgba(255, 210, 93, 0.5);
    border-radius: 15px;
}

    .team-wrapper-12 .team-list-items.active .team-content .content span {
        color: var(--header);
    }

    .team-wrapper-12 .team-list-items.active .team-content .content h3 a {
        color: var(--header);
    }

    .team-wrapper-12 .team-list-items.active .team-content p {
        color: var(--header);
    }

    .team-wrapper-12 .team-list-items.active .icon {
        color: var(--header);
    }

.team-wrapper-12 .team-list-items .team-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 991px) {
    .team-wrapper-12 .team-list-items .team-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.team-wrapper-12 .team-list-items .team-content .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 57px;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

@media (max-width: 991px) {
    .team-wrapper-12 .team-list-items .team-content .content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.team-wrapper-12 .team-list-items .team-content .content span {
    color: var(--text);
}

.team-wrapper-12 .team-list-items .team-content .content h3 a {
    color: var(--header);
}

.team-wrapper-12 .team-list-items .icon {
    font-size: 20px;
    color: var(--text);
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
}

.team-wrapper-12 .team-list-items .team-hover {
    width: 250px;
    height: 300px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-start: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -50px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    visibility: hidden;
    border-radius: 10px;
}

.team-wrapper-12 .team-list-items:hover .team-hover {
    opacity: 1;
    visibility: visible;
}

.main-cart-wrapper {
    border-radius: 5px;
}

    .main-cart-wrapper .cart-wrapper {
        -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
        box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
        padding: 40px 40px;
    }

        .main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
            width: 100%;
        }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
                border-bottom: 1px solid var(--border);
            }

                .main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
                    padding-bottom: 16px;
                    color: var(--header);
                    text-transform: capitalize;
                }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
                border-bottom: 1px solid var(--border);
                padding: 16px 0;
            }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 16px;
            }

                .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info img {
                    border-radius: 7px;
                }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price {
                color: var(--header);
            }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                gap: 10px;
                background: var(--bg);
                width: 100px;
                border-radius: 5px;
                padding: 2px 20px;
            }

                .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity span {
                    display: block;
                    color: var(--header);
                }

                .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a {
                    display: block;
                }

                    .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a i {
                        color: var(--header);
                    }

            .main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-remove a i {
                color: var(--header);
            }

    .main-cart-wrapper .cart-wrapper-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 20px;
    }

        .main-cart-wrapper .cart-wrapper-footer form {
            border: 1px solid var(--border);
            padding: 8px;
            border-radius: 5px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .main-cart-wrapper .cart-wrapper-footer form input {
                padding: 5px 5px;
                border: none;
                text-transform: capitalize;
                font-size: 16px;
                outline: none;
                background: transparent;
                color: var(--text);
            }

            .main-cart-wrapper .cart-wrapper-footer form button {
                outline: none;
                border: none;
            }

    .main-cart-wrapper .cart-pragh-box {
        margin-top: 24px;
        padding-right: 30px;
    }

    .main-cart-wrapper .cart-graph {
        border: 1px solid var(--border);
        padding: 30px 30px;
        border-radius: 5px;
    }

        .main-cart-wrapper .cart-graph h4 {
            text-align: center;
            color: var(--header);
            margin-bottom: 30px;
        }

        .main-cart-wrapper .cart-graph ul {
            margin-bottom: 30px;
        }

            .main-cart-wrapper .cart-graph ul li {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .main-cart-wrapper .cart-graph ul li:not(:last-child) {
                    border-bottom: 1px solid var(--border);
                }

                .main-cart-wrapper .cart-graph ul li span {
                    width: 50%;
                    color: var(--header);
                    font-size: 18px;
                    text-transform: capitalize;
                    padding: 16px 0;
                    font-weight: 500;
                }

@media (max-width: 767px) {
    .cart-wrapper {
        overflow-x: scroll;
    }

        .cart-wrapper .cart-items-wrapper {
            width: 700px;
        }

        .cart-wrapper .cart-wrapper-footer {
            width: 700px;
        }
}

.checkout-radio {
    -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 24px;
}

    .checkout-radio .primary-text {
        font-size: 24px;
        font-weight: 500;
        line-height: 150%;
        margin-bottom: 16px;
        color: var(--header);
        text-transform: capitalize;
    }

    .checkout-radio h4 {
        color: var(--header);
        margin-bottom: 16px;
        font-weight: 600;
    }

    .checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
        border-radius: 50%;
        width: 18px;
        height: 18px;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
        border: 1px solid var(--border);
        font-weight: 500;
    }

    .checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
        color: var(--header);
        text-transform: capitalize;
    }

    .checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
        margin-bottom: 12px;
    }

@media (max-width: 500px) {
    .checkout-radio {
        padding: 10px;
    }
}

.checkout-single-wrapper .checkout-single h4 {
    color: var(--header);
    margin-bottom: 2rem;
    font-weight: 600;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 12px 24px;
    color: var(--header);
    text-transform: capitalize;
    font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
    color: var(--header);
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::-webkit-input-placeholder {
    color: var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single :-ms-input-placeholder {
    color: var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::-ms-input-placeholder {
    color: var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
    color: var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
    background-color: var(--white);
}

    .checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
        font-size: 18px;
        color: var(--header);
        font-weight: 500;
    }

    .checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
        border-right: 1px solid var(--header);
        border-bottom: 1px solid var(--header);
    }

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
    color: var(--header);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
    -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 32px;
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .checkout-single-wrapper .boxshado-single {
        padding: 14px;
    }
}

.checkout-single-wrapper .checkout-single-bg {
    -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 32px;
}

    .checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
    .checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
    .checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
        border: 1px solid var(--border);
        background: transparent;
        text-transform: capitalize;
    }

@media (max-width: 575px) {
    .checkout-single-wrapper .checkout-single-bg {
        padding: 14px;
    }
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

    .checkout-single-wrapper .checkout-single-bg .payment-save input {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        border: 1px solid var(--border);
        background-color: var(--theme);
        outline: none;
        color: var(--header);
    }

    .checkout-single-wrapper .checkout-single-bg .payment-save label {
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

.shop-details-wrapper .shop-details-image {
    position: relative;
}

    .shop-details-wrapper .shop-details-image .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

        .shop-details-wrapper .shop-details-image .nav img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }

        .shop-details-wrapper .shop-details-image .nav .nav-link {
            padding: 0;
        }

    .shop-details-wrapper .shop-details-image .shop-thumb img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }

.shop-details-wrapper .product-details-content {
    margin-left: 60px;
}

@media (max-width: 1399px) {
    .shop-details-wrapper .product-details-content {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .shop-details-wrapper .product-details-content {
        margin-left: 0;
    }
}

.shop-details-wrapper .product-details-content .star a {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
}

.shop-details-wrapper .product-details-content .star span {
    margin-left: 10px;
}

.shop-details-wrapper .product-details-content .price-list {
    gap: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

    .shop-details-wrapper .product-details-content .price-list h3 {
        font-size: 40px;
    }

.shop-details-wrapper .product-details-content .cart-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

    .shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
        padding-right: 15px;
    }

        .shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
            width: 50px;
            height: 40px;
            text-align: center;
            background-color: transparent;
            border: 1px solid var(--border);
            color: var(--header);
        }

        .shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
            color: var(--header);
        }

        .shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
            color: var(--header);
        }

        .shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
            color: var(--header);
        }

    .shop-details-wrapper .product-details-content .cart-wrp .icon {
        width: 50px;
        height: 40px;
        text-align: center;
        background-color: transparent;
        border: 1px solid var(--border);
        color: var(--header);
        line-height: 40px;
    }

    .shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
        padding: 20px 35px;
    }

.shop-details-wrapper .product-details-content .details-info {
    position: relative;
}

    .shop-details-wrapper .product-details-content .details-info:not(:last-child) {
        margin-bottom: 10px;
    }

    .shop-details-wrapper .product-details-content .details-info span {
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .shop-details-wrapper .product-details-content .details-info a {
        font-size: 16px;
        font-weight: 400;
        color: var(--text);
        margin-left: 150px;
        text-transform: capitalize;
    }

.shop-details-wrapper .single-tab {
    padding-top: 80px;
}

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab {
        padding-top: 50px;
    }
}

.shop-details-wrapper .single-tab .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

    .shop-details-wrapper .single-tab .nav .nav-link.active {
        position: relative;
    }

        .shop-details-wrapper .single-tab .nav .nav-link.active h6 {
            color: var(--theme);
        }

        .shop-details-wrapper .single-tab .nav .nav-link.active::before {
            position: absolute;
            bottom: -21px;
            left: 0;
            height: 2px;
            width: 100%;
            content: "";
            background: var(--theme);
            -webkit-transition: .3s;
            transition: .3s;
        }

@media (max-width: 470px) {
    .shop-details-wrapper .single-tab .nav .nav-link.active::before {
        display: none;
    }
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
    font-size: 18px;
}

.shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 50px;
}

@media (max-width: 1399px) {
    .shop-details-wrapper .single-tab .description-items .description-content {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .shop-details-wrapper .single-tab .description-items .description-content {
        margin-right: 0;
    }
}

.shop-details-wrapper .single-tab .description-items .description-content h3 {
    margin-bottom: 15px;
}

.shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--header);
    font-weight: 600;
}

    .shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
        color: var(--text);
        font-weight: 400;
    }

@media (max-width: 767px) {
    .shop-details-wrapper .single-tab .review-items .admin-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
    }
}

.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
    width: 100px;
    height: 100px;
}

    .shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
        border-radius: 50%;
    }

.shop-details-wrapper .single-tab .review-items .admin-items .content {
    position: relative;
    border: 1px solid var(--border);
}

    .shop-details-wrapper .single-tab .review-items .admin-items .content::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 30px;
        background-color: var(--white);
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 40%;
        left: -16px;
    }

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-items .admin-items .content::before {
        display: none;
    }
}

.shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
    font-size: 14px;
    margin-left: 30px;
}

.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
    font-size: 16px;
    color: var(--theme);
}

.shop-details-wrapper .single-tab .review-title .rate-now {
    margin-top: 15px;
    gap: 15px;
}

    .shop-details-wrapper .single-tab .review-title .rate-now p {
        font-size: 16px;
        text-transform: capitalize;
    }

    .shop-details-wrapper .single-tab .review-title .rate-now i {
        font-size: 16px;
        color: var(--theme);
    }

.shop-details-wrapper .single-tab .review-form {
    margin-top: 40px;
}

    .shop-details-wrapper .single-tab .review-form .form-clt input {
        width: 100%;
        outline: none;
        border: none;
        padding: 18px 35px;
        color: var(--text);
        background-color: var(--bg);
        font-size: 16px;
        text-transform: capitalize;
    }

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-form .form-clt input {
        padding: 15px 20px;
    }
}

.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 18px 35px 170px;
    width: 100%;
    outline: none;
    color: var(--text);
    background-color: whitesmoke;
    font-size: 14px;
    border: none;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
        padding: 15px 20px;
    }
}

.shop-card-items {
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

    .shop-card-items .shop-image {
        position: relative;
    }

        .shop-card-items .shop-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .shop-card-items .shop-image .shop-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
            gap: 10px;
        }

            .shop-card-items .shop-image .shop-icon li {
                width: 40px;
                height: 40px;
                line-height: 40px;
                border-radius: 10px;
                text-align: center;
                background-color: var(--theme);
                margin: 0px 2px;
                -webkit-transition: all 0.4s ease-out 0s;
                transition: all 0.4s ease-out 0s;
                -webkit-transform: scaleX(0);
                transform: scaleX(0);
                cursor: pointer;
            }

                .shop-card-items .shop-image .shop-icon li:hover {
                    background-color: var(--header);
                }

                .shop-card-items .shop-image .shop-icon li a i {
                    color: var(--white);
                }

    .shop-card-items:hover .shop-image .shop-icon li {
        -webkit-transform: scaleX(1) !important;
        transform: scaleX(1) !important;
    }

    .shop-card-items .shop-content {
        text-align: center;
        padding: 25px 20px;
    }

        .shop-card-items .shop-content h3 a:hover {
            color: var(--theme);
        }

        .shop-card-items .shop-content .star {
            color: var(--ratting);
            margin-top: 5px;
        }

        .shop-card-items .shop-content .price {
            font-size: 18px;
            font-weight: 500;
            color: var(--theme);
            margin-top: 5px;
        }

.faq-section {
    position: relative;
    z-index: 9;
}

    .faq-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        z-index: -1;
        height: 50%;
        background-image: url(../img/counter/line-shape.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

.faq-wrapper .faq-image-items .faq-image img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

.faq-wrapper .faq-image-items .faq-image.style-2 {
    margin-bottom: 30px;
}

.faq-wrapper .faq-content {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .faq-wrapper .faq-content {
        margin-left: 0;
    }
}

.faq-wrapper .faq-content .faq-items {
    margin-bottom: 40px;
}

    .faq-wrapper .faq-content .faq-items .accordion .accordion-item {
        border: none;
        border-radius: 0px;
        background-color: transparent;
        border-bottom: 1px solid var(--border);
    }

        .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
            font-size: 22px;
            line-height: 1;
            font-weight: 600;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-family: "League Spartan", sans-serif;
            color: var(--header);
            padding: 5px 25px 25px 20px;
            padding-left: 105px;
        }

@media (max-width: 1199px) {
    .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
        padding-left: 60px;
        padding-right: 40px;
        line-height: 1.4;
    }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
    padding-left: 105px;
    padding-right: 50px;
    padding-top: 0;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

@media (max-width: 1199px) {
    .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
        padding-left: 60px;
    }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    color: var(--header);
    line-height: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 5px;
}

@media (max-width: 575px) {
    .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
        width: 100%;
        line-height: 28px;
    }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
    background-color: var(--bg);
    color: var(--header);
    padding-left: 105px;
}

    .faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
        display: none;
    }

    .faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
        position: absolute;
        content: "\f00d";
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
        /* top: 33px; */
        left: 50px;
        font-size: 22px;
        text-align: center;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        color: var(--header);
    }

@media (max-width: 1199px) {
    .faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
        left: 30px;
    }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
    color: var(--header);
    background-color: transparent;
}

    .faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
        content: "\f0a9";
        color: var(--header);
    }

.faq-wrapper .faq-content .faq-items .accordion .accordion-collapse.show {
    background-color: var(--bg);
}

.faq-wrapper.style-2 .faq-content {
    margin-left: 0;
    margin-right: 40px;
}

@media (max-width: 1199px) {
    .faq-wrapper.style-2 .faq-content {
        margin-right: 0;
    }
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-item {
    border-bottom: 1px solid rgba(9, 34, 75, 0.1);
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button {
    background-color: #FFF1E0;
}

    .faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button.collapsed {
        color: var(--header);
        background-color: transparent;
    }

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-collapse.show {
    background-color: #FFF1E0;
}

.faq-wrapper.style-2 .faq-image-2 {
    position: relative;
}

@media (max-width: 1199px) {
    .faq-wrapper.style-2 .faq-image-2 img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .faq-wrapper.style-2 .faq-image-2 img {
        width: inherit;
        height: initial;
    }
}

@media (max-width: 575px) {
    .faq-wrapper.style-2 .faq-image-2 img {
        width: 100%;
        height: 100%;
    }
}

.faq-wrapper.style-2 .faq-image-2 .bg-shape {
    position: absolute;
    top: 56%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .faq-wrapper.style-2 .faq-image-2 .bg-shape {
        display: none;
    }
}

@media (max-width: 991px) {
    .faq-wrapper.style-2 .faq-image-2 .bg-shape {
        display: block;
    }
}

@media (max-width: 575px) {
    .faq-wrapper.style-2 .faq-image-2 .bg-shape {
        display: none;
    }
}

.faq-wrapper.style-2 .faq-image-2 .quote-shape {
    position: absolute;
    bottom: -25px;
    right: -50px;
}

@media (max-width: 575px) {
    .faq-wrapper.style-2 .faq-image-2 .quote-shape {
        display: none;
    }
}

.faq-wrapper.style-3 .faq-content {
    margin-left: 0;
    margin-right: 40px;
}

@media (max-width: 1199px) {
    .faq-wrapper.style-3 .faq-content {
        margin-right: 0;
    }

        .faq-wrapper.style-3 .faq-content .section-title {
            text-align: left;
        }
}

@media (max-width: 1199px) {
    .faq-wrapper.style-3 .faq-content .faq-items {
        margin-bottom: 0;
    }
}

.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button {
    background-color: var(--white);
}

    .faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button.collapsed {
        color: var(--header);
    }

.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-collapse.show {
    background-color: var(--white);
}

.faq-wrapper.style-5 .faq-content {
    margin-left: 0;
}

.faq-section-2 {
    position: relative;
}

    .faq-section-2 .faq-shape {
        position: absolute;
        top: 20%;
        right: 5%;
    }

.cta-video-section {
    position: relative;
}

    .cta-video-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        height: 50%;
    }

.cta-video-wrapper {
    padding: 240px 0;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .cta-video-wrapper {
        padding: 200px 0;
    }
}

@media (max-width: 991px) {
    .cta-video-wrapper {
        padding: 160px 0;
    }
}

@media (max-width: 767px) {
    .cta-video-wrapper {
        padding: 130px 0;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper {
        padding: 100px 0;
    }
}

.cta-video-wrapper .video-box {
    text-align: center;
    margin: 0 auto;
}

    .cta-video-wrapper .video-box .video-buttton {
        width: 110px;
        height: 110px;
        line-height: 110px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        color: var(--theme);
        display: inline-block;
        font-size: 24px;
    }

@media (max-width: 1199px) {
    .cta-video-wrapper .video-box .video-buttton {
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
}

@media (max-width: 767px) {
    .cta-video-wrapper .video-box .video-buttton {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper .video-box .video-buttton {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

.cta-video-wrapper .video-box .ripple::before, .cta-video-wrapper .video-box .ripple::after {
    width: 110px;
    height: 110px;
}

.cta-section {
    position: relative;
    z-index: 9;
}

    .cta-section::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/cta.svg);
        -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(75%) saturate(451%) hue-rotate(121deg) brightness(96%) contrast(90%);
        filter: brightness(0) saturate(100%) invert(52%) sepia(75%) saturate(451%) hue-rotate(80deg) brightness(96%) contrast(90%);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
    }

    .cta-section .cta-dot {
        position: absolute;
        bottom: 20%;
        left: 5%;
        -webkit-animation: cir36 10s linear infinite;
        animation: cir36 10s linear infinite;
    }

@media (max-width: 991px) {
    .cta-section .cta-dot {
        display: none;
    }
}

.cta-section .cta-circle-shape {
    position: absolute;
    top: 20%;
    right: 5%;
    -webkit-animation: cir36 10s linear infinite;
    animation: cir36 10s linear infinite;
}

@media (max-width: 991px) {
    .cta-section .cta-circle-shape {
        display: none;
    }
}

.cta-text {
    position: relative;
    z-index: 9;
}

    .cta-text h2 {
        margin-bottom: 40px;
    }

        .cta-text h2 span {
            color: var(--theme);
        }

.cta-video-section-2 {
    position: relative;
    z-index: 9;
}

    .cta-video-section-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--white);
        left: 40%;
        z-index: -1;
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
    }

@media (max-width: 1199px) {
    .cta-video-section-2::before {
        display: none;
    }
}

.cta-video-wrapper-2 .video-items {
    max-width: 700px;
    height: 450px;
    border-radius: 10px;
    position: relative;
}

@media (max-width: 767px) {
    .cta-video-wrapper-2 .video-items {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper-2 .video-items {
        height: 320px;
    }
}

.cta-video-wrapper-2 .video-items .video-box-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .cta-video-wrapper-2 .video-items .video-box-2 .video-buttton {
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        color: var(--theme-2);
        display: inline-block;
        font-size: 18px;
    }

@media (max-width: 1199px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .video-buttton {
        width: 80px;
        height: 80px;
        line-height: 90px;
    }
}

@media (max-width: 767px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .video-buttton {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .video-buttton {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.cta-video-wrapper-2 .video-items .video-box-2 .ripple::before, .cta-video-wrapper-2 .video-items .video-box-2 .ripple::after {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 0 0 0 rgba(233, 93, 102, 0.7);
    box-shadow: 0 0 0 0 rgba(233, 93, 102, 0.7);
}

@media (max-width: 1199px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .ripple::before, .cta-video-wrapper-2 .video-items .video-box-2 .ripple::after {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .ripple::before, .cta-video-wrapper-2 .video-items .video-box-2 .ripple::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .cta-video-wrapper-2 .video-items .video-box-2 .ripple::before, .cta-video-wrapper-2 .video-items .video-box-2 .ripple::after {
        width: 60px;
        height: 60px;
    }
}

.cta-banner-wrapper-2 {
    border-radius: 5px;
    padding: 75px 60px;
    position: relative;
    margin-top: 82px;
}

    .cta-banner-wrapper-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: -webkit-gradient(linear, right top, left top, from(#E95D66), to(rgba(233, 93, 110, 0.76)));
        background: linear-gradient(270deg, #E95D66 0%, rgba(233, 93, 110, 0.76) 100%);
        border-radius: 5px;
    }

@media (max-width: 1399px) {
    .cta-banner-wrapper-2 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .cta-banner-wrapper-2 {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .cta-banner-wrapper-2 {
        padding: 40px 30px;
    }
}

.cta-banner-wrapper-2 .cta-image {
    position: absolute;
    bottom: 0;
    left: 30px;
    z-index: 9;
}

@media (max-width: 1399px) {
    .cta-banner-wrapper-2 .cta-image {
        display: none;
    }
}

.cta-banner-wrapper-2 .section-title-area {
    margin-left: 350px;
}

@media (max-width: 1399px) {
    .cta-banner-wrapper-2 .section-title-area {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .cta-banner-wrapper-2 .section-title-area {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
}

.cta-banner-section-2 {
    position: relative;
}

    .cta-banner-section-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        top: 50%;
    }

.cta-newsletter-wrapper {
    padding: 100px 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .cta-newsletter-wrapper {
        padding: 80px 0;
    }
}

.cta-newsletter-wrapper .newsletter-input-items {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

    .cta-newsletter-wrapper .newsletter-input-items input {
        width: 100%;
        border: none;
        background-color: transparent;
        outline: none;
        border-radius: 10px;
        border: 1px solid var(--white);
        padding: 22px 25px;
        line-height: 1;
        color: var(--white);
        padding-left: 60px;
    }

        .cta-newsletter-wrapper .newsletter-input-items input::-webkit-input-placeholder {
            color: var(--white);
        }

        .cta-newsletter-wrapper .newsletter-input-items input:-ms-input-placeholder {
            color: var(--white);
        }

        .cta-newsletter-wrapper .newsletter-input-items input::-ms-input-placeholder {
            color: var(--white);
        }

        .cta-newsletter-wrapper .newsletter-input-items input::placeholder {
            color: var(--white);
        }

    .cta-newsletter-wrapper .newsletter-input-items .icon {
        position: absolute;
        top: 23px;
        left: 25px;
        color: var(--white);
        font-size: 20px;
    }

    .cta-newsletter-wrapper .newsletter-input-items .theme-btn {
        position: absolute;
        top: 8px;
        right: 10px;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        background-color: var(--theme-3);
        color: var(--header);
    }

@media (max-width: 575px) {
    .cta-newsletter-wrapper .newsletter-input-items .theme-btn {
        top: 10px;
    }
}

.cta-newsletter-wrapper .newsletter-input-items .theme-btn:hover {
    color: var(--white);
}

.cta-newsletter-wrapper .list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .cta-newsletter-wrapper .list-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .cta-newsletter-wrapper .list-items {
        display: -ms-grid;
        display: grid;
        gap: 15px;
    }
}

.cta-newsletter-wrapper .list-items li {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

    .cta-newsletter-wrapper .list-items li i {
        margin-right: 5px;
    }

.cta-newsletter-section {
    position: relative;
    z-index: 9;
}

    .cta-newsletter-section .girl-shape {
        position: absolute;
        left: 83px;
        bottom: 0;
        z-index: 99;
    }

@media (max-width: 1199px) {
    .cta-newsletter-section .girl-shape {
        position: relative;
        left: 0;
    }
}

.cta-newsletter-section .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .cta-newsletter-section .shape-1 {
        opacity: .2;
    }
}

.cta-newsletter-section .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
}

@media (max-width: 1199px) {
    .cta-newsletter-section .shape-2 {
        opacity: .2;
    }
}

.instagram-image {
    position: relative;
    max-width: 384px;
    z-index: 9;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

    .instagram-image img {
        width: 100%;
        height: 100%;
    }

    .instagram-image::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: rgba(9, 34, 75, 0.5);
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transition: -webkit-transform 500ms ease;
        transition: -webkit-transform 500ms ease;
        transition: transform 500ms ease;
        transition: transform 500ms ease, -webkit-transform 500ms ease;
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        z-index: 1;
    }

    .instagram-image .icon {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background-color: var(--white);
        text-align: center;
        border-radius: 50%;
        color: var(--header);
        position: absolute;
        top: 150%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 9;
    }

        .instagram-image .icon i {
            -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
        }

        .instagram-image .icon:hover {
            background-color: var(--theme-3);
            color: var(--white);
        }

    .instagram-image:hover::before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: top center;
        transform-origin: top center;
    }

    .instagram-image:hover .icon {
        top: 50%;
    }

    .instagram-image.style-2 {
        border-radius: 10px;
    }

        .instagram-image.style-2::before {
            border-radius: 10px;
            background: rgba(9, 34, 75, 0.5);
        }

        .instagram-image.style-2 .icon {
            color: var(--theme-3);
            font-size: 24px;
            color: var(--header);
        }

            .instagram-image.style-2 .icon i {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            .instagram-image.style-2 .icon:hover {
                background-color: var(--theme-3);
                color: var(--header);
            }

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--theme-3);
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    z-index: 9;
}

@media (max-width: 991px) {
    .marquee-wrapper {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.text-slider {
    font-size: 66px;
    height: 130px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    padding: 50px 0;
}

@media (max-width: 767px) {
    .text-slider {
        font-size: 45px;
        padding: 30px 0;
        height: 90px;
    }
}

.text-slider.style-2 {
    color: var(--white);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
}

.marquee-inner {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 200%;
}

.marquee-list {
    float: left;
    width: 50%;
}

.marquee-item {
    float: left;
    -webkit-transition: -webkit-animation 0.2s ease-out;
    transition: -webkit-animation 0.2s ease-out;
    transition: animation 0.2s ease-out;
    transition: animation 0.2s ease-out, -webkit-animation 0.2s ease-out;
}

.marquee-inner.to-left {
    -webkit-animation: marqueeLeft 25s linear infinite;
    animation: marqueeLeft 25s linear infinite;
}

@-webkit-keyframes marqueeLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.marquee-inner.to-right {
    -webkit-animation: marqueeRight 25s linear infinite;
    animation: marqueeRight 25s linear infinite;
}

@-webkit-keyframes marqueeRight {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

@keyframes marqueeRight {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 15px 0;
}

    .scrolling-wrap .comm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-animation: scroll 60s linear infinite;
        animation: scroll 60s linear infinite;
        gap: 30px;
        cursor: pointer;
    }

        .scrolling-wrap .comm .cmn-textslide {
            font-size: 20px;
            font-weight: 500;
            line-height: 32px;
            text-transform: capitalize;
            color: var(--white);
            font-family: "League Spartan", sans-serif;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 8px;
        }

            .scrolling-wrap .comm .cmn-textslide i {
                font-size: 21px;
            }

            .scrolling-wrap .comm .cmn-textslide.text-color-2 {
                color: var(--header);
            }

    .scrolling-wrap:hover .comm {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }

@media (max-width: 1399px) {
    .scrolling-wrap .comm {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .scrolling-wrap {
        gap: 14px;
    }

        .scrolling-wrap .comm {
            gap: 14px;
        }
}

@media (max-width: 575px) {
    .scrolling-wrap .comm {
        gap: 12px;
    }
}

.scrolling-wrap.style-2 {
    margin-top: -175px;
}

    .scrolling-wrap.style-2 .comm .stroke-text {
        -webkit-text-stroke: 1px #005bff;
        -webkit-text-fill-color: transparent;
        font-size: 150px;
        font-weight: 600;
        line-height: 255px;
        font-family: "League Spartan", sans-serif;
        -webkit-animation: shine 3s infinite;
        animation: shine 3s infinite;
        -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.07) 50%, #fff 50%, rgba(255, 255, 255, 0.07) 70%);
        -webkit-mask-size: 200%;
    }

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes scrolly {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-60%);
        transform: translateY(-60%);
    }
}

@keyframes scrolly {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-60%);
        transform: translateY(-60%);
    }
}

@-webkit-keyframes scrolls {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes scrolls {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

.testimonial-section {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

    .testimonial-section .star-shape {
        position: absolute;
        top: -10%;
        left: 5%;
    }

    .testimonial-section .line-shape {
        position: absolute;
        top: 15%;
        right: 5%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

.testimonial-card-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

    .testimonial-card-items .dot-shape {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .testimonial-card-items .icon {
        position: absolute;
        right: 40px;
        top: 30px;
    }

    .testimonial-card-items .star {
        margin-bottom: 15px;
    }

        .testimonial-card-items .star i {
            color: var(--theme);
        }

        .testimonial-card-items .star .text-color {
            color: #E7E7EB;
        }

    .testimonial-card-items .client-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

@media (max-width: 767px) {
    .testimonial-card-items .client-info {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-card-items .client-info {
        margin-top: 20px;
    }
}

.testimonial-card-items .client-info .client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-card-items .client-info .client-content h5 {
    margin-bottom: 5px;
}

.testimonial-card-items.style-2 {
    margin-top: 0;
    padding: 60px 50px;
    background-color: #f9f9f9;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .testimonial-card-items.style-2 {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-card-items.style-2 {
        padding: 30px 25px;
    }
}

.testimonial-card-items.style-2 .star i {
    color: var(--ratting);
}

.testimonial-card-items.style-2 .star .text-color {
    color: #E7E7EB;
}

.testimonial-left-area .array-button .array-prev {
    background-color: var(--theme-2);
}

    .testimonial-left-area .array-button .array-prev:hover {
        background-color: var(--white);
        color: var(--theme-2);
    }

.testimonial-left-area .array-button .array-next {
    color: var(--theme-2);
}

    .testimonial-left-area .array-button .array-next:hover {
        color: var(--white);
        background-color: var(--theme-2);
    }

.testimonial-right-area {
    margin-right: -70%;
}

@media (max-width: 767px) {
    .testimonial-right-area {
        margin-right: 0;
    }
}

.tesimonial-section-2 {
    position: relative;
}

    .tesimonial-section-2 .array-button {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 10%;
    }

@media (max-width: 767px) {
    .tesimonial-section-2 .array-button {
        display: none;
    }
}

.testimonial-box-items {
    position: relative;
    z-index: 9;
    margin-top: 30px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    padding: 40px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .testimonial-box-items {
        padding: 30px;
    }
}

.testimonial-box-items .icon {
    position: absolute;
    top: 40px;
    right: 40px;
}

.testimonial-box-items .client-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 9;
}

    .testimonial-box-items .client-items .client-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }

        .testimonial-box-items .client-items .client-image.style-2 {
            width: 100px;
            height: 100px;
        }

    .testimonial-box-items .client-items .client-content h4 {
        margin-bottom: 5px;
    }

    .testimonial-box-items .client-items .client-content .star {
        margin-top: 5px;
    }

        .testimonial-box-items .client-items .client-content .star i {
            color: var(--theme-3);
        }

        .testimonial-box-items .client-items .client-content .star .color-text {
            color: var(--text);
            opacity: 0.4;
        }

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content {
        text-align: center;
    }
}

.testimonial-wrapper .testimonial-content .content .icon-top {
    position: relative;
}

    .testimonial-wrapper .testimonial-content .content .icon-top::before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: "";
        border: 1px solid var(--border);
        width: 100%;
        height: 1px;
        z-index: -1;
    }

.testimonial-wrapper .testimonial-content .content .icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
    line-height: 75px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--theme);
    text-align: center;
    margin: 0 auto 30px;
    text-align: center;
    background-color: var(--white);
}

.testimonial-wrapper .testimonial-content .content .star {
    margin-bottom: 20px;
}

    .testimonial-wrapper .testimonial-content .content .star span {
        font-size: 18px;
        font-weight: 600;
        color: var(--header);
        display: inline-block;
        margin-right: 10px;
    }

    .testimonial-wrapper .testimonial-content .content .star i {
        font-size: 16px;
        color: #F8941F;
    }

.testimonial-wrapper .testimonial-content .content h3 {
    font-size: 35px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper .testimonial-content .content h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-content .content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content .content h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper .testimonial-content .content h3 {
        font-size: 22px;
    }
}

.testimonial-wrapper .testimonial-content .content .client-info {
    margin-top: 35px;
}

    .testimonial-wrapper .testimonial-content .content .client-info p {
        font-size: 14px;
        color: var(--header);
        font-weight: 400;
    }

.testimonial-wrapper .testimonial-image-items {
    position: relative;
}

    .testimonial-wrapper .testimonial-image-items .box-shape {
        position: absolute;
        top: 50%;
        left: -40%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 1;
    }

@media (max-width: 991px) {
    .testimonial-wrapper .testimonial-image-items .box-shape {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-1 {
    width: 190px;
    height: 190px;
    border-radius: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-1 {
        text-align: center;
        margin: 0 auto 20px;
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-2 {
    width: 190px;
    height: 190px;
    border-radius: 95px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-2 {
        text-align: center;
        margin: 0 auto 20px;
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-3 {
    width: 190px;
    height: 250px;
    border-radius: 95px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-3 {
        text-align: center;
        margin: 0 auto;
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-4 {
    width: 190px;
    height: 230px;
    border-radius: 95px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-4 {
        text-align: center;
        margin: 0 auto 20px;
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-5 {
    width: 190px;
    height: 190px;
    border-radius: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-5 {
        text-align: center;
        margin: 0 auto 20px;
    }
}

.testimonial-wrapper .testimonial-image-items .client-img-6 {
    width: 190px;
    height: 190px;
    border-radius: 95px;
}

@media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .client-img-6 {
        text-align: center;
        margin: 0 auto;
    }
}

.testimonial-wrapper-2 {
    background-color: #F8F2EC;
    border-radius: 10px;
    padding: 0 80px;
    margin-top: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 {
        margin-top: 30px;
        padding: 30px;
    }
}

.testimonial-wrapper-2 .content {
    max-width: 700px;
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .content {
        text-align: center;
        margin: 0 auto;
    }
}

.testimonial-wrapper-2 .content .icon {
    font-size: 70px;
    color: var(--theme-3);
    margin-bottom: 30px;
}

.testimonial-wrapper-2 .content .star {
    margin-bottom: 20px;
    color: var(--theme-3);
}

    .testimonial-wrapper-2 .content .star span {
        font-size: 20px;
        font-weight: 600;
        color: var(--header);
        display: inline-block;
        margin-right: 20px;
    }

.testimonial-wrapper-2 .content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 140%;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-2 .content h3 {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper-2 .content h3 {
        font-size: 20px;
    }
}

.testimonial-wrapper-2 .content .client-content {
    margin-top: 30px;
}

    .testimonial-wrapper-2 .content .client-content h4 {
        color: var(--theme-3);
    }

    .testimonial-wrapper-2 .content .client-content p {
        font-size: 14px;
        color: var(--header);
    }

.testimonial-wrapper-2 .thumb {
    max-width: 400px;
    text-align: center;
    position: relative;
    text-align: center;
    z-index: 1;
    margin-top: -30px;
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .thumb {
        text-align: center;
        margin: 0 auto 0;
        max-width: 700px;
    }
}

.testimonial-wrapper-2 .thumb .bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 470px) {
    .testimonial-wrapper-2 .thumb .bg-shape {
        display: none;
    }
}

.brand-wrapper h6 {
    font-size: 22px;
    position: relative;
    margin-bottom: 50px;
    color: var(--header);
}

    .brand-wrapper h6::before {
        position: absolute;
        top: 15px;
        left: 35px;
        content: "";
        height: 1px;
        width: 480px;
        background-color: var(--theme-3);
    }

@media (max-width: 1399px) {
    .brand-wrapper h6::before {
        display: none;
    }
}

.brand-wrapper h6::after {
    position: absolute;
    top: 15px;
    right: 35px;
    content: "";
    height: 1px;
    width: 480px;
    background-color: var(--theme-3);
}

@media (max-width: 1399px) {
    .brand-wrapper h6::after {
        display: none;
    }
}

.brand-wrapper .brand-image {
    text-align: center;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: .4;
}

    .brand-wrapper .brand-image:hover {
        -webkit-filter: initial;
        filter: initial;
        opacity: 1;
    }

.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
    -webkit-filter: initial;
    filter: initial;
    opacity: 1;
}

.brand-wrapper11 {
    padding: 80px 100px;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
}

@media (max-width: 991px) {
    .brand-wrapper11 {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .brand-wrapper11 {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .brand-wrapper11 {
        padding: 30px;
    }
}

.brand-wrapper11 .brand-img {
    margin-top: 20px;
}

.pricing-card-items {
    margin-top: 30px;
    padding: 40px 50px;
    background-color: var(--white);
    -webkit-filter: drop-shadow(10px 4px 60px rgba(204, 204, 204, 0.25));
    filter: drop-shadow(10px 4px 60px rgba(204, 204, 204, 0.25));
    border: 1px solid var(--border);
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .pricing-card-items .pricing-header {
        margin-bottom: 30px;
    }

        .pricing-card-items .pricing-header h5 {
            color: var(--theme);
            margin-bottom: 10px;
        }

    .pricing-card-items .pricing-btn {
        margin-top: 20px;
    }

        .pricing-card-items .pricing-btn .theme-btn {
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

    .pricing-card-items .pricing-list {
        margin-top: 50px;
    }

        .pricing-card-items .pricing-list li {
            color: var(--header);
        }

            .pricing-card-items .pricing-list li:not(:last-child) {
                margin-bottom: 15px;
            }

            .pricing-card-items .pricing-list li i {
                color: var(--theme);
                margin-right: 10px;
            }

    .pricing-card-items.style-2 .post-btn {
        background-color: var(--theme-3);
        border-radius: 7px;
        padding: 3px 10px;
        display: inline-block;
        font-size: 12px;
        color: var(--header);
        position: absolute;
        top: 7px;
        right: 7px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .pricing-card-items.style-2 .pricing-btn .theme-btn {
        background-color: var(--theme);
        color: var(--white);
    }

    .pricing-card-items:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

.pricing-section .nav {
    border: none;
}

    .pricing-section .nav .nav-tabs {
        border-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .pricing-section .nav .nav-link {
        font-size: 18px;
        font-weight: 500;
        text-transform: capitalize;
        border: 0;
        border-radius: 0;
        padding: 7px 56px;
        position: relative;
        background: transparent;
        z-index: 2;
        color: var(--text);
        margin-bottom: 0;
    }

        .pricing-section .nav .nav-link::before {
            position: absolute;
            content: "";
            right: 0px;
            top: 50%;
            -webkit-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
            background: var(--theme);
            width: 75px;
            height: 32px;
            border-radius: 20px;
            border: 1px solid var(--theme);
        }

        .pricing-section .nav .nav-link::after {
            position: absolute;
            content: "";
            right: -33px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #FFD25D;
            z-index: 1;
        }

        .pricing-section .nav .nav-link:first-child {
            padding-left: 0;
        }

        .pricing-section .nav .nav-link:last-child {
            padding-right: 0;
        }

            .pricing-section .nav .nav-link:last-child::after {
                display: none;
            }

            .pricing-section .nav .nav-link:last-child::before {
                display: none;
            }

        .pricing-section .nav .nav-link.active {
            color: var(--header);
        }

            .pricing-section .nav .nav-link.active::after {
                right: 8px;
            }

.news-card-items {
    margin-top: 30px;
}

    .news-card-items .news-image {
        position: relative;
        z-index: 2;
        overflow: hidden;
        width: 100%;
    }

        .news-card-items .news-image img {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 10px 10px 0px 0px;
        }

        .news-card-items .news-image .news-layer-wrapper {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-transition: 0.5s;
            transition: 0.5s;
        }

            .news-card-items .news-image .news-layer-wrapper .news-layer-image {
                width: 25%;
                height: 100%;
                -webkit-transition: 0.5s;
                transition: 0.5s;
                background-size: cover;
                border-radius: 10px;
            }

                .news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
                    background-position: 0;
                    -webkit-transition-delay: 0;
                    transition-delay: 0;
                }

                .news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
                    background-position: 33.33%;
                    -webkit-transition-delay: 0.1s;
                    transition-delay: 0.1s;
                }

                .news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
                    background-position: 66.66%;
                    -webkit-transition-delay: 0.2s;
                    transition-delay: 0.2s;
                }

                .news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
                    background-position: 100%;
                    -webkit-transition-delay: 0.3s;
                    transition-delay: 0.3s;
                }

    .news-card-items .news-content {
        padding: 25px 30px;
        background-color: var(--white);
        -webkit-box-shadow: var(---box-shadow);
        box-shadow: var(---box-shadow);
    }

        .news-card-items .news-content ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 15px;
        }

            .news-card-items .news-content ul li i {
                color: var(--theme);
                margin-right: 5px;
            }

        .news-card-items .news-content h3 {
            margin-bottom: 10px;
        }

            .news-card-items .news-content h3 a:hover {
                color: var(--theme);
            }

    .news-card-items:hover .news-image .news-layer-wrapper .news-layer-image {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .news-card-items.style-2 {
        padding-bottom: 50px;
    }

@media (max-width: 1399px) {
    .news-card-items.style-2 br {
        display: none;
    }
}

.news-card-items.style-2 .news-image .post-date {
    width: 70px;
    height: 70px;
    text-align: center;
    background-color: var(--theme-3);
    position: absolute;
    right: 10px;
    z-index: 9;
    top: 10px;
}

    .news-card-items.style-2 .news-image .post-date h3 {
        color: var(--white);
        line-height: initial;
        padding-top: 17px;
    }

    .news-card-items.style-2 .news-image .post-date span {
        font-size: 18px;
        color: var(--white);
        margin-top: -10px;
        display: inline-block;
    }

.news-card-items.style-2 .news-content ul li i {
    color: var(--theme-3);
}

.news-card-items.style-2 .news-content h3 a:hover {
    color: var(--theme-3);
}

.news-box-items {
    margin-top: 30px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

    .news-box-items .news-image {
        position: relative;
    }

        .news-box-items .news-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px 10px 0 0;
        }

        .news-box-items .news-image .post-date {
            position: absolute;
            right: 0;
            bottom: 0;
            background-color: var(--theme-2);
            padding: 12px 20px;
        }

            .news-box-items .news-image .post-date h3 {
                color: var(--white);
            }

            .news-box-items .news-image .post-date p {
                color: var(--white);
            }

    .news-box-items .news-content {
        padding: 30px 40px;
    }

@media (max-width: 575px) {
    .news-box-items .news-content {
        padding: 30px 25px;
    }
}

.news-box-items .news-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .news-box-items .news-content ul li i {
        margin-right: 5px;
    }

.news-box-items .news-content h3 {
    margin-bottom: 10px;
}

    .news-box-items .news-content h3 a:hover {
        color: var(--theme-2);
    }

.news-box-items-2 {
    margin-top: 30px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
}

@media (max-width: 470px) {
    .news-box-items-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0;
    }
}

.news-box-items-2 .news-img {
    max-width: 300px;
    height: 337px;
    border-radius: 10px 0 0 10px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    position: relative;
}

@media (max-width: 575px) {
    .news-box-items-2 .news-img {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 470px) {
    .news-box-items-2 .news-img {
        max-width: 420px;
    }
}

.news-box-items-2 .news-img .post-date {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--theme-2);
    padding: 12px 20px;
}

    .news-box-items-2 .news-img .post-date h3 {
        color: var(--white);
    }

    .news-box-items-2 .news-img .post-date p {
        color: var(--white);
    }

.news-box-items-2 .news-content {
    padding: 30px 20px;
}

@media (max-width: 575px) {
    .news-box-items-2 .news-content {
        padding: 30px 10px;
    }
}

@media (max-width: 470px) {
    .news-box-items-2 .news-content {
        padding: 30px 25px;
    }
}

.news-box-items-2 .news-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .news-box-items-2 .news-content ul {
        gap: 10px;
    }
}

.news-box-items-2 .news-content ul li i {
    margin-right: 5px;
}

.news-box-items-2 .news-content h3 {
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .news-box-items-2 .news-content h3 {
        font-size: 20px;
    }
}

.news-box-items-2 .news-content h3 a:hover {
    color: var(--theme-2);
}

.news-box-items-2.style-2 .news-img {
    max-width: 300px;
    height: 337px;
    border-radius: 10px 0 0 10px;
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    position: relative;
}

.news-section-3 {
    margin-bottom: -50px;
}

.news-left-items {
    margin-top: 30px;
    border: 1px solid rgba(9, 34, 75, 0.1);
    border-radius: 7px;
    background-color: var(--white);
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .news-left-items::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-top: 1px solid var(--theme);
        border-left: 1px solid var(--theme);
        -webkit-transition: 0.5s;
        transition: 0.5s;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: initial;
        transform: initial;
    }

    .news-left-items::after {
        position: absolute;
        content: "";
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-bottom: 1px solid var(--theme);
        border-right: 1px solid var(--theme);
        -webkit-transition: 0.5s;
        transition: 0.5s;
        opacity: 0;
        visibility: hidden;
    }

    .news-left-items .news-thumb {
        padding: 10px;
        padding-bottom: 0;
        position: relative;
        z-index: 9;
    }

        .news-left-items .news-thumb .post-box {
            font-size: 14px;
            font-weight: 600;
            background-color: var(--theme);
            padding: 3px 14px;
            border-radius: 7px;
            color: var(--white);
            position: absolute;
            top: 22px;
            left: 22px;
        }

            .news-left-items .news-thumb .post-box:hover {
                background-color: var(--header);
            }

        .news-left-items .news-thumb img {
            width: 100%;
            height: 100%;
            border-radius: 7px;
        }

    .news-left-items .news-content {
        padding: 25px 40px;
        position: relative;
        z-index: 9;
    }

        .news-left-items .news-content .post-cat {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
        }

            .news-left-items .news-content .post-cat li i {
                margin-right: 5px;
            }

        .news-left-items .news-content h3 {
            line-height: 146%;
            font-size: 26px;
        }

            .news-left-items .news-content h3 a {
                background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme)), to(var(--theme)));
                background-image: linear-gradient(var(--theme), var(--theme));
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .news-left-items .news-content h3 a:hover {
                    background-size: 100% 2px;
                    color: var(--theme);
                }

        .news-left-items .news-content .link-btn {
            font-size: 14px;
            font-weight: 600;
            text-transform: capitalize;
            display: inline-block;
            color: var(--header);
            margin-top: 15px;
        }

            .news-left-items .news-content .link-btn i {
                margin-left: 5px;
            }

            .news-left-items .news-content .link-btn:hover {
                color: var(--theme);
            }

    .news-left-items:hover::before {
        width: 100%;
        height: 100%;
        visibility: visible;
        opacity: 1;
        border-radius: 7px;
    }

    .news-left-items:hover::after {
        width: 100%;
        height: 100%;
        visibility: visible;
        opacity: 1;
        -webkit-transform: initial;
        transform: initial;
        border-radius: 7px;
        -webkit-transform-origin: initial;
        transform-origin: initial;
    }

.news-right-items {
    margin-top: 30px;
    border: 1px solid rgba(9, 34, 75, 0.1);
    border-radius: 7px;
}

    .news-right-items .news-right-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px;
        padding: 11px 10px;
    }

@media (max-width: 1199px) {
    .news-right-items .news-right-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.news-right-items .news-right-box:not(:last-child) {
    border-bottom: 1px solid rgba(9, 34, 75, 0.1);
}

.news-right-items .news-right-box .thumb {
    max-width: 280px;
    position: relative;
}

@media (max-width: 1199px) {
    .news-right-items .news-right-box .thumb {
        max-width: 800px;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.news-right-items .news-right-box .thumb .post-box {
    font-size: 14px;
    font-weight: 600;
    background-color: var(--theme);
    padding: 2px 14px;
    border-radius: 7px;
    color: var(--white);
    position: absolute;
    top: 10px;
    left: 10px;
}

    .news-right-items .news-right-box .thumb .post-box:hover {
        background-color: var(--header);
    }

.news-right-items .news-right-box .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

.news-right-items .news-right-box .content {
    max-width: 270px;
}

@media (max-width: 1199px) {
    .news-right-items .news-right-box .content {
        max-width: initial;
        padding: 25px;
        padding-top: 0;
    }
}

.news-right-items .news-right-box .content .post-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

    .news-right-items .news-right-box .content .post-cat li {
        font-size: 14px;
    }

        .news-right-items .news-right-box .content .post-cat li i {
            margin-right: 5px;
        }

.news-right-items .news-right-box .content h5 {
    line-height: 139%;
    font-size: 22px;
}

    .news-right-items .news-right-box .content h5 a {
        background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme)), to(var(--theme)));
        background-image: linear-gradient(var(--theme), var(--theme));
        background-position: 0 95%;
        background-repeat: no-repeat;
        background-size: 0% 2px;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .news-right-items .news-right-box .content h5 a:hover {
            background-size: 100% 2px;
            color: var(--theme);
        }

.news-right-items .news-right-box .content .link-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    color: var(--header);
    margin-top: 10px;
}

    .news-right-items .news-right-box .content .link-btn i {
        margin-left: 5px;
    }

    .news-right-items .news-right-box .content .link-btn:hover {
        color: var(--theme);
    }

.news-box-items-22 {
    margin-top: 30px;
}

    .news-box-items-22 .news-image {
        overflow: hidden;
        border-radius: 7px;
    }

        .news-box-items-22 .news-image img {
            width: 100%;
            height: 100%;
            border-radius: 7px;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

    .news-box-items-22 .news-content {
        margin-top: 15px;
    }

        .news-box-items-22 .news-content .post-date {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 10px;
        }

            .news-box-items-22 .news-content .post-date li {
                font-size: 14px;
            }

                .news-box-items-22 .news-content .post-date li i {
                    margin-right: 5px;
                }

        .news-box-items-22 .news-content h3 {
            line-height: 145%;
            margin-bottom: 20px;
        }

            .news-box-items-22 .news-content h3 a {
                background-image: -webkit-gradient(linear, left top, left bottom, from(var(--header)), to(var(--header)));
                background-image: linear-gradient(var(--header), var(--header));
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .news-box-items-22 .news-content h3 a:hover {
                    background-size: 100% 2px;
                }

        .news-box-items-22 .news-content .theme-btn {
            padding: 14px 25px;
            font-size: 14px;
            color: var(--text);
            font-weight: 600;
            background-color: transparent;
            border: 1px solid rgba(16, 47, 37, 0.1);
            border-radius: 10px;
        }

            .news-box-items-22 .news-content .theme-btn::before, .news-box-items-22 .news-content .theme-btn::after {
                background-color: var(--theme-3);
            }

            .news-box-items-22 .news-content .theme-btn:hover {
                border: 1px solid transparent;
                color: var(--white);
            }

    .news-box-items-22:hover .news-image img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
    font-weight: 600;
}

.blog-wrapper .single-blog-post {
    margin-bottom: 40px;
    position: relative;
}

    .blog-wrapper .single-blog-post .video__button {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 2;
    }

        .blog-wrapper .single-blog-post .video__button .video__btn__wrp {
            margin-bottom: 0;
        }

    .blog-wrapper .single-blog-post .array-button {
        position: initial;
    }

        .blog-wrapper .single-blog-post .array-button .array-prev {
            position: absolute;
            top: 46%;
            left: 2%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 9;
            border-radius: 0;
        }

        .blog-wrapper .single-blog-post .array-button .array-next {
            position: absolute;
            top: 46%;
            right: 2%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 9;
            border-radius: 0;
        }

    .blog-wrapper .single-blog-post .postbox-audio {
        position: relative;
    }

        .blog-wrapper .single-blog-post .postbox-audio iframe {
            height: 400px;
            width: 100%;
        }

@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .postbox-audio iframe {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .postbox-audio iframe {
        height: 230px;
    }
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
    position: relative;
    background: transparent;
    border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
    border: none;
}

    .blog-wrapper .single-blog-post.post-details .post-content img {
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }

    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 36px;
        line-height: 1.4;
    }

    .blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
        margin-top: 10px;
    }

    .blog-wrapper .single-blog-post.post-details .post-content table {
        margin-top: 20px;
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details .post-content h1 {
        font-size: 28px;
    }

    .blog-wrapper .single-blog-post.post-details .post-content h3 {
        font-size: 20px;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    background-color: var(--theme);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

    .blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
        color: var(--white);
    }

        .blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
            color: var(--text);
        }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}

.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: .1;
    font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
    z-index: 1;
    position: relative;
}

    .blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        content: "";
        background-color: #282835;
        opacity: .3;
        z-index: -1;
    }

.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
    position: relative;
    background-color: var(--theme);
    border: none;
    border-radius: 10px;
}

    .blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-image: url(../img/quotepost.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    overflow: hidden;
    padding: 50px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
        text-align: center;
        font-size: 24px;
        padding: 30px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    font-size: 70px;
    line-height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

@media (max-width: 585px) {
    .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
        float: none;
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 50px;
        line-height: 60px;
    }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
    overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    margin-top: -2px;
    font-size: 30px;
    color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
    margin-top: 10px;
}

    .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
        color: var(--white);
    }

.blog-wrapper .single-blog-post:last-child {
    margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
    height: 400px;
    width: 100%;
    position: relative;
    margin-bottom: -2px;
    border-radius: 5px;
}

    .blog-wrapper .single-blog-post .post-featured-thumb .post-date {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 15px 30px;
        background-color: var(--theme);
        text-align: center;
        border-radius: 5px;
    }

        .blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
            color: var(--white);
        }

            .blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
                color: var(--white);
                text-transform: uppercase;
                font-size: 15px;
            }

@media (max-width: 991px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb {
        height: 230px;
    }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

    .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
        border-radius: 50%;
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 18px;
        display: inline-block;
        background-color: var(--theme);
        text-align: center;
        color: var(--white);
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
    width: 80px;
    height: 80px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
        width: 60px;
        height: 60px;
    }
}

.blog-wrapper .single-blog-post .post-content {
    padding-top: 30px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content {
        padding-top: 20px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 {
    line-height: 1.2;
    font-size: 48px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 28px;
    }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
    color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content {
        padding: 30px 10px;
    }
}

@media (max-width: 414px) {
    .blog-wrapper .single-blog-post .post-content h2 {
        font-size: 22px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
    color: var(--white);
    display: inline-block;
    background-color: var(--theme);
    padding: 14px 18px 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: 'League Spartan', sans-serif;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-cat a {
        font-size: 12px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
    background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
    margin-bottom: 0;
    list-style-type: disc;
    margin-top: 30px;
}

    .blog-wrapper .single-blog-post .post-content ul ol {
        margin-bottom: 0;
    }

    .blog-wrapper .single-blog-post .post-content ul ul {
        margin-bottom: 0;
    }

    .blog-wrapper .single-blog-post .post-content ul li {
        line-height: 1.5;
        margin-top: 10px;
        list-style-type: disc;
        color: var(--text);
        position: relative;
        font-size: 18px;
        padding-left: 30px;
    }

        .blog-wrapper .single-blog-post .post-content ul li::before {
            position: absolute;
            left: 0;
            top: 0;
            font-family: "Font Awesome 5 Pro";
            content: "\f00c";
            color: var(--theme);
        }

.blog-wrapper .single-blog-post .post-content ol {
    margin-bottom: 0;
    list-style-type: decimal;
}

    .blog-wrapper .single-blog-post .post-content ol ul {
        margin-bottom: 0;
    }

    .blog-wrapper .single-blog-post .post-content ol ol {
        margin-bottom: 0;
    }

    .blog-wrapper .single-blog-post .post-content ol li {
        line-height: 1.5;
        margin-top: 10px;
        list-style-type: decimal;
    }

.blog-wrapper .single-blog-post .post-content p {
    margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
    margin-bottom: 10px;
}

    .blog-wrapper .single-blog-post .post-content .post-meta span {
        color: var(--text);
        font-weight: 500;
        font-size: 18px;
        line-height: 1;
        display: inline-block;
        margin-right: 25px;
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-meta span {
        font-size: 15px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
    margin-right: 5px;
    color: var(--theme);
    font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
    overflow: hidden;
}

    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        height: 40px;
        width: 40px;
        line-height: 40px;
        border-radius: 50%;
        background-color: #f2f2f2;
        margin-right: 15px;
        float: left;
        overflow: hidden;
        background-position: center;
        background-size: cover;
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info .author-img {
        margin-right: 5px;
    }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    margin-top: 9px;
}

    .blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
        color: var(--theme);
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .author-info h5 {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
    font-weight: 700;
}

    .blog-wrapper .single-blog-post .post-content .post-link a:hover {
        color: var(--theme);
    }

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a {
        font-size: 14px;
    }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 5px;
}

@media (max-width: 767px) {
    .blog-wrapper .single-blog-post .post-content .post-link a i {
        margin-right: 3px;
    }
}

@media (min-width: 991px) {
    .news-area .main-sidebar {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .news-area .main-sidebar {
        margin-top: 40px;
    }
}

.news-area .main-sidebar .single-sidebar-widget {
    border: 2px solid #ededed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 40px;
}

    .news-area .main-sidebar .single-sidebar-widget ul {
        padding-left: 0;
    }

        .news-area .main-sidebar .single-sidebar-widget ul > li {
            margin-bottom: 10px;
        }

            .news-area .main-sidebar .single-sidebar-widget ul > li a {
                font-size: 16px;
                font-weight: 600;
                text-transform: capitalize;
            }

                .news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
                    color: var(--theme);
                }

        .news-area .main-sidebar .single-sidebar-widget ul ul {
            padding-left: 20px;
        }

            .news-area .main-sidebar .single-sidebar-widget ul ul li {
                margin-top: 5px;
            }

    .news-area .main-sidebar .single-sidebar-widget:last-child {
        margin-bottom: 0;
    }

    .news-area .main-sidebar .single-sidebar-widget .wid-title {
        margin-bottom: 25px;
        padding-left: 45px;
        position: relative;
    }

        .news-area .main-sidebar .single-sidebar-widget .wid-title::before {
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            height: 4px;
            width: 18px;
            border-radius: 5px;
            position: absolute;
            background-color: var(--theme);
        }

        .news-area .main-sidebar .single-sidebar-widget .wid-title::after {
            left: 22px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            content: "";
            height: 4px;
            width: 4px;
            border-radius: 50%;
            position: absolute;
            background-color: var(--theme);
        }

        .news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
            font-size: 24px;
            font-weight: 600;
        }

    .news-area .main-sidebar .single-sidebar-widget .social-link a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--bg);
        font-size: 14px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

        .news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
            background-color: var(--theme);
            color: var(--white);
        }

.search_widget form {
    width: 100%;
    position: relative;
}

    .search_widget form input {
        background-color: var(--bg);
        font-size: 15px;
        padding: 20px;
        width: 100%;
        border: none;
        text-transform: capitalize;
        color: var(--header);
    }

    .search_widget form button {
        position: absolute;
        right: 0;
        top: 0;
        width: 70px;
        font-size: 18px;
        height: 100%;
        background-color: var(--theme);
        color: var(--white);
        text-align: center;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .search_widget form button:hover {
            background-color: var(--header);
        }

.popular-posts .single-post-item, .popular_posts .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

    .popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
        margin-bottom: 0;
        border: none;
        padding-bottom: 0;
    }

    .popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
        height: 100px;
        width: 100px;
        background-color: #f2f2f2;
        float: left;
        overflow: hidden;
        margin-right: 20px;
        border-radius: 5px;
    }

    .popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
        overflow: hidden;
    }

        .popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
            font-size: 18px;
            line-height: 22px;
            font-weight: 600;
            margin-bottom: 0;
            text-transform: capitalize;
        }

            .popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
                color: var(--theme);
            }

        .popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
            margin-top: 10px;
            color: var(--theme);
            font-weight: 600;
            font-size: 15px;
            text-transform: capitalize;
        }

            .popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
                margin-right: 7px;
            }

.widget_categories ul li {
    display: block;
}

    .widget_categories ul li:last-child a {
        margin-bottom: 0;
    }

    .widget_categories ul li a {
        position: relative;
        background: var(--bg);
        padding: 17px 20px;
        line-height: 1;
        font-size: 14px;
        display: block;
        margin-bottom: 12px;
        font-weight: 500;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .widget_categories ul li a:hover {
            color: var(--theme);
        }

        .widget_categories ul li a i {
            margin-right: 10px;
        }

        .widget_categories ul li a span {
            position: absolute;
            width: 60px;
            line-height: 55px;
            height: 100%;
            content: "";
            background-color: var(--theme);
            right: 0;
            top: 0;
            text-align: center;
            color: var(--white);
        }

.tagcloud a {
    display: inline-block;
    padding: 11px 26px;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    background: var(--bg);
    margin-right: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 4px;
}

    .tagcloud a:last-child {
        margin-right: 0;
    }

    .tagcloud a:hover {
        background-color: var(--theme);
        color: var(--white);
    }

.widget_categories ul li {
    display: block;
    margin-bottom: 10px;
}

p.sticky-label {
    position: absolute;
    right: 0;
    background: var(--theme);
    color: var(--white);
    padding: 10px 40px;
    z-index: -1;
    top: 0;
    font-weight: 700;
}

.page-nav-wrap ul li {
    display: inline-block;
}

    .page-nav-wrap ul li .page-numbers {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        background: #f6f6f6;
        font-weight: 700;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        margin: 0 2px;
    }

        .page-nav-wrap ul li .page-numbers.current {
            background-color: var(--theme);
            color: var(--white);
        }

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap.style-2 ul li {
    display: inline-block;
}

    .page-nav-wrap.style-2 ul li .page-numbers.current {
        background-color: var(--theme-2);
    }

    .page-nav-wrap.style-2 ul li .page-numbers:hover {
        background-color: var(--theme-2);
    }

.page-nav-wrap.style-3 ul li {
    display: inline-block;
}

    .page-nav-wrap.style-3 ul li .page-numbers.current {
        background-color: var(--theme-3);
    }

    .page-nav-wrap.style-3 ul li .page-numbers:hover {
        background-color: var(--theme-3);
    }

.social-share a {
    margin-left: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .social-share a:hover {
        color: var(--theme);
    }

.tag-share-wrap {
    padding-bottom: 50px;
}

    .tag-share-wrap h4 {
        margin-bottom: 25px;
    }

@media (max-width: 767px) {
    .tag-share-wrap h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .tag-share-wrap .tagcloud {
        margin-bottom: 20px;
    }
}

.comments-section-wrap {
    overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 26px;
}

@media (max-width: 767px) {
    .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
        font-size: 20px;
    }
}

.comments-item-list .single-comment-item {
    margin-top: 30px;
}

    .comments-item-list .single-comment-item ul {
        margin-bottom: 15px;
    }

    .comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
        font-size: 16px;
    }

    .comments-item-list .single-comment-item .author-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        float: left;
        overflow: hidden;
        margin-right: 30px;
    }

@media (max-width: 991px) {
    .comments-item-list .single-comment-item .author-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

@media (max-width: 585px) {
    .comments-item-list .single-comment-item .author-img {
        float: none;
        margin-bottom: 20px;
    }
}

.comments-item-list .single-comment-item .author-info-comment {
    overflow: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}

    .comments-item-list .single-comment-item .author-info-comment .info {
        position: relative;
    }

        .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
            padding: 12px 18px;
            font-size: 14px;
            position: absolute;
            top: 50%;
            right: 0;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            color: #727475;
            border: 1px solid #ebebeb;
            background: transparent;
            border-radius: 0;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            -webkit-box-shadow: inherit;
            box-shadow: inherit;
        }

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
    margin-right: 10px;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
    background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}

    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
        color: var(--white) !important;
    }

    .comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

.comments-item-list .single-comment-item .author-info-comment .info h5 {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .info h5 {
        font-size: 16px;
    }
}

.comments-item-list .single-comment-item .author-info-comment span {
    color: var(--theme);
    font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
    padding: 7px 18px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .comments-item-list .single-comment-item .author-info-comment .theme-btn {
        font-size: 12px;
    }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
    margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
    color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
    margin-top: 15px;
}

.comment-form {
    background-color: var(--white);
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .comment-form {
        padding: 30px;
    }
}

@media (max-width: 585px) {
    .comment-form {
        padding: 30px 15px;
    }
}

.comment-form label {
    margin-bottom: 4px;
}

.comment-form input, .comment-form textarea {
    margin-bottom: 20px;
    outline: none;
    padding: 20px 30px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    border: none;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--header);
    border-radius: 10px;
    background-color: var(--bg);
}

@media (max-width: 585px) {
    .comment-form input, .comment-form textarea {
        padding: 15px;
    }
}

.comment-form textarea {
    height: 200px;
    line-height: 1.3;
    border: none;
}

@media (max-width: 767px) {
    .comment-form textarea {
        height: 120px;
    }
}

.comment-form .theme-btn {
    display: inline-block;
    line-height: 1.2;
    padding: 24px 60px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .comment-form .theme-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 585px) {
    .comment-form .theme-btn {
        padding: 15px 40px;
        font-size: 14px;
    }
}

.comment-form .theme-btn i {
    margin-right: 10px;
}

.comment-form .theme-btn:hover i {
    -webkit-transform: translate(0);
    transform: translate(0);
}

.comment ul {
    list-style-type: disc;
}

    .comment ul ol {
        margin-bottom: 0;
    }

    .comment ul li {
        line-height: 1.5;
        margin-top: 10px;
        list-style-type: disc;
    }

.comment ol ul {
    margin-bottom: 0;
}

.comment ol ol {
    margin-bottom: 0;
}

.comment ol li {
    line-height: 1.5;
    margin-top: 10px;
}

.site_info_widget .single-contact-info {
    overflow: auto;
    margin-bottom: 20px;
}

    .site_info_widget .single-contact-info span {
        display: block;
        color: var(--theme);
    }

    .site_info_widget .single-contact-info .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--white);
        background-color: var(--theme);
        float: left;
        text-align: center;
        overflow: hidden;
        font-size: 16px;
        margin-right: 20px;
    }

    .site_info_widget .single-contact-info:nth-child(2n) .icon {
        background-color: var(--theme);
    }

    .site_info_widget .single-contact-info:nth-child(3n) .icon {
        background-color: var(--theme);
    }

.site_info_widget .social-link {
    margin-top: 35px;
}

    .site_info_widget .social-link a {
        margin-right: 8px !important;
    }

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.top-category-wrapper-2 {
    background-color: var(--white);
    border-radius: 10px;
    position: relative;
    z-index: 9;
}

    .top-category-wrapper-2 .top-category-left-items .top-category-box {
        padding: 40px 30px;
        border: 1px solid var(--border);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

@media (max-width: 767px) {
    .top-category-wrapper-2 .top-category-left-items .top-category-box {
        padding: 30px;
        margin: 0 auto;
        text-align: center;
    }
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .icon {
    font-size: 46px;
    color: var(--theme);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .content {
    margin-top: 45px;
}

    .top-category-wrapper-2 .top-category-left-items .top-category-box .content h6 {
        font-size: 18px;
        font-weight: 600;
    }

    .top-category-wrapper-2 .top-category-left-items .top-category-box .content p {
        font-size: 14px;
        font-weight: 400;
    }

@media (max-width: 1199px) {
    .top-category-wrapper-2 .top-category-left-items .top-category-box {
        background-color: var(--theme);
        border: none;
    }

        .top-category-wrapper-2 .top-category-left-items .top-category-box .icon {
            color: var(--white);
        }

        .top-category-wrapper-2 .top-category-left-items .top-category-box .content h6 {
            color: var(--white);
        }

        .top-category-wrapper-2 .top-category-left-items .top-category-box .content p {
            color: var(--white);
        }
}

.top-category-wrapper-2 .top-category-left-items .top-category-box:hover {
    background-color: var(--theme);
}

    .top-category-wrapper-2 .top-category-left-items .top-category-box:hover .icon {
        color: var(--white);
    }

    .top-category-wrapper-2 .top-category-left-items .top-category-box:hover .content h6 {
        color: var(--white);
    }

    .top-category-wrapper-2 .top-category-left-items .top-category-box:hover .content p {
        color: var(--white);
    }

.top-category-wrapper-2 .border-left-none {
    border-left: none !important;
}

.top-category-wrapper-2 .border-top-none {
    border-top: none !important;
}

.top-category-wrapper-2 .border-bottom-none {
    border-bottom: none !important;
}

.top-category-wrapper-2 .border-right-none {
    border-right: none !important;
}

.top-category-wrapper-2 .courses-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .top-category-wrapper-2 .courses-image {
        position: relative;
        left: 0;
        -webkit-transform: initial;
        transform: initial;
        text-align: center;
    }
}

.top-category-wrapper-2 .courses-image .bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.top-category-section-2 {
    background-color: #031F42;
}

    .top-category-section-2 .circle-shape {
        position: absolute;
        top: 0;
        left: 0;
    }

    .top-category-section-2 .category-bottom-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
        margin-top: 50px;
        position: relative;
        z-index: 9;
    }

@media (max-width: 767px) {
    .top-category-section-2 .category-bottom-title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.top-category-section-2 .category-bottom-title h3 {
    color: var(--white);
    font-weight: 500;
}

.top-category-section-2 .category-bottom-title .theme-btn {
    padding: 16px 20px;
    font-size: 14px;
}

.catagories-section {
    position: relative;
}

    .catagories-section .shape-1 {
        position: absolute;
        bottom: 0;
        right: 5%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

.catagories-box-items {
    margin-top: 24px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
    padding: 30px 15px;
    border-radius: 5px;
    position: relative;
    z-index: 9;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

    .catagories-box-items .icon {
        font-size: 42px;
        color: var(--header);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .catagories-box-items:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        background-color: var(--theme);
    }

        .catagories-box-items:hover .icon {
            color: var(--white);
        }

        .catagories-box-items:hover .content h3 a {
            color: var(--white);
        }

    .catagories-box-items .content {
        margin-top: 20px;
    }

        .catagories-box-items .content h3 {
            font-size: 20px;
        }

.register-section {
    position: relative;
}

    .register-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--black);
        opacity: .6;
    }

.register-wrapper {
    position: relative;
    z-index: 9;
}

    .register-wrapper .register-items .register-title {
        margin-bottom: 30px;
    }

        .register-wrapper .register-items .register-title span {
            color: var(--white);
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: inline-block;
        }

        .register-wrapper .register-items .register-title h2 {
            font-size: 70px;
            color: var(--white);
        }

@media (max-width: 991px) {
    .register-wrapper .register-items .register-title h2 {
        font-size: 62px;
    }
}

@media (max-width: 767px) {
    .register-wrapper .register-items .register-title h2 {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .register-wrapper .register-items .register-title h2 {
        font-size: 42px;
    }
}

.register-wrapper .register-items p {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .register-wrapper .register-items p {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .register-wrapper .register-items p {
        margin-bottom: 30px;
    }
}

.register-wrapper .register-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    margin: 0;
}

@media (max-width: 1199px) {
    .register-wrapper .register-items ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.register-wrapper .register-items ul li span {
    font-size: 42px;
    color: var(--white);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    border: 3px solid var(--white);
    display: inline-block;
}

@media (max-width: 1199px) {
    .register-wrapper .register-items ul li span {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 32px;
    }
}

.register-wrapper .register-items ul li p {
    color: var(--white);
    margin-top: 10px;
    text-transform: uppercase;
}

.register-wrapper .register-contact {
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .register-wrapper .register-contact {
        padding: 40px 30px;
    }
}

.register-wrapper .register-contact h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .register-wrapper .register-contact h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.register-wrapper .register-contact .form-clt input {
    outline: none;
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 16px 20px;
    width: 100%;
    color: var(--text);
    border-radius: 10px;
}

    .register-wrapper .register-contact .form-clt input::-webkit-input-placeholder {
        color: var(--text);
        font-weight: 500;
    }

    .register-wrapper .register-contact .form-clt input:-ms-input-placeholder {
        color: var(--text);
        font-weight: 500;
    }

    .register-wrapper .register-contact .form-clt input::-ms-input-placeholder {
        color: var(--text);
        font-weight: 500;
    }

    .register-wrapper .register-contact .form-clt input::placeholder {
        color: var(--text);
        font-weight: 500;
    }

@media (max-width: 575px) {
    .register-wrapper .register-contact .form-clt input {
        padding: 14px 20px;
    }
}

.register-wrapper .register-contact .theme-btn {
    width: 100%;
    background-color: var(--theme-3);
    font-size: 16px;
    font-weight: 600;
    padding: 22px 40px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    line-height: 1;
    color: var(--header);
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .register-wrapper .register-contact .theme-btn:hover {
        background-color: var(--header);
        color: var(--white);
    }

.privacy-wrapper .privacy-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.privacy-wrapper .privacy-content {
    margin-top: 30px;
}

    .privacy-wrapper .privacy-content h2 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 32px;
    }

    .privacy-wrapper .privacy-content ul {
        margin-top: 30px;
    }

        .privacy-wrapper .privacy-content ul li:not(:last-child) {
            margin-bottom: 15px;
        }

        .privacy-wrapper .privacy-content ul li i {
            margin-right: 5px;
            color: var(--theme);
        }

.purchase-wrapper .purchase-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.purchase-wrapper .purchase-content {
    margin-top: 30px;
}

    .purchase-wrapper .purchase-content h2 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 32px;
    }

    .purchase-wrapper .purchase-content ul {
        margin-top: 30px;
    }

        .purchase-wrapper .purchase-content ul li:not(:last-child) {
            margin-bottom: 15px;
        }

        .purchase-wrapper .purchase-content ul li i {
            margin-right: 5px;
            color: var(--theme);
        }

.login-form-box {
    padding: 70px 50px;
    border-radius: 5px;
    background-color: var(--white);
    -webkit-box-shadow: var(---box-shadow);
    box-shadow: var(---box-shadow);
}

    .login-form-box .title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .login-form-box p {
        color: var(--header);
        margin-bottom: 25px;
    }

        .login-form-box p a {
            font-weight: 500;
            color: var(--theme);
        }

    .login-form-box .form-group:not(:last-child) {
        margin-bottom: 25px;
    }

    .login-form-box .form-group label {
        color: var(--header);
        margin-bottom: 10px;
    }

    .login-form-box .form-group input {
        border: 1px solid var(--border);
        border-radius: 5px;
        width: 100%;
        padding: 14px 20px;
        color: var(--text);
    }

    .login-form-box .form-group.chekbox-area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 25px 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        border-radius: 10px;
    }

        .login-form-box .form-group.chekbox-area .edu-form-check {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 10px;
        }

            .login-form-box .form-group.chekbox-area .edu-form-check input {
                padding: 0;
                width: initial;
            }

            .login-form-box .form-group.chekbox-area .edu-form-check label {
                margin-bottom: 0;
                cursor: pointer;
            }

        .login-form-box .form-group.chekbox-area .password-reset {
            color: var(--theme);
        }

    .login-form-box .form-group .theme-btn {
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .login-form-box .form-group .theme-btn::before, .login-form-box .form-group .theme-btn::after {
            display: none;
        }

        .login-form-box .form-group .theme-btn:hover {
            background-color: var(--header);
        }

    .login-form-box.registration-form .form-group.chekbox-area .edu-form-check a {
        color: var(--theme);
    }

.contact-main-wrapper .contact-content {
    margin-right: 30px;
}

@media (max-width: 1399px) {
    .contact-main-wrapper .contact-content {
        margin-right: 0;
    }
}

.contact-main-wrapper .contact-content .info-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

    .contact-main-wrapper .contact-content .info-items .icon {
        font-size: 22px;
        color: var(--theme);
    }

    .contact-main-wrapper .contact-content .info-items .content h5 {
        margin-bottom: 5px;
    }

    .contact-main-wrapper .contact-content .info-items .content a {
        color: var(--text);
    }

    .contact-main-wrapper .contact-content .info-items .content .social-icon {
        gap: 15px;
        position: relative;
        z-index: 9;
        margin-top: 10px;
    }

        .contact-main-wrapper .contact-content .info-items .content .social-icon a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 16px;
            display: block;
            background: transparent;
            color: var(--text);
            border-radius: 50%;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            text-align: center;
            border: 1px solid var(--border);
        }

            .contact-main-wrapper .contact-content .info-items .content .social-icon a:hover {
                background-color: var(--theme);
                color: var(--white);
                border: 1px solid transparent;
            }

.contact-main-wrapper .contact-content .contact-image {
    margin-top: 50px;
}

    .contact-main-wrapper .contact-content .contact-image img {
        width: 100%;
        height: 100%;
    }

.contact-main-wrapper .contact-form-items {
    background-color: var(--bg);
    padding: 55px 45px;
    border-radius: 10px;
}

    .contact-main-wrapper .contact-form-items .contact-title {
        margin-bottom: 30px;
    }

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items .contact-title {
        margin-bottom: 20px;
    }
}

.contact-main-wrapper .contact-form-items .contact-title h3 {
    font-size: 38px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .contact-main-wrapper .contact-form-items .contact-title h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items .contact-title h3 {
        font-size: 28px;
    }
}

.contact-main-wrapper .contact-form-items .form-clt {
    position: relative;
}

    .contact-main-wrapper .contact-form-items .form-clt .icon {
        position: absolute;
        top: 18px;
        left: 0;
    }

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items .form-clt .icon {
        display: none;
    }
}

.contact-main-wrapper .contact-form-items .form-clt .icon i {
    color: var(--header);
}

.contact-main-wrapper .contact-form-items .form-clt input, .contact-main-wrapper .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border-radius: 0;
    border: none;
    padding: 20px 30px;
    color: var(--text);
    background-color: transparent;
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items .form-clt input, .contact-main-wrapper .contact-form-items .form-clt textarea {
        padding: 15px 20px;
    }
}

.contact-main-wrapper .contact-form-items .form-clt input::-webkit-input-placeholder, .contact-main-wrapper .contact-form-items .form-clt textarea::-webkit-input-placeholder {
    color: var(--text);
}

.contact-main-wrapper .contact-form-items .form-clt input:-ms-input-placeholder, .contact-main-wrapper .contact-form-items .form-clt textarea:-ms-input-placeholder {
    color: var(--text);
}

.contact-main-wrapper .contact-form-items .form-clt input::-ms-input-placeholder, .contact-main-wrapper .contact-form-items .form-clt textarea::-ms-input-placeholder {
    color: var(--text);
}

.contact-main-wrapper .contact-form-items .form-clt input::placeholder, .contact-main-wrapper .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}

.contact-main-wrapper .contact-form-items .form-clt textarea {
    padding: 20px 30px 110px;
}

.contact-main-wrapper .contact-form-items .theme-btn i {
    margin-right: 10px;
}

.contact-main-wrapper .contact-form-items .theme-btn:hover i {
    -webkit-transform: translate(0);
    transform: translate(0);
}

.contact-main-wrapper .contact-form-items.style-2 {
    background-color: transparent;
    padding: 0;
}

    .contact-main-wrapper .contact-form-items.style-2 .form-clt input, .contact-main-wrapper .contact-form-items.style-2 .form-clt textarea {
        border: none;
        padding: 18px 20px;
        background-color: var(--white);
        margin-top: 30px;
        border-radius: 5px;
    }

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items.style-2 .form-clt input, .contact-main-wrapper .contact-form-items.style-2 .form-clt textarea {
        padding: 15px 20px;
    }
}

.contact-main-wrapper .contact-form-items.style-2 .form-clt textarea {
    padding: 18px 20px 140px;
}

@media (max-width: 575px) {
    .contact-main-wrapper .contact-form-items.style-2 .form-clt textarea {
        padding: 15px 20px 50px;
    }
}

.contact-main-wrapper .contact-form-items.style-2 .theme-btn {
    margin-top: 20px;
}

.google-map iframe {
    width: 100%;
    height: 500px;
}

@media (max-width: 767px) {
    .google-map iframe {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .google-map iframe {
        height: 320px;
    }
}

.contact-information-wrapper .contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.contact-information-wrapper .contact-content {
    margin-left: 70px;
}

@media (max-width: 1199px) {
    .contact-information-wrapper .contact-content {
        margin-left: 40px;
    }
}

@media (max-width: 991px) {
    .contact-information-wrapper .contact-content {
        margin-top: 30px;
        margin-left: 0;
    }
}

.contact-information-wrapper .contact-content h2 {
    font-weight: 600;
}

.contact-information-wrapper .contact-content .address-list {
    margin-top: 30px;
}

    .contact-information-wrapper .contact-content .address-list li:not(:last-child) {
        margin-bottom: 20px;
    }

    .contact-information-wrapper .contact-content .address-list li .title {
        font-size: 20px;
        margin-bottom: 5px;
    }

.contact-information-wrapper .contact-content .social-icon {
    gap: 10px;
    margin-top: 40px;
}

    .contact-information-wrapper .contact-content .social-icon a {
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        display: inline-block;
        background-color: transparent;
        color: var(--text);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        border: 1px solid var(--border);
    }

        .contact-information-wrapper .contact-content .social-icon a:hover {
            background-color: var(--theme);
            color: var(--white);
            border: 1px solid transparent;
        }

.footer-widget-wrapper {
    padding: 70px 15px 50px;
}

    .footer-widget-wrapper .single-footer-widget {
        margin-top: 30px;
    }

        .footer-widget-wrapper .single-footer-widget .widget-head {
            margin-bottom: 30px;
        }

            .footer-widget-wrapper .single-footer-widget .widget-head h3 {
                font-size: 20px;
                color: var(--white);
            }

@media (max-width: 575px) {
    .footer-widget-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
    color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px;
    }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: center;
    border-radius: 50%;
}

    .footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
        background-color: var(--theme-3);
        color: var(--header);
    }

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

    .footer-widget-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-widget-wrapper .single-footer-widget .footer-content .contact-info li a {
        color: var(--white);
    }

.footer-widget-wrapper .single-footer-widget .list-area li {
    font-weight: 400;
    font-size: 16px;
}

    .footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-widget-wrapper .single-footer-widget .list-area li a {
        color: var(--white);
        position: relative;
        padding-left: 20px;
    }

        .footer-widget-wrapper .single-footer-widget .list-area li a::before {
            position: absolute;
            top: 8px;
            left: 0;
            width: 6px;
            height: 6px;
            content: "";
            border-radius: 50%;
            background-color: var(--white);
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

        .footer-widget-wrapper .single-footer-widget .list-area li a:hover {
            color: var(--theme-3);
        }

            .footer-widget-wrapper .single-footer-widget .list-area li a:hover::before {
                background-color: var(--theme-3);
            }

.footer-bottom {
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
}

.footer-bottom .footer-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
}

@media (max-width: 991px) {
    .footer-bottom .footer-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-top: 30px;
    }
}

.footer-bottom .footer-wrapper p {
    color: #ffffffb3;
}

    .footer-bottom .footer-wrapper p a {
        color: #ffffffb3;
    }

.footer-bottom .footer-wrapper .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .footer-bottom .footer-wrapper .footer-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer-bottom .footer-wrapper .footer-menu li a {
    color: #ffffffb3;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme)), to(var(--theme)));
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .footer-bottom .footer-wrapper .footer-menu li a:hover {
        background-size: 100% 1px;
        color: var(--theme);
    }

.footer-bottom .footer-wrapper.border-style {
    border-top: 1px solid var(--text) !important;
}

.footer-bottom.style-2 .footer-wrapper {
    border-top: 1px solid var(--border);
}

    .footer-bottom.style-2 .footer-wrapper p {
        color: var(--text);
    }

        .footer-bottom.style-2 .footer-wrapper p a {
            color: var(--theme-2);
        }

    .footer-bottom.style-2 .footer-wrapper .footer-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

@media (max-width: 575px) {
    .footer-bottom.style-2 .footer-wrapper .footer-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer-bottom.style-2 .footer-wrapper .footer-menu li a {
    color: var(--text);
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-2)), to(var(--theme-2)));
    background-image: linear-gradient(var(--theme-2), var(--theme-2));
}

    .footer-bottom.style-2 .footer-wrapper .footer-menu li a:hover {
        color: var(--theme-2);
    }

.footer-bottom.style-3 .footer-wrapper p a {
    color: var(--theme-3);
}

.footer-bottom.style-3 .footer-wrapper .footer-menu li a {
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-3)), to(var(--theme-3)));
    background-image: linear-gradient(var(--theme-3), var(--theme-3));
}

    .footer-bottom.style-3 .footer-wrapper .footer-menu li a:hover {
        color: var(--theme-3);
    }

.footer-section {
    position: relative;
    z-index: 9;
}

    .footer-section .footer-circle {
        position: absolute;
        top: 15%;
        left: 5%;
        -webkit-animation: 4s ease 0s infinite alternate forwards running tpswing;
        animation: 4s ease 0s infinite alternate forwards running tpswing;
    }

    .footer-section .footer-shape {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        opacity: .1;
        z-index: -1;
    }

        .footer-section .footer-shape img {
            width: 100%;
            height: 100%;
        }

.footer-banner-items {
    padding: 100px 0 0;
}

    .footer-banner-items .footer-banner {
        padding: 50px 40px;
        background-color: #00E2C5;
        border-radius: 7px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
    }

@media (max-width: 1399px) {
    .footer-banner-items .footer-banner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .footer-banner-items .footer-banner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.footer-banner-items .footer-banner .content {
    max-width: 295px;
}

    .footer-banner-items .footer-banner .content p {
        color: var(--header);
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .footer-banner-items .footer-banner .content .theme-btn {
        background-color: var(--header);
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
        padding: 18px 30px;
    }

        .footer-banner-items .footer-banner .content .theme-btn::after, .footer-banner-items .footer-banner .content .theme-btn::before {
            background-color: var(--white);
        }

        .footer-banner-items .footer-banner .content .theme-btn:hover {
            color: var(--header);
        }

.footer-banner-items .footer-banner .thumb {
    margin-bottom: -50px;
    position: relative;
    z-index: 8;
}

    .footer-banner-items .footer-banner .thumb::before {
        position: absolute;
        bottom: -125px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 286px;
        width: 286px;
        border-radius: 50%;
        background-color: #00C8AE;
        content: "";
        z-index: -1;
    }

.footer-banner-items .footer-banner.style-2 {
    background-color: var(--theme-3);
}

    .footer-banner-items .footer-banner.style-2 .thumb {
        margin-bottom: -50px;
        position: relative;
        z-index: 8;
    }

        .footer-banner-items .footer-banner.style-2 .thumb::before {
            background-color: #F69B17;
        }

.footer-bottom p {
    text-align: right;
    font-weight: 400;
    color: var(--white);
}

@media (max-width: 991px) {
    .footer-bottom p {
        text-align: center;
        padding-bottom: 20px;
    }
}

.footer-bottom p a {
    color: var(--theme);
}

.footer-bottom.style-2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

    .footer-bottom.style-2 p {
        text-align: center;
    }

        .footer-bottom.style-2 p a {
            color: var(--theme-3);
        }
/*# sourceMappingURL=main.css.map */
