
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #111111;
    --theme2: #990000;
    --header: #0F0D1D;
    --text: #445375;
    --border: #D4DCFF;
    --border-2: #D4DCED;
    --bg: #F3F7FB;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 19.5px 40px;
    min-width: 170px;
    border-radius: 30px;
}

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

    .theme-btn:before {
        content: "";
        position: absolute;
        height: 100%;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: var(--header);
        z-index: -1;
        transition: all 0.4s ease-out;
        border-radius: inherit;
    }

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

        .theme-btn:hover::before {
            width: 100%;
        }

    .theme-btn.bg-color-2 {
        background-color: var(--theme2);
    }

        .theme-btn.bg-color-2::before {
            background-color: var(--white);
        }

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

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

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

    .theme-btn.border-white {
        padding: 18.5px 40px;
        border: 1px solid var(--white);
        background-color: transparent;
    }

        .theme-btn.border-white::before {
            background-color: var(--white);
        }

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

@media (max-width: 767px) {
    .theme-btn {
        padding: 20px 32px;
    }
}

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

.theme-btn-2 {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    color: var(--text);
    text-transform: capitalize;
}

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

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

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: iranyekan, sans-serif !important;
    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: YekanBakh, sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 123%;
}

h2 {
    font-size: 45px;
    line-height: 125%;
    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: 28px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}

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

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

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

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 2rem;
}

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

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

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

.about-wrapper {
    margin-bottom: 41px;
}

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

        .about-wrapper .about-image-items .shape-image {
            position: absolute;
            top: 16%;
            right: 10%;
        }

        .about-wrapper .about-image-items .about-sub {
            font-size: 22px;
            color: var(--white);
            background-color: var(--theme);
            padding: 18px 25px;
            border-radius: 100px;
            line-height: 1;
            display: inline-block;
            transform: rotate(-90deg) translateY(-50%);
            position: absolute;
            top: 44%;
            left: -16%;
            z-index: 9;
        }

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-sub {
        font-size: 14px;
        left: -8%;
    }
}

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

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

    .about-wrapper .about-image-items .about-image-1 .about-image-2 {
        max-width: 390px;
        position: absolute;
        right: -55%;
        bottom: -14%;
    }

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

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

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

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

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

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

.about-wrapper .about-content {
    margin-left: 10px;
}

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

.about-wrapper .about-content p {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.about-wrapper .about-content .about-counter-items {
    padding: 24px 40px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    margin-top: 35px;
    flex-direction: column;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-counter-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-counter-items {
        flex-wrap: initial;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-counter-items {
        flex-wrap: wrap;
        gap: 40px;
    }
}

.about-wrapper .about-content .about-counter-items .counter-items:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 50px;
}

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

@media (max-width: 991px) {
    .about-wrapper .about-content .about-counter-items .counter-items:not(:last-child) {
        border-right: 1px solid var(--border);
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-counter-items .counter-items:not(:last-child) {
        border: none;
        padding-right: 0;
    }
}

.about-wrapper .about-content .about-counter-items .counter-items h2 {
    font-size: 55px;
    color: var(--theme);
    font-weight: 500;
}

.about-wrapper .about-content .about-counter-items .counter-items h6 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.about-wrapper .about-content .about-counter-items .video-thumb {
    border-radius: 1000px 0px 0px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 198px;
    height: 145px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-counter-items .video-thumb {
        position: relative;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-content .about-counter-items .video-thumb {
        position: absolute;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-counter-items .video-thumb {
        position: relative;
    }
}

.about-wrapper .about-content .about-counter-items .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-wrapper .about-content .about-counter-items .video-thumb .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .about-wrapper .about-content .about-counter-items .video-thumb .video-box .video-btn {
        background-color: var(--white);
        color: var(--theme);
        display: inline-block;
        font-size: 16px;
        height: 50px;
        width: 50px;
        line-height: 50px;
        border-radius: 50%;
        text-align: center;
        position: relative;
    }

        .about-wrapper .about-content .about-counter-items .video-thumb .video-box .video-btn::before {
            position: absolute;
            top: 50%;
            left: 50%;
            right: 0;
            bottom: 0;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            border: 1.3px solid var(--white);
            content: "";
            transform: translate(-50%, -50%);
        }

@-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);
    }
}

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

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

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

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

@-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;
        transform: rotateY(-90deg);
    }

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

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

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

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

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

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

    100% {
        -webkit-transform: rotate(0deg);
        -ms-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% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

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

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

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

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

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

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

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

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

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

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

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

    100% {
        left: 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 rotated2 {
    0% {
        transform: rotate(0);
    }

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

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-head-title {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin: 40px 0;
    line-height: 1;
    position: relative;
}

    .brand-head-title img {
        margin-right: 12px;
    }

    .brand-head-title span {
        color: var(--theme);
        font-weight: 500;
    }

.brand-logo-2 {
    text-align: center;
    margin-top: 40px;
}

.brand-head-title-2 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    position: relative;
}

    .brand-head-title-2 span {
        color: var(--theme);
    }

    .brand-head-title-2::before {
        position: absolute;
        top: 15px;
        left: 2%;
        content: "";
        height: 1px;
        width: 295px;
        background-color: #D4DCFF;
    }

@media (max-width: 1399px) {
    .brand-head-title-2::before {
        display: none;
    }
}

.brand-head-title-2::after {
    position: absolute;
    top: 15px;
    right: 2%;
    content: "";
    height: 1px;
    width: 295px;
    background-color: #D4DCFF;
}

@media (max-width: 1399px) {
    .brand-head-title-2::after {
        display: none;
    }
}

.doming-name-wrapper {
    background-color: var(--theme);
    padding: 60px;
    border-radius: 20px;
    margin-top: -165px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .doming-name-wrapper {
        padding: 60px 50px;
    }
}

@media (max-width: 767px) {
    .doming-name-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .doming-name-wrapper {
        padding: 40px 30px;
    }
}

.doming-name-wrapper h3 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .doming-name-wrapper h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }
}

.doming-name-wrapper .doming-input {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

    .doming-name-wrapper .doming-input input {
        width: 100%;
        outline: none;
        border: none;
        border-radius: 8px;
        padding: 20px 25px;
        line-height: 1;
        font-size: 17px;
        color: var(--text);
    }

    .doming-name-wrapper .doming-input .theme-btn {
        position: absolute;
        top: 6px;
        right: 7px;
        border-radius: 4px;
        padding: 17.5px 40px;
        font-weight: 600;
    }

        .doming-name-wrapper .doming-input .theme-btn::before {
            background-color: var(--theme);
        }

        .doming-name-wrapper .doming-input .theme-btn:hover {
            color: var(--white);
        }

    .doming-name-wrapper .doming-input .select-area {
        position: absolute;
        right: 28%;
        top: 20px;
    }

        .doming-name-wrapper .doming-input .select-area .nice-select {
            width: unset !important;
            gap: 20px;
            font-size: 17px;
        }

            .doming-name-wrapper .doming-input .select-area .nice-select .list {
                max-height: 15vh;
                background: var(--header);
                width: 80px;
                padding: 5px 8px;
                overflow-y: scroll;
                right: -35px;
                border-radius: 0;
            }

                .doming-name-wrapper .doming-input .select-area .nice-select .list li {
                    color: var(--white);
                    font-size: 15px;
                    border: none;
                }

.doming-name-wrapper .doming-list {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .doming-name-wrapper .doming-list {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.doming-name-wrapper .doming-list li {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    padding: 12px 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    text-transform: lowercase;
}

    .doming-name-wrapper .doming-list li::before {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.5);
        height: 14px;
        width: 2px;
    }

    .doming-name-wrapper .doming-list li span {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

.doming-name-wrapper.style-2 {
    border-radius: 2050px;
    margin-top: -225px;
}

@media (max-width: 991px) {
    .doming-name-wrapper.style-2 {
        border-radius: 0;
    }
}

.contact-wrapper .contact-left h2 {
    font-size: 70px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .contact-wrapper .contact-left h2 {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .contact-wrapper .contact-left h2 {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .contact-wrapper .contact-left h2 {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper .contact-left h2 {
        font-size: 36px;
    }
}

.contact-wrapper .contact-left .contact-image {
    max-width: 585px;
}

    .contact-wrapper .contact-left .contact-image img {
        width: 100%;
        height: 100%;
    }

.contact-wrapper .contact-right {
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 45px 35px;
}

    .contact-wrapper .contact-right h3 {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 35px;
    }

    .contact-wrapper .contact-right .form-clt input, .contact-wrapper .contact-right .form-clt textarea {
        padding: 20px;
        line-height: 1;
        outline: none;
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 8px;
        background-color: transparent;
        color: var(--text);
        font-weight: 500;
    }

        .contact-wrapper .contact-right .form-clt input::placeholder, .contact-wrapper .contact-right .form-clt textarea::placeholder {
            color: var(--text);
        }

    .contact-wrapper .contact-right .form-clt textarea {
        padding-bottom: 110px;
    }

    .contact-wrapper .contact-right .form-clt .category-oneadjust {
        background-color: transparent;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 20px;
        line-height: 1;
        width: 100%;
    }

@media (max-width: 1399px) {
    .contact-wrapper .contact-right .form-clt .category-oneadjust {
        width: initial;
    }
}

.contact-wrapper .contact-right .form-clt .category-oneadjust .nice-select {
    width: 100% !important;
    gap: 20px;
    font-size: 16px;
}

    .contact-wrapper .contact-right .form-clt .category-oneadjust .nice-select span {
        color: var(--text);
        font-weight: 500;
    }

    .contact-wrapper .contact-right .form-clt .category-oneadjust .nice-select::after {
        border-bottom: 2px solid var(--text);
        border-right: 2px solid var(--text);
        right: 0;
    }

    .contact-wrapper .contact-right .form-clt .category-oneadjust .nice-select .list {
        max-height: 15vh;
        background: var(--bg);
        width: 100%;
        padding: 10px 8px;
        overflow-y: scroll;
        right: 0;
        left: 0;
    }

        .contact-wrapper .contact-right .form-clt .category-oneadjust .nice-select .list li {
            color: var(--header);
            font-size: 16px;
            border: none;
        }

.contact-wrapper .contact-right .theme-btn {
    width: 100%;
    border-radius: 8px;
}

.contact-wrapper .contact-right .from-customradio .form-check-label {
    color: var(--text);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.modal-common-wrap {
    position: relative;
    z-index: 9999;
    overflow-y: scroll;
    max-height: 100vh;
}

    .modal-common-wrap .modal-content {
        background: transparent;
        border: unset;
    }

    .modal-common-wrap .modal-header {
        border-radius: 0;
        padding: 0 0;
        margin-left: auto;
        border: unset;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .modal-common-wrap .modal-header .btn-close {
            margin: 0 0;
            padding: 0 0;
            outline: none;
            width: 40px;
            height: 40px;
        }

    .modal-common-wrap .modal-body {
        background: var(--white);
        box-shadow: 0px 4px 25px rgba(56, 75, 255, 0.08);
        padding: 0 0;
    }

        .modal-common-wrap .modal-body .modal-common-content {
            padding: 50px 65px;
            width: 538px;
        }

            .modal-common-wrap .modal-body .modal-common-content h2 {
                font-size: 40px;
                color: var(--black);
                margin-bottom: 65px;
            }

            .modal-common-wrap .modal-body .modal-common-content .login-from .cmn-mb {
                margin-bottom: 30px;
            }

            .modal-common-wrap .modal-body .modal-common-content .login-from .form-grp input {
                border: unset;
                padding-bottom: 16px;
                border-bottom: 1px solid #d9d9d9;
                color: #4f536c;
                width: 100%;
            }

            .modal-common-wrap .modal-body .modal-common-content .login-from .form-grp ::placeholder {
                color: #4f536c;
            }

            .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area {
                margin-top: 14px;
            }

                .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area .checkmark-inner {
                    margin-bottom: 0;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                    .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area .checkmark-inner .form-check-input {
                        margin-top: 0;
                    }

                    .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area .checkmark-inner .form-check-label {
                        font-size: 14px;
                        color: var(--header);
                        line-height: 18px;
                    }

            .modal-common-wrap .modal-body .modal-common-content .orting-badge {
                position: relative;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                font-weight: 500;
                color: #445375;
                margin: 28px 0;
            }

                .modal-common-wrap .modal-body .modal-common-content .orting-badge::before {
                    position: absolute;
                    left: 0;
                    content: "";
                    height: 1px;
                    width: 44%;
                    background: #d9d9d9;
                }

                .modal-common-wrap .modal-body .modal-common-content .orting-badge::after {
                    position: absolute;
                    right: 0;
                    content: "";
                    height: 1px;
                    width: 44%;
                    background: #d9d9d9;
                }

            .modal-common-wrap .modal-body .modal-common-content .theme-btn {
                border-radius: 0px;
            }

            .modal-common-wrap .modal-body .modal-common-content .forgot {
                font-size: 14px;
                color: var(--theme);
            }

            .modal-common-wrap .modal-body .modal-common-content .cmn-social {
                display: flex;
                align-items: center;
                gap: 69px;
                border: 1px solid #e5e5e5;
                padding: 17px 30px;
                text-transform: capitalize;
                font-weight: 600;
            }

    .modal-common-wrap .modal-dialog {
        max-width: 1410px;
    }

    .modal-common-wrap .modal-right-thumb .signlogin-btnwrap {
        display: flex;
        align-items: center;
        gap: 10px;
        transform: rotate(90deg);
        position: absolute;
        top: 45%;
        left: -80px;
    }

        .modal-common-wrap .modal-right-thumb .signlogin-btnwrap .theme-btn {
            border-radius: 0;
            padding: 14px 24px;
            min-width: initial;
            font-size: 16px;
            font-weight: 400;
        }

        .modal-common-wrap .modal-right-thumb .signlogin-btnwrap .theme-create {
            padding: 6px 24px;
            border: 1px solid var(--white);
            font-size: 16px;
            transition: all 0.4s;
            text-transform: capitalize;
            color: var(--white);
        }

            .modal-common-wrap .modal-right-thumb .signlogin-btnwrap .theme-create:hover {
                background: var(--theme);
                border-color: var(--theme);
            }

    .modal-common-wrap .from-customradio {
        margin-top: 20px;
    }

        .modal-common-wrap .from-customradio .form-check-input {
            margin-top: 0;
        }

        .modal-common-wrap .from-customradio .form-check-label {
            color: #181818;
            font-size: 14px;
        }

@media screen and (max-width: 1399px) {
    .modal-common-wrap .modal-body .modal-common-content {
        padding: 30px 30px;
        width: 538px;
        min-width: 400px;
    }

        .modal-common-wrap .modal-body .modal-common-content h2 {
            margin-bottom: 34px;
        }

        .modal-common-wrap .modal-body .modal-common-content .login-from .cmn-mb {
            margin-bottom: 20px;
        }

        .modal-common-wrap .modal-body .modal-common-content .login-from .form-grp input {
            padding-bottom: 12px;
        }

        .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area {
            margin-top: 10px;
        }

            .modal-common-wrap .modal-body .modal-common-content .forgot-inner-area .checkmark-inner {
                gap: 8px;
            }

        .modal-common-wrap .modal-body .modal-common-content .orting-badge {
            margin: 15px 0;
        }

        .modal-common-wrap .modal-body .modal-common-content .cmn-social {
            gap: 18px;
            padding: 12px 20px;
        }

    .modal-common-wrap .from-customradio {
        margin-top: 12px;
    }
}

@media screen and (max-width: 991px) {
    .modal-common-wrap .modal-body .modal-common-content {
        padding: 24px 16px;
        width: 538px;
        min-width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .modal-common-wrap .modal-body .modal-common-content {
        padding: 24px 16px;
        width: 100%;
        min-width: initial;
    }

    .modal-common-wrap .modal-right-thumb {
        width: 100%;
    }

        .modal-common-wrap .modal-right-thumb img {
            width: 100%;
        }
}

@media screen and (max-width: 400px) {
    .modal-common-wrap .modal-right-thumb .signlogin-btnwrap {
        gap: 7px;
        flex-wrap: wrap;
        transform: rotate(0deg);
        top: initial;
        left: 15px;
        bottom: 10px;
    }
}

.cta-contact-left .cta-contact-button {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .cta-contact-left .cta-contact-button h4 {
        font-weight: 400;
        text-transform: lowercase;
    }

        .cta-contact-left .cta-contact-button h4 i {
            color: var(--white);
            margin-right: 5px;
        }

        .cta-contact-left .cta-contact-button h4 a {
            color: var(--white);
        }

.cta-contact-image {
    margin-bottom: -130px;
}

@media (max-width: 1399px) {
    .cta-contact-image {
        margin-bottom: -250px;
    }
}

@media (max-width: 1199px) {
    .cta-contact-image {
        margin-bottom: -140px;
    }
}

@media (max-width: 991px) {
    .cta-contact-image {
        margin-bottom: -80px;
    }
}

.cta-contact-image img {
    max-width: 100%;
}

.cta-contact-wrapper {
    background-color: var(--theme);
    padding: 100px 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: -150px;
    z-index: 9;
    gap: 30px;
}

@media (max-width: 1199px) {
    .cta-contact-wrapper {
        flex-wrap: wrap;
        padding: 70px 60px;
    }
}

@media (max-width: 991px) {
    .cta-contact-wrapper {
        padding: 60px 50px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cta-contact-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .cta-contact-wrapper {
        padding: 40px 30px;
    }
}

.cta-contact-wrapper .cta-contact-image {
    position: absolute;
    left: 90px;
    top: 40px;
}

@media (max-width: 1399px) {
    .cta-contact-wrapper .cta-contact-image {
        display: none;
    }
}

.cta-contact-wrapper .section-title {
    margin-left: 300px;
}

@media (max-width: 1399px) {
    .cta-contact-wrapper .section-title {
        margin-left: 0;
    }
}

.cta-contact-wrapper .section-title h2 {
    font-size: 36px;
}

@media (max-width: 767px) {
    .cta-contact-wrapper .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .cta-contact-wrapper .section-title h2 {
        font-size: 28px;
    }
}

.faq-wrapper .faq-image img {
    width: 100%;
    height: 100%;
}

.faq-wrapper .faq-content {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .faq-wrapper .faq-content {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper .faq-content {
        margin-left: 0;
    }
}

.faq-wrapper .faq-content .accordion-item {
    border: 0;
    background-color: transparent;
}

    .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
        font-weight: 600;
        color: var(--theme);
        letter-spacing: -0.2px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        text-transform: capitalize;
        font-size: 22px;
        padding: 25px 0;
    }

        .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button::after {
            font-weight: 500;
            transition: all 0.3s ease-in-out !important;
            background-image: url(../../assets/img/chevron-right.svg);
            color: var(--theme);
        }

        .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
            background-image: url(../../assets/img/chevron-down.svg);
            font-weight: 500;
            color: var(--theme);
            transform: rotate(0);
        }

        .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
            background-color: transparent;
            color: var(--header);
            border-bottom: 1px solid var(--border);
        }

    .faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 50px;
        padding-left: 0;
        color: var(--text);
        background-color: transparent;
        padding-top: 0;
        margin-top: -10px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }

@media (max-width: 991px) {
    .faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
        padding-right: 30px;
    }
}

.choose-us-top-inner {
    margin-top: 60px;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .choose-us-top-inner {
        margin-top: 30px;
    }
}

.choose-us-top-inner::before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--border);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .choose-us-top-inner::before {
        display: none;
    }
}

.choose-us-top-inner ul {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .choose-us-top-inner ul {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: start;
    }
}

.choose-us-top-inner ul li {
    font-size: 14px;
    color: var(--header);
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 14px 30px;
    border-radius: 50px;
    display: inline-block;
    line-height: 1;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

    .choose-us-top-inner ul li:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid transparent;
    }

.choose-us-top-inner.style-2 ul li:hover {
    border: 1px solid var(--white);
}

.choose-us-card-items {
    margin-top: 30px;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

    .choose-us-card-items .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border-radius: 8px;
        background-color: #F3F7FB;
        border: 1px solid var(--border);
        margin: 0 auto;
        text-align: center;
        transition: all 0.4s ease-in-out;
        transition: transform 500ms ease;
    }

    .choose-us-card-items .content {
        margin-top: 20px;
    }

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

    .choose-us-card-items:hover {
        border: 1px solid var(--theme);
    }

        .choose-us-card-items:hover .icon {
            transform: scaleX(-1);
        }

    .choose-us-card-items.style-2 {
        padding: 0;
        background-color: transparent;
        border: none;
        max-width: 280px;
        margin: 30px auto 0;
    }

        .choose-us-card-items.style-2 .content h3, .choose-us-card-items.style-2 .content p {
            color: var(--white);
        }

.feature-wrapper .feature-image {
    max-width: 586px;
}

    .feature-wrapper .feature-image img {
        width: 100%;
        height: 100%;
    }

.feature-wrapper .feature-content .feature-list {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .feature-wrapper .feature-content .feature-list {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .feature-wrapper .feature-content .feature-list {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.feature-wrapper .feature-content .feature-list ul li {
    font-weight: 500;
}

    .feature-wrapper .feature-content .feature-list ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .feature-wrapper .feature-content .feature-list ul li i {
        margin-right: 5px;
        color: var(--theme);
    }

.data-center-wrapper {
    padding-top: 30px;
}

    .data-center-wrapper .data-center-image {
        position: relative;
    }

        .data-center-wrapper .data-center-image img {
            width: 100%;
            height: 100%;
        }

        .data-center-wrapper .data-center-image .text-box {
            padding: 10px 20px;
            background-color: var(--white);
            color: var(--header);
            box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
            border-radius: 24px;
            line-height: 1;
            font-weight: 500;
            transition: all 0.4s ease-in-out;
        }

@media (max-width: 991px) {
    .data-center-wrapper .data-center-image .text-box {
        display: none;
    }
}

.data-center-wrapper .data-center-image .text-box:hover {
    background-color: var(--theme);
    color: var(--white);
}

.data-center-wrapper .data-center-image .text-box.box-1 {
    position: absolute;
    top: 13%;
    left: 9.4%;
}

.data-center-wrapper .data-center-image .text-box.box-2 {
    position: absolute;
    top: 29%;
    left: 16%;
}

.data-center-wrapper .data-center-image .text-box.box-3 {
    position: absolute;
    top: 58%;
    left: 28.5%;
}

.data-center-wrapper .data-center-image .text-box.box-4 {
    position: absolute;
    left: 50%;
    top: 5%;
}

.data-center-wrapper .data-center-image .text-box.box-5 {
    position: absolute;
    left: 52%;
    top: 21%;
}

.data-center-wrapper .data-center-image .text-box.box-6 {
    position: absolute;
    left: 44.6%;
    top: 44%;
}

.data-center-wrapper .data-center-image .text-box.box-7 {
    position: absolute;
    left: 48%;
    top: 66%;
}

.data-center-wrapper .data-center-image .text-box.box-8 {
    position: absolute;
    right: 29%;
    top: 30%;
}

.data-center-wrapper .data-center-image .text-box.box-9 {
    position: absolute;
    right: 16%;
    top: 24%;
}

.data-center-wrapper .data-center-image .text-box.box-10 {
    position: absolute;
    right: 12.6%;
    bottom: 30%;
}

.feature-wrapper-2 {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 50px 40px;
    position: relative;
    z-index: 9;
    margin-top: -130px;
    border-radius: 16px;
    z-index: 9;
}

    .feature-wrapper-2::before {
        position: absolute;
        top: 30%;
        left: 40px;
        right: 0;
        content: "";
        width: 94%;
        transform: translateY(-50%);
        z-index: -1;
        border: 1px dotted var(--border);
    }

@media (max-width: 1199px) {
    .feature-wrapper-2::before {
        display: none;
    }
}

.feature-wrapper-2 .feature-card-items {
    text-align: center;
}

    .feature-wrapper-2 .feature-card-items .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
        background-color: #F3F7FB;
        margin: 0 auto 25px;
    }

    .feature-wrapper-2 .feature-card-items .content h3 {
        margin-bottom: 10px;
    }

.feature-content-warpper .feature-hosting-image img {
    width: 100%;
    height: 100%;
}

.feature-content-warpper .feature-hosting-content .list-items {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .feature-content-warpper .feature-hosting-content .list-items {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .feature-content-warpper .feature-hosting-content .list-items {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.feature-content-warpper .feature-hosting-content .list-items ul li {
    font-weight: 500;
}

    .feature-content-warpper .feature-hosting-content .list-items ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .feature-content-warpper .feature-hosting-content .list-items ul li i {
        color: var(--theme);
        margin-right: 5px;
    }

.feature-content-warpper.style-2 {
    margin-top: 15px;
}

    .feature-content-warpper.style-2 .feature-hosting-image-2 {
        position: relative;
        z-index: 9;
    }

        .feature-content-warpper.style-2 .feature-hosting-image-2 .icon-box-1 {
            width: 210px;
            height: 210px;
            border-radius: 50%;
            text-align: center;
            line-height: 210px;
            stroke-width: 1px;
            border: 1px dashed rgba(56, 75, 255, 0.5);
            position: absolute;
            top: -15px;
            left: -50px;
        }

@media (max-width: 1199px) {
    .feature-content-warpper.style-2 .feature-hosting-image-2 .icon-box-1 {
        width: 140px;
        height: 140px;
        line-height: 140px;
        top: 15px;
        left: -10px;
    }
}

.feature-content-warpper.style-2 .feature-hosting-image-2 .icon-box-2 {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    text-align: center;
    line-height: 210px;
    stroke-width: 1px;
    border: 1px dashed rgba(56, 75, 255, 0.5);
    position: absolute;
    bottom: 15px;
    right: 0;
}

@media (max-width: 1199px) {
    .feature-content-warpper.style-2 .feature-hosting-image-2 .icon-box-2 {
        width: 140px;
        height: 140px;
        line-height: 140px;
        bottom: 30px;
    }
}

.feature-content-warpper.style-2 .feature-hosting-image-2 .thumb {
    max-width: 405px;
    text-align: center;
    margin: 0 auto;
}

    .feature-content-warpper.style-2 .feature-hosting-image-2 .thumb img {
        width: 100%;
        height: 100%;
    }

.feature-content-warpper.style-2 .feature-hosting-image-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 85%;
    top: 16%;
    height: 64%;
    border-radius: 80px 0px;
    border: 1px dashed var(--theme);
    opacity: 0.5;
    z-index: -1;
    left: 5%;
}

.feature-content-warpper.style-3 .hosting-image img {
    width: 100%;
    height: 100%;
}

.feature-content-warpper.style-3 .hosting-image-2 {
    position: relative;
    z-index: 9;
}

    .feature-content-warpper.style-3 .hosting-image-2 .shape-image {
        position: absolute;
        bottom: -40px;
        left: 0;
        z-index: -1;
    }

    .feature-content-warpper.style-3 .hosting-image-2 .hosting-thumb img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }

    .feature-content-warpper.style-3 .hosting-image-2 .hosting-thumb.style-image {
        margin-top: 30px;
    }

.feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    gap: 50px;
    display: inline-flex;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav {
        flex-wrap: wrap;
        gap: 0;
    }
}

.feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link.active {
    position: relative;
}

    .feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link.active h5 {
        color: var(--theme);
    }

    .feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link.active::before {
        position: absolute;
        bottom: -21px;
        left: 0;
        height: 2px;
        width: 100%;
        content: "";
        background: var(--theme);
        transition: 0.3s;
    }

@media (max-width: 1399px) {
    .feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link.active::before {
        display: none;
    }
}

.feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link h5 {
    font-size: 18px;
    font-weight: 500;
}

    .feature-content-warpper.style-3 .feature-hosting-content .feature-hosting-tab-area .nav .nav-link h5 img {
        margin-right: 8px;
    }

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

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

.footer-widgets-wrapper {
    padding: 50px 0 50px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 60px 0 90px;
    }
}

@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 70px;
    }
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 30px;
    }

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-weight: bold;
    color: var(--white);
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--white);
    display: inline-block;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid transparent;
    }

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 40px;
}

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
        background: transparent;
        border: none;
        outline: none;
        padding: 18px 20px;
        width: 100%;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: rgba(255, 255, 255, 0.8);
    }

        .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 60px;
        height: 55px;
        line-height: 60px;
        border-radius: 4px;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        bottom: 5px;
    }

        .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
            font-size: 24px;
        }

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
    margin-top: 20px;
}

    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
        color: var(--white);
        font-weight: 500;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
            margin-bottom: 20px;
        }

        .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
            font-size: 16px;
            color: var(--theme);
            margin-right: 10px;
            font-size: 20px;
        }

        .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
            color: var(--white);
        }

.footer-widgets-wrapper .single-footer-widget .footer-content .payment-text {
    font-size: 22px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .brand-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-widgets-wrapper .single-footer-widget .footer-content .brand-logo li {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 5px 7px;
        border-radius: 6px;
    }

.footer-widgets-wrapper .single-footer-widget .list-area li {
    transition: all 0.4s ease-in-out;
    font-weight: 500;
}

    .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
        margin-bottom: 20px;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li a {
        color: var(--white);
    }

        .footer-widgets-wrapper .single-footer-widget .list-area li a i {
            margin-right: 5px;
        }

    .footer-widgets-wrapper .single-footer-widget .list-area li:hover {
        margin-left: 5px;
    }

        .footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
            color: var(--theme2);
        }

.footer-bottom {
    position: relative;
    z-index: 9;
    margin-bottom: 40px;
}

    .footer-bottom .footer-wrapper {
        position: relative;
        z-index: 9;
        background-color: rgba(255, 255, 255, 0.15);
        padding: 30px 40px;
        border-radius: 16px;
    }

@media (max-width: 991px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center !important;
        margin-top: 30px;
    }
}

.footer-bottom .footer-wrapper p {
    color: var(--white);
}

    .footer-bottom .footer-wrapper p a {
        color: var(--white);
    }

.footer-bottom .footer-wrapper .brand-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-bottom .footer-wrapper .brand-logo li {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 5px 7px;
        border-radius: 6px;
    }

.footer-bottom .scroll-icon {
    position: absolute;
    left: 90.2%;
    top: 12px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    line-height: 60px;
    background-color: var(--theme);
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    border: 5px solid var(--white);
    display: inline-block;
    z-index: 99;
}

@media (max-width: 1399px) {
    .footer-bottom .scroll-icon {
        left: 88%;
    }
}

@media (max-width: 1199px) {
    .footer-bottom .scroll-icon {
        top: -58%;
    }
}

@media (max-width: 767px) {
    .footer-bottom .scroll-icon {
        top: -32%;
    }
}

.footer-bottom.style-2 {
    margin-bottom: 0;
}

    .footer-bottom.style-2 .footer-wrapper {
        background-color: transparent;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        padding: 35px 0;
    }

    .footer-bottom.style-2 .footer-menu {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .footer-bottom.style-2 .footer-menu li a {
            color: var(--white);
            background-image: linear-gradient(var(--theme2), var(--theme2));
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline-block;
            transition: all 0.4s ease-in-out;
        }

            .footer-bottom.style-2 .footer-menu li a:hover {
                background-size: 100% 1px;
                color: var(--theme2);
            }

    .footer-bottom.style-2 .scroll-icon {
        margin-top: -40px;
    }

.header-section-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #040808;
}

.header-top {
    background: #111111;
    padding: 12px 0;
}

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

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header-top-wrapper .contact-list {
        display: flex;
        align-items: center;
        gap: 35px;
    }

        .header-top-wrapper .contact-list li i {
            color: var(--white);
            margin-right: 5px;
        }

        .header-top-wrapper .contact-list li a {
            color: var(--white);
        }

    .header-top-wrapper p {
        font-weight: 500;
        color: var(--white);
    }

        .header-top-wrapper p b {
            color: var(--theme2);
            font-weight: 500;
        }

    .header-top-wrapper .list {
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .header-top-wrapper .list li i {
            color: var(--white);
            margin-right: 10px;
        }

        .header-top-wrapper .list li a {
            color: var(--white);
        }

        .header-top-wrapper .list li button {
            color: var(--white);
        }

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

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

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

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

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

            .header-main .main-menu ul li a {
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                color: var(--header);
                padding: 20px 0;
                text-align: right;
                position: relative;
                text-transform: capitalize;
                transition: all 0.4s ease-in-out;
            }

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

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

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

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

                    .header-main .main-menu ul li .submenu li a {
                        position: relative;
                        z-index: 11;
                        font-size: 16px;
                        font-weight: 600;
                        color: var(--header);
                        padding: 0 25px;
                        padding-bottom: 11px;
                        padding-top: 11px;
                        width: 100%;
                        border-bottom: 1px solid #eeeeee;
                    }

                        .header-main .main-menu ul li .submenu li a:hover {
                            color: var(--theme) !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: 100%;
                        top: 0;
                        visibility: hidden;
                        opacity: 0;
                    }

                    .header-main .main-menu ul li .submenu li:hover > a {
                        background: var(--theme);
                        color: var(--white) !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);
                        -moz-transform: translateY(1);
                        -ms-transform: translateY(1);
                        -o-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%);
                        -moz-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        transform: translateY(-50%);
                        color: var(--theme);
                    }

            .header-main .main-menu ul li .has-homemenu {
                width: 920px;
                padding: 40px 30px;
                opacity: 0;
                left: -250px;
                visibility: hidden;
                padding: 30px 30px;
                background-color: var(--white);
                box-shadow: var(--box-shadow);
                border-radius: 8px;
            }

                .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-list {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    margin-bottom: 20px;
                }

                    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-list .icon {
                        width: 45px;
                        height: 45px;
                        line-height: 40px;
                        text-align: center;
                        border: 1px solid var(--border);
                        border-radius: 6px;
                        background-color: var(--bg);
                    }

                    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-list .content h6 {
                        font-size: 16px;
                    }

                        .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-list .content h6 a {
                            margin: 0;
                            padding: 0;
                            width: initial;
                        }

                    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-list .content p {
                        font-size: 14px;
                    }

                .header-main .main-menu ul li .has-homemenu.has-menu-home {
                    width: 350px;
                    left: -50%;
                }

                .header-main .main-menu ul li .has-homemenu.has-menu-hosting {
                    width: 570px;
                }

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

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

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

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

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

.header-main .header-right .header-button .theme-btn {
    background-color: transparent;
    border: 1px solid var(--white);
}

    .header-main .header-right .header-button .theme-btn::before {
        background-color: var(--white);
    }

    .header-main .header-right .header-button .theme-btn:hover {
        color: var(--header);
    }

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 .header-main .main-menu ul li a {
    color: var(--white);
}

.header-1 .header-main .sidebar__toggle {
    color: var(--white);
}

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

.header-1 .header-right .search-icon {
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 30px;
}

@media (max-width: 1399px) {
    .header-1 .header-right .search-icon {
        padding-right: 0;
        border: none !important;
    }
}

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

.header-2 {
    margin-top: 30px;
}

    .header-2 .header-main {
        background-color: var(--white);
        padding: 20px 25px;
        border-radius: 100px;
    }

        .header-2 .header-main .sidebar__toggle {
            color: var(--header);
        }

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

    .header-2 .header-right .search-icon {
        color: var(--text);
        border-right: 1px solid rgba(15, 13, 29, 0.5);
        padding-right: 30px;
    }

@media (max-width: 1399px) {
    .header-2 .header-right .search-icon {
        padding-right: 0;
        border: none !important;
    }
}

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

.header-2 .header-right .header-button .theme-btn {
    background-color: var(--theme);
}

    .header-2 .header-right .header-button .theme-btn::before {
        background-color: var(--header);
    }

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

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

    .sticky.header-1 .header-main .main-menu ul li a {
        color: var(--header);
    }

    .sticky.header-1 .header-main .sidebar__toggle {
        color: var(--header);
    }

    .sticky.header-1 .header-left .logo .header-logo {
        display: none;
    }

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

    .sticky.header-1 .header-right .search-icon {
        color: var(--header);
        border-right: 1px solid rgba(231, 231, 231, 0.9);
    }

    .sticky.header-1 .header-right .header-button .theme-btn {
        background-color: transparent;
        border: 1px solid var(--border);
        color: var(--header);
    }

        .sticky.header-1 .header-right .header-button .theme-btn::before {
            background-color: var(--theme);
        }

        .sticky.header-1 .header-right .header-button .theme-btn:hover {
            color: var(--white);
        }

    .sticky.header-2 {
        margin-top: 0;
    }

        .sticky.header-2 .header-main {
            background-color: var(--white);
            padding-left: 0;
            padding-right: 0;
            border-radius: 0;
        }

.offcanvas__info {
    background: var(--bg) 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));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-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;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

    .offcanvas__info::-webkit-scrollbar {
        display: none;
    }

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

.offcanvas__logo a img {
    width: 85px;
}

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

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

    .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 .offcanvas__contact {
        margin-top: 20px;
    }

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

            .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
                font-size: 16px;
                font-weight: 600;
                text-transform: capitalize;
            }

                .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
                    color: var(--text);
                }

                .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
                    margin-bottom: 15px;
                }

                .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
                    margin-right: 20px;
                }

                    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
                        color: var(--theme);
                    }

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

        .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
            width: 100%;
            padding: 16px 40px;
            text-transform: capitalize !important;
        }

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

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

                .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
                    background-color: var(--theme);
                    color: var(--white);
                }

.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: 300px;
    }
}

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

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    background-position: left center !important;
}

    .breadcrumb-wrapper .page-heading {
        position: relative;
        padding: 220px 0 100px;
        z-index: 9;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding: 140px 0;
    }
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 110px 0;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        padding: 130px 0 80px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading {
        padding: 130px 60px;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 66px;
    position: relative;
    z-index: 9;
}

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

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

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

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

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

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

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

.breadcrumb-wrapper .page-heading .breadcrumb-image {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

    .breadcrumb-wrapper .page-heading .breadcrumb-image img {
        width: 100%;
        height: 100%;
        max-width: 336px;
    }

.error-items {
    text-align: center;
}

    .error-items .error-image {
        max-width: 845px;
        margin: 0 auto;
    }

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

    .error-items h2 {
        margin-top: 30px;
    }

        .error-items h2 span {
            color: var(--theme);
        }

    .error-items p {
        margin-top: 10px;
    }

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    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;
}

.ml-50 {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .ml-50 {
        margin-left: 0;
    }
}

.ripple {
    position: relative;
}

    .ripple::before, .ripple::after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 60px;
        height: 60px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
        -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 {
    text-align: center;
}

    .swiper-dot .swiper-pagination-bullet {
        width: 30px;
        height: 8px;
        transition: 0.6s;
        background-color: var(--white);
        opacity: 1;
        border-radius: 60px;
        position: relative;
    }

        .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: var(--theme);
            transition: 0.6s;
            position: relative;
            width: 51px;
        }

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .array-button .array-prev {
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        background-color: transparent;
        color: var(--white);
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        border: 1px solid var(--white);
    }

        .array-button .array-prev:hover {
            background-color: var(--white);
            color: var(--header);
        }

    .array-button .array-next {
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        background-color: var(--theme2);
        color: var(--white);
        border-radius: 50%;
        border: 1px solid transparent;
        transition: all 0.4s ease-in-out;
    }

        .array-button .array-next:hover {
            background-color: var(--white);
            color: var(--header);
        }

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.mt-60 {
    margin-top: 55px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* background */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.bg-cover-2 {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%;
}

.nice-select {
    background-color: transparent;
    border: transparent;
    float: initial;
    overflow: initial;
    height: initial;
    padding: 0;
    display: inline-flex;
    align-items: center;
    line-height: 150%;
    width: 100%;
    border: none;
}

    .nice-select:focus, .nice-select:hover {
        border-color: transparent;
    }

    .nice-select::after {
        height: 8px;
        width: 8px;
        right: -25px;
        top: 15px;
        border-color: var(--header);
        border-bottom: 2px solid var(--header);
        border-right: 2px solid var(--header);
    }

    .nice-select .list {
        width: initial;
        background-color: var(--theme);
        box-shadow: none;
        overflow: initial;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
        width: 100%;
        top: 100%;
        padding: 0;
        max-height: 50vh;
        overflow-x: auto;
        right: -50px;
    }

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

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

    .scroll-up::after {
        position: absolute;
        font-family: "Font Awesome 6 free";
        content: "\f062";
        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;
        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;
        box-sizing: border-box;
        transition: all 0.4s ease-in-out;
    }

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

.page-nav-wrap ul li {
    display: inline-block;
}

    .page-nav-wrap ul li .page-numbers {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: transparent;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        margin: 0 2px;
        border: 1px solid var(--border);
        color: var(--header);
        border-radius: 50%;
    }

        .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.icon {
    border: none;
    background-color: transparent;
    color: var(--theme);
}

    .page-nav-wrap ul li .page-numbers.icon:hover {
        border: none;
        background-color: transparent;
        color: var(--theme);
    }

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}

.bor-bottom {
    border-bottom: 1px solid var(--border-2);
}

.pt-100 {
    padding-top: 100px;
}

@media (max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

.pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

.margin-top-10 {
    margin-top: -10px;
}

.margin-top-5 {
    margin-top: -5px;
}

.margin-top-60 {
    margin-top: -65px;
}

@media (max-width: 1399px) {
    .margin-top-60 {
        margin-top: -25px;
    }
}

@media (max-width: 1199px) {
    .margin-top-60 {
        margin-top: -27px;
    }
}

@media (max-width: 991px) {
    .margin-top-60 {
        margin-top: -75px;
    }
}

@media (max-width: 767px) {
    .margin-top-60 {
        margin-top: -65px;
    }
}

.hero-1 {
    position: relative;
    z-index: 7;
    padding: 295px 0px 320px;
}

@media (max-width: 1199px) {
    .hero-1 {
        padding: 200px 0 300px;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        padding: 175px 0 300px;
    }
}

@media (max-width: 767px) {
    .hero-1 {
        padding: 155px 0 280px;
    }
}

@media (max-width: 575px) {
    .hero-1 {
        padding: 125px 0 250px;
    }
}

.hero-1 .hero-social {
    position: absolute;
    z-index: 9;
    top: 40%;
    left: -55px;
    align-items: center;
    gap: 16px;
    transform: rotate(-90deg) translateY(-50%);
}

@media (max-width: 1399px) {
    .hero-1 .hero-social {
        display: none;
    }
}

.hero-1 .hero-social span {
    color: var(--white);
    font-weight: 500;
    margin-right: 16px;
}

.hero-1 .hero-social a {
    color: var(--white);
    margin-right: 15px;
}

    .hero-1 .hero-social a:hover {
        color: var(--theme2);
    }

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

.hero-1 .hero-content .sub-text {
    border: 1px solid var(--theme2);
    border-radius: 100px;
    color: var(--theme2);
    padding: 10px 20px;
    margin-bottom: 30px;
    display: inline-block;
}

@media (max-width: 575px) {
    .hero-1 .hero-content .sub-text {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.hero-1 .hero-content h1 {
    font-size: 64px;
    color: var(--white);
    line-height: 140%;
    margin-bottom: 20px;
}

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

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

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

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

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

.hero-1 .hero-content h6 {
    color: var(--white);
    line-height: 175%;
}

.hero-1 .hero-content .hero-author {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

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

@media (max-width: 575px) {
    .hero-1 .hero-content .hero-author {
        flex-wrap: wrap;
        margin-top: 25px;
        gap: 20px;
    }
}

.hero-1 .hero-content .hero-author .author-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-1 .hero-content .hero-author .author-content .content .star {
        color: var(--theme2);
    }

.hero-1 .circle-shape-left {
    position: absolute;
    bottom: 0;
    left: -15%;
}

.hero-1 .circle-shape-right {
    position: absolute;
    top: -60%;
    right: -22%;
    z-index: -1;
}

.hero-1 .dot-left {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.hero-1 .dot-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.hero-1 .hero-image {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }

.hero-1.style-hero-2 {
    background-position: bottom !important;
    padding: 325px 0 275px;
}

@media (max-width: 1199px) {
    .hero-1.style-hero-2 {
        padding: 250px 0 387px;
    }
}

@media (max-width: 991px) {
    .hero-1.style-hero-2 {
        padding: 270px 0 397px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hero-2 {
        padding: 230px 0 357px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-hero-2 {
        padding: 200px 0 327px;
    }
}

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

.hero-1.style-hero-2 .hero-content h1 span {
    color: var(--theme2);
    position: relative;
    display: inline-block;
}

    .hero-1.style-hero-2 .hero-content h1 span::before {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        background-repeat: no-repeat;
        background-image: url(../../assets/img/hero/line.png);
        width: 210px;
        height: 13px;
    }

@media (max-width: 767px) {
    .hero-1.style-hero-2 .hero-content h1 span::before {
        display: none;
    }
}

.hero-1.style-hero-2 .hero-content .hero-list-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .hero-1.style-hero-2 .hero-content .hero-list-items {
        gap: 20px;
    }
}

.hero-1.style-hero-2 .hero-content .hero-list-items .hero-list li {
    font-weight: 500;
    color: var(--white);
}

    .hero-1.style-hero-2 .hero-content .hero-list-items .hero-list li i {
        margin-right: 10px;
    }

    .hero-1.style-hero-2 .hero-content .hero-list-items .hero-list li:not(:last-child) {
        margin-bottom: 10px;
    }

@media (max-width: 767px) {
    .hero-1.style-hero-2 .hero-content .hero-author {
        justify-content: start;
    }
}

.hero-1.style-hero-3 {
    padding: 220px 0 250px;
}

@media (max-width: 1199px) {
    .hero-1.style-hero-3 {
        padding: 130px 0 250px;
    }
}

@media (max-width: 991px) {
    .hero-1.style-hero-3 {
        padding: 170px 0 250px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hero-3 {
        padding: 150px 0 250px;
    }
}

.hero-1.style-hero-3 .hero-content h1 span {
    color: var(--theme2);
    position: relative;
    display: inline-block;
}

    .hero-1.style-hero-3 .hero-content h1 span::before {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        background-repeat: no-repeat;
        background-image: url(../../assets/img/hero/line.png);
        width: 210px;
        height: 13px;
    }

@media (max-width: 767px) {
    .hero-1.style-hero-3 .hero-content h1 span::before {
        display: none;
    }
}

.hero-1.style-hero-3 .hero-content p {
    color: var(--white);
    font-weight: 600;
}

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

    .hero-1.style-hero-3 .hero-content .hero-author .video-btn::before {
        position: absolute;
        top: 50%;
        left: 50%;
        right: 0;
        bottom: 0;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        border: 1.3px solid var(--white);
        content: "";
        transform: translate(-50%, -50%);
    }

.hero-1.style-hero-3 .hero-content .hero-author .button-text span {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.hero-1.style-hero-3 .hero-content .hosting-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

    .hero-1.style-hero-3 .hero-content .hosting-list li {
        font-size: 14px;
        color: var(--white);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.15);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 17.5px;
        line-height: 1;
    }

        .hero-1.style-hero-3 .hero-content .hosting-list li span {
            font-size: 18px;
            color: var(--white);
            font-weight: bold;
            border-right: 1px solid rgba(255, 255, 255, 0.5);
            padding-right: 17.5px;
            text-transform: lowercase;
        }

.hero-1.style-hero-3 .hero-content .doming-input {
    max-width: 820px;
    text-align: center;
    margin: 20px auto 0;
    position: relative;
    width: 100%;
}

    .hero-1.style-hero-3 .hero-content .doming-input input {
        width: 100%;
        outline: none;
        border: none;
        border-radius: 8px;
        padding: 20px 25px;
        line-height: 1;
        font-size: 17px;
        color: var(--text);
    }

    .hero-1.style-hero-3 .hero-content .doming-input .theme-btn {
        position: absolute;
        top: 6px;
        right: 7px;
        border-radius: 4px;
        padding: 17.5px 40px;
        font-weight: 600;
    }

        .hero-1.style-hero-3 .hero-content .doming-input .theme-btn::before {
            background-color: var(--theme);
        }

        .hero-1.style-hero-3 .hero-content .doming-input .theme-btn:hover {
            color: var(--white);
        }

    .hero-1.style-hero-3 .hero-content .doming-input .select-area {
        position: absolute;
        right: 33%;
        top: 20px;
    }

        .hero-1.style-hero-3 .hero-content .doming-input .select-area .nice-select {
            width: unset !important;
            gap: 20px;
            font-size: 17px;
        }

            .hero-1.style-hero-3 .hero-content .doming-input .select-area .nice-select .list {
                max-height: 15vh;
                background: var(--header);
                width: 80px;
                padding: 5px 8px;
                overflow-y: scroll;
                right: -35px;
                border-radius: 0;
            }

                .hero-1.style-hero-3 .hero-content .doming-input .select-area .nice-select .list li {
                    color: var(--white);
                    font-size: 15px;
                    border: none;
                }

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

    .hero-1.style-hero-3 .hero-image-items .circle-shape {
        position: absolute;
        top: 50px;
        left: -20px;
        animation: cir36 10s linear infinite;
    }

@media (max-width: 1199px) {
    .hero-1.style-hero-3 .hero-image-items .circle-shape {
        left: 0;
    }
}

.hero-1.style-hero-3 .hero-image-items .circle-shape img {
    width: 100%;
    height: 100%;
}

.hero-1.style-hero-3 .hero-image-items .hero-image {
    max-width: 510px;
    position: relative;
    animation: initial;
}

.hero-1.style-affiliate {
    padding: 250px 0 250px;
}

@media (max-width: 991px) {
    .hero-1.style-affiliate {
        padding: 230px 0 230px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-affiliate {
        padding: 200px 0 200px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-affiliate {
        padding: 170px 0 170px;
    }
}

.hero-1.style-affiliate .hero-content .sub-text-2 {
    color: var(--theme2);
    margin-bottom: 15px;
    display: inline-block;
}

    .hero-1.style-affiliate .hero-content .sub-text-2 img {
        margin-right: 20px;
    }

.hero-1.style-affiliate .hero-content h1 {
    margin-bottom: 30px;
}

.hero-1.style-black-friday {
    padding: 282px 0 160px;
}

@media (max-width: 1199px) {
    .hero-1.style-black-friday {
        padding: 200px 0 150px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-black-friday {
        padding: 180px 0 140px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-black-friday {
        padding: 160px 0 120px;
    }
}

.hero-1.style-black-friday .hero-content .sub-text-2 {
    color: var(--theme2);
    margin-bottom: 15px;
    display: inline-block;
}

    .hero-1.style-black-friday .hero-content .sub-text-2 img {
        margin-right: 20px;
    }

.hero-1.style-black-friday .hero-content h1 span {
    color: var(--theme2);
}

.hero-1.style-black-friday .hero-content .coming-soon-timer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .hero-1.style-black-friday .hero-content .coming-soon-timer {
        justify-content: center;
        margin-bottom: 30px;
    }
}

.hero-1.style-black-friday .hero-content .coming-soon-timer .timer-content {
    background-color: rgba(230, 247, 252, 0.2);
    border-radius: 6px;
}

    .hero-1.style-black-friday .hero-content .coming-soon-timer .timer-content h3 {
        color: var(--white);
        font-size: 33px;
        font-weight: 700;
        border-bottom: 1px solid rgba(230, 247, 252, 0.2);
        padding: 20px 25px;
        line-height: 1;
    }

    .hero-1.style-black-friday .hero-content .coming-soon-timer .timer-content p {
        font-size: 14px;
        text-transform: uppercase;
        color: var(--white);
        font-weight: 400;
        text-align: center;
        padding: 5px;
    }

.hero-1.style-hosting {
    padding: 290px 0 170px;
}

@media (max-width: 1199px) {
    .hero-1.style-hosting {
        padding: 240px 0 160px;
    }
}

@media (max-width: 991px) {
    .hero-1.style-hosting {
        padding: 220px 0 150px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hosting {
        padding: 180px 0 120px;
    }
}

@media (max-width: 575px) {
    .hero-1.style-hosting {
        padding: 150px 0 90px;
    }
}

@media (max-width: 767px) {
    .hero-1.style-hosting .hero-content {
        text-align: left;
        margin: initial;
    }
}

.hero-1.style-hosting .hero-content .sub-text-2 {
    color: var(--theme2);
    margin-bottom: 15px;
    display: inline-block;
}

    .hero-1.style-hosting .hero-content .sub-text-2 img {
        margin-right: 20px;
    }

.hero-1.style-hosting .hero-content .hero-list-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .hero-1.style-hosting .hero-content .hero-list-items {
        gap: 20px;
    }
}

.hero-1.style-hosting .hero-content .hero-list-items .hero-list li {
    font-weight: 500;
    color: var(--white);
}

    .hero-1.style-hosting .hero-content .hero-list-items .hero-list li i {
        margin-right: 10px;
    }

    .hero-1.style-hosting .hero-content .hero-list-items .hero-list li:not(:last-child) {
        margin-bottom: 10px;
    }

.hero-4 {
    padding: 315px 0 200px;
    position: relative;
}

@media (max-width: 1199px) {
    .hero-4 {
        padding: 260px 0;
    }
}

@media (max-width: 991px) {
    .hero-4 {
        padding: 230px 0;
    }
}

@media (max-width: 767px) {
    .hero-4 {
        padding: 190px 0;
    }
}

@media (max-width: 575px) {
    .hero-4 {
        padding: 150px 0;
    }
}

.hero-4 .hero-doming-wrapper {
    position: relative;
    z-index: 9;
    text-align: center;
}

    .hero-4 .hero-doming-wrapper h1 {
        font-size: 56px;
        font-weight: 600;
        margin-bottom: 20px;
    }

@media (max-width: 1199px) {
    .hero-4 .hero-doming-wrapper h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-doming-wrapper h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .hero-4 .hero-doming-wrapper h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .hero-4 .hero-doming-wrapper h1 {
        font-size: 28px;
    }
}

.hero-4 .hero-doming-wrapper h6 {
    color: var(--white);
    margin-bottom: 30px;
}

.hero-4 .hero-doming-wrapper .doming-input {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

    .hero-4 .hero-doming-wrapper .doming-input input {
        width: 100%;
        outline: none;
        border: none;
        border-radius: 8px;
        padding: 20px 25px;
        line-height: 1;
        font-size: 17px;
        color: var(--text);
    }

    .hero-4 .hero-doming-wrapper .doming-input .theme-btn {
        position: absolute;
        top: 6px;
        right: 7px;
        border-radius: 4px;
        padding: 17.5px 40px;
        font-weight: 600;
    }

        .hero-4 .hero-doming-wrapper .doming-input .theme-btn::before {
            background-color: var(--theme);
        }

        .hero-4 .hero-doming-wrapper .doming-input .theme-btn:hover {
            color: var(--white);
        }

    .hero-4 .hero-doming-wrapper .doming-input .select-area {
        position: absolute;
        right: 28%;
        top: 20px;
    }

        .hero-4 .hero-doming-wrapper .doming-input .select-area .nice-select {
            width: unset !important;
            gap: 20px;
            font-size: 17px;
        }

            .hero-4 .hero-doming-wrapper .doming-input .select-area .nice-select .list {
                max-height: 15vh;
                background: var(--header);
                width: 80px;
                padding: 5px 8px;
                overflow-y: scroll;
                right: -35px;
                border-radius: 0;
            }

                .hero-4 .hero-doming-wrapper .doming-input .select-area .nice-select .list li {
                    color: var(--white);
                    font-size: 15px;
                    border: none;
                }

.hero-4 .hero-doming-wrapper .doming-list {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .hero-4 .hero-doming-wrapper .doming-list {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.hero-4 .hero-doming-wrapper .doming-list li {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    padding: 12px 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    text-transform: lowercase;
}

    .hero-4 .hero-doming-wrapper .doming-list li::before {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.5);
        height: 14px;
        width: 2px;
        display: none;
    }

    .hero-4 .hero-doming-wrapper .doming-list li span {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

.hero-4 .hero-doming-wrapper.style-2 {
    border-radius: 2050px;
    margin-top: -225px;
}

@media (max-width: 991px) {
    .hero-4 .hero-doming-wrapper.style-2 {
        border-radius: 0;
    }
}

.hero-4 .hero-suppor-image {
    position: absolute;
    left: 82px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1899px) {
    .hero-4 .hero-suppor-image {
        display: none;
    }
}

.hero-4 .hero-suppor-image img {
    width: 100%;
    height: 100%;
}

.hero-4 .hero-hosing-image {
    position: absolute;
    top: 50%;
    right: 71px;
    transform: translateY(-50%);
}

@media (max-width: 1899px) {
    .hero-4 .hero-hosing-image {
        display: none;
    }
}

.hero-4 .hero-hosing-image img {
    width: 100%;
    height: 100%;
}

.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-items {
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;
    }

@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items {
        flex-wrap: wrap;
    }
}

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

@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}

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

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

        .mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
            padding: 12px 20px;
            color: var(--white) !important;
            width: initial;
            font-size: 16px;
            text-align: center;
            border-radius: 0;
        }

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

    .mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
        background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 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-items .homemenu .homemenu-thumb:hover::before {
        visibility: visible;
        opacity: 1;
    }

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

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

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

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    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: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
    float: right;
    text-align: right;
}

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

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

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

    .mean-container .mean-nav ul li a.mean-expand {
        margin-top: 5px;
        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;
    font-size: 18px;
}

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

.news-card-items {
    padding-top: 30px;
}

    .news-card-items .news-image img {
        width: auto;
        height:120px;
        border-radius: 8px;
    }

    .news-card-items .news-content {
        padding: 30px;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        border-radius: 8px;
        margin: -50px 20px 0;
        position: relative;
        z-index: 9;
    }
        .news-card-items .card-text
        {
            font-size:0.750rem;
            font-weight:600;
            height:120px !important;
            display:block;
            color:#111111 !important;
        }
        @media (max-width: 1399px) {
            .news-card-items .news-content {
        margin: 0;
        border-radius: 8px 8px;
    }
}

.news-card-items .news-content .post-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .news-card-items .news-content .post-list {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 470px) {
    .news-card-items .news-content .post-list {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.news-card-items .news-content .post-list span {
    font-weight: 500;
    color: var(--theme);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    line-height: 1;
}

.news-card-items .news-content .post-list p {
    font-weight: 500;
}

.news-card-items .news-content h3 {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

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

.news-card-items .news-content .author-items {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .news-card-items .news-content .author-items .author-image {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .news-card-items .news-content .author-items .author-image .author-img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
        }

    .news-card-items .news-content .author-items .link-btn {
        background-color: var(--bg);
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 4px;
        color: var(--theme);
        display: inline-block;
    }

        .news-card-items .news-content .author-items .link-btn:hover {
            background-color: var(--theme);
            color: var(--white);
        }
.news-image{
    text-align:center;
}
.news-card-items.style-2 .news-image img {
    border-radius: 8px 8px 0 0;
}

.news-card-items.style-2 .news-content {
    padding: 30px 40px;
    border-radius: 0px 0px 8px 8px;
    margin: 0;
}

    .news-card-items.style-2 .news-content .post-list span {
        text-transform: capitalize;
    }

.news-standard-wrapper .news-standard-items {
    border: 1px solid var(--border);
    padding: 30px;
}

    .news-standard-wrapper .news-standard-items:not(:last-child) {
        margin-bottom: 20px;
    }

    .news-standard-wrapper .news-standard-items .news-thumb {
        position: relative;
    }

        .news-standard-wrapper .news-standard-items .news-thumb img {
            width: 100%;
            height: 100%;
        }

    .news-standard-wrapper .news-standard-items .news-content {
        margin-top: 20px;
        position: relative;
        z-index: 9;
    }

        .news-standard-wrapper .news-standard-items .news-content .date-list {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 15px;
        }

@media (max-width: 1199px) {
    .news-standard-wrapper .news-standard-items .news-content .date-list {
        gap: 20px;
    }
}

.news-standard-wrapper .news-standard-items .news-content .date-list li {
    font-size: 16px;
    font-weight: 400;
}

    .news-standard-wrapper .news-standard-items .news-content .date-list li b {
        font-weight: 500;
        color: var(--theme);
    }

    .news-standard-wrapper .news-standard-items .news-content .date-list li.color-2 {
        color: var(--header);
        position: relative;
        padding-left: 20px;
    }

        .news-standard-wrapper .news-standard-items .news-content .date-list li.color-2::before {
            position: absolute;
            top: 10px;
            left: 0;
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 7px;
            background-color: var(--theme);
        }

.news-standard-wrapper .news-standard-items .news-content h3 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 24px;
}

    .news-standard-wrapper .news-standard-items .news-content h3 a:hover {
        color: var(--theme);
    }

.news-standard-wrapper .news-standard-items .news-content .news-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .news-standard-wrapper .news-standard-items .news-content .news-button .link-btn {
        background-color: var(--bg);
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 4px;
        color: var(--theme);
        display: inline-block;
    }

        .news-standard-wrapper .news-standard-items .news-content .news-button .link-btn:hover {
            background-color: var(--theme);
            color: var(--white);
        }

    .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile {
        content: "";
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        z-index: 2;
        display: inline-block;
        overflow: hidden;
    }

        .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile ul {
            transition: all 0.6s ease-in-out;
            opacity: 0;
            visibility: hidden;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }

            .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile ul li a {
                text-align: center;
                font-size: 16px;
                border-radius: 50%;
                display: block;
                color: var(--header);
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                text-align: center;
                margin: 0 auto;
            }

                .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile ul li a:hover {
                    color: var(--theme);
                }

        .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile .plus-btn {
            z-index: 2;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            display: inline-block;
            background: transparent;
            color: var(--text);
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            padding: 15px 24px;
            border: 1px solid var(--border);
            line-height: 1;
        }

            .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile .plus-btn i {
                color: var(--theme);
            }

        .news-standard-wrapper .news-standard-items .news-content .news-button .social-profile:hover ul {
            opacity: 1;
            visibility: visible;
        }

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: var(--bg);
    margin-bottom: 30px;
}

    .main-sidebar .single-sidebar-widget .wid-title {
        margin-bottom: 25px;
    }

        .main-sidebar .single-sidebar-widget .wid-title h3 {
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
            font-size: 22px;
            font-weight: 600;
        }

            .main-sidebar .single-sidebar-widget .wid-title h3::before {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 50px;
                height: 2px;
                content: "";
                background-color: var(--theme);
            }

    .main-sidebar .single-sidebar-widget .search-widget form {
        width: 100%;
        position: relative;
    }

        .main-sidebar .single-sidebar-widget .search-widget form input {
            background-color: var(--white);
            font-size: 16px;
            padding: 20px;
            width: 100%;
            border: none;
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .main-sidebar .single-sidebar-widget .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;
            transition: all 0.3s ease-in-out;
            border-radius: 0 4px 4px 0;
        }

            .main-sidebar .single-sidebar-widget .search-widget form button:hover {
                background-color: var(--header);
            }

    .main-sidebar .single-sidebar-widget .news-widget-categories ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 20px;
        background-color: var(--white);
        font-weight: 500;
        transition: all 0.4s ease-in-out;
        border: 1px solid var(--border);
        border-radius: 0;
        font-size: 18px;
        line-height: 1;
    }

        .main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
            color: var(--header);
        }

        .main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
            transition: all 0.4s ease-in-out;
            color: var(--header);
        }

        .main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
            margin-bottom: 12px;
        }

        .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
            background-color: var(--theme);
        }

            .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
                color: var(--white);
            }

            .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
                color: var(--white);
            }

        .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
            background-color: var(--theme);
        }

            .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
                color: var(--white);
            }

            .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
                color: var(--white);
            }

    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 20px;
        }

        .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
            margin-bottom: 8px;
        }

            .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
                color: var(--theme);
                margin-right: 5px;
            }

        .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
            font-weight: 700;
        }

            .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
                color: var(--theme);
            }

    .main-sidebar .single-sidebar-widget .tagcloud a {
        display: inline-block;
        padding: 11px 20px;
        line-height: 1;
        font-size: 16px;
        font-weight: 500;
        background: var(--white);
        margin-right: 5px;
        text-transform: capitalize;
        margin-bottom: 10px;
        border-radius: 0;
        border: 1px solid var(--border);
        transition: all 0.4s ease-in-out;
    }

        .main-sidebar .single-sidebar-widget .tagcloud a:last-child {
            margin-right: 0;
        }

        .main-sidebar .single-sidebar-widget .tagcloud a:hover {
            background-color: var(--theme);
            color: var(--white);
        }

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 397px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

    .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
        gap: 30px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }

        .news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
            font-size: 14px;
            font-weight: 500;
        }

            .news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
                color: var(--theme);
                margin-right: 5px;
            }

    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        margin-bottom: 20px;
        font-size: 30px;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        font-size: 24px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: var(--bg);
}

    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
        font-weight: 600;
        text-transform: capitalize;
        font-style: italic;
        line-height: 26px;
        color: var(--header);
        line-height: 162%;
    }

    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
        float: right;
        margin-top: -30px;
    }

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

    .news-details-area .blog-post-details .tag-share-wrap .tagcloud span {
        display: inline-block;
        font-weight: 600;
        color: var(--header);
        margin-right: 15px;
    }

    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        display: inline-block;
        padding: 12px 26px;
        line-height: 1;
        background: var(--bg);
        margin-right: 8px;
        text-transform: capitalize;
        font-weight: 500;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        border-radius: 0;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 16px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--text);
}

    .news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
        margin-right: 10px;
    }

    .news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
        color: var(--theme);
    }

.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
}

    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 30px;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 22px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid var(--border);
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--bg);
    color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text);
}

    .news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
        color: var(--text);
    }

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

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

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

        .preloader .animation-preloader .spinner {
            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 iranyekan, sans-serif, iranyekan, sans-serif;
    text-align: center;
    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 {
        animation-delay: 0.2s;
    }

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

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

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

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

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

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

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

.preloader p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    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: var(--bg);
            height: 100%;
            left: 0;
            width: 100%;
            transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
        }

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

.preloader.loaded .loader-section .bg {
    width: 0;
    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%;
        transform: translateY(-50%);
    }

    .search-wrap .search-field-holder {
        width: 50%;
        margin: auto;
        position: relative;
        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::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

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

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

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

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme2);
    -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;
    -o-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(--theme2);
        opacity: 0.3;
    }

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

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

.pricing-card-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

    .pricing-card-items .icon {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        text-align: center;
        line-height: 70px;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
    }

    .pricing-card-items .wing-shape {
        position: absolute;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
    }

    .pricing-card-items .pricing-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

        .pricing-card-items .pricing-bg img {
            width: 100%;
            height: 100%;
        }

    .pricing-card-items .pricing-header {
        padding: 30px 30px 40px 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 9;
        position: relative;
    }

        .pricing-card-items .pricing-header h2 {
            font-size: 30px;
        }

    .pricing-card-items .pricing-list {
        padding: 40px 0 0 0;
        border-top: 1px solid var(--border);
        margin-left: 40px;
        margin-right: 40px;
        z-index: 9;
        position: relative;
    }

        .pricing-card-items .pricing-list li {
            font-weight: 500;
        }

            .pricing-card-items .pricing-list li:not(:last-child) {
                margin-bottom: 15px;
            }

            .pricing-card-items .pricing-list li i {
                color: var(--theme);
                margin-right: 5px;
            }

            .pricing-card-items .pricing-list li.color-2 i {
                color: #FF1010;
            }

    .pricing-card-items .pricing-button {
        padding: 50px 40px 40px;
        z-index: 9;
        position: relative;
    }

        .pricing-card-items .pricing-button .theme-btn {
            width: 100%;
        }

@media (max-width: 1399px) {
    .pricing-card-items.responsive-pricing-style {
        position: relative;
        padding: 40px 40px;
    }

        .pricing-card-items.responsive-pricing-style::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            content: "";
            background-color: var(--white);
            border-radius: 10px;
        }

        .pricing-card-items.responsive-pricing-style .icon {
            position: relative;
            z-index: 9;
        }

        .pricing-card-items.responsive-pricing-style .pricing-header {
            padding: 0;
            position: relative;
            z-index: 9;
            margin-top: 20px;
            padding-bottom: 20px;
        }

            .pricing-card-items.responsive-pricing-style .pricing-header h2 {
                font-size: 30px;
            }

        .pricing-card-items.responsive-pricing-style .pricing-list {
            margin: 0;
            position: relative;
            z-index: 9;
            padding-top: 30px;
        }

        .pricing-card-items.responsive-pricing-style .pricing-button {
            padding: 0;
            position: relative;
            z-index: 9;
            margin-top: 30px;
        }
}

@media (max-width: 575px) {
    .pricing-card-items.responsive-pricing-style {
        padding: 30px;
    }

        .pricing-card-items.responsive-pricing-style .price-content h3 {
            font-size: 22px;
        }
}

.pricing-title {
    padding: 10px 22px;
    background-color: var(--white);
    border-radius: 8px;
    max-width: 770px;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .pricing-title {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 18px 20px;
        text-align: center;
    }
}

.pricing-title p {
    font-size: 17px;
}

.pricing-title .theme-btn {
    border-radius: 4px;
    background-color: var(--theme2);
    font-size: 17px;
    padding: 19.5px 25px;
}

.pricing-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .pricing-items {
        padding: 30px;
    }
}

.pricing-items .tag {
    padding: 14px 18px 12px 40px;
    background-color: var(--theme);
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 0;
    overflow: hidden;
}

    .pricing-items .tag h6 {
        font-size: 16px;
        color: var(--white);
        font-weight: 500;
    }

    .pricing-items .tag::before {
        width: 0;
        height: 0;
        border-top: 38px solid var(--white);
        border-right: 37px solid transparent;
        content: "";
        left: -22px;
        position: absolute;
        bottom: 13%;
        transform: rotate(135deg);
    }

.pricing-items .pricing-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    position: relative;
}

@media (max-width: 575px) {
    .pricing-items .pricing-header {
        padding-bottom: 20px;
    }
}

.pricing-items .pricing-header h2 {
    font-size: 40px;
    margin-top: 15px;
}

.pricing-items .pricing-header .price-text {
    font-weight: 600;
    color: var(--text);
    position: absolute;
    bottom: 40%;
    right: 0;
    font-size: 20px;
}

.pricing-items .pricing-header .month {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}

.pricing-items .pricing-header p {
    margin-top: 15px;
}

.pricing-items .pricing-list {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .pricing-items .pricing-list {
        margin-top: 20px;
    }
}

.pricing-items .pricing-list li {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .pricing-items .pricing-list li:not(:last-child) {
        margin-bottom: 10px;
    }

    .pricing-items .pricing-list li span i {
        color: var(--theme);
        margin-right: 7px;
    }

    .pricing-items .pricing-list li i {
        font-weight: 500;
    }

    .pricing-items .pricing-list li.color-2 span i {
        color: #FF1010;
    }

.pricing-items .pricing-button {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .pricing-items .pricing-button {
        margin-top: 20px;
    }
}

.pricing-items .pricing-button p {
    font-weight: 500;
}

.pricing-items .pricing-button .pricing-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--theme);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
    line-height: 1;
    width: 100%;
    border-radius: 36px;
    border: 1px solid var(--theme);
    text-align: center;
}

    .pricing-items .pricing-button .pricing-btn i {
        margin-left: 10px;
    }

@media (max-width: 767px) {
    .pricing-items .pricing-button .pricing-btn {
        padding: 16px 32px;
    }
}

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

.pricing-items .pricing-button .pricing-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-items:hover {
    transform: translateY(-10px);
}

.pricing-items.style-2 {
    padding: 30px;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 45px;
}

    .pricing-items.style-2 .top-text {
        font-size: 16px;
        color: var(--white);
        font-weight: 400;
        display: inline-block;
        padding: 10.8px 30px;
        text-align: center;
        position: relative;
        background-color: var(--theme);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
    }

        .pricing-items.style-2 .top-text::before {
            width: 0px;
            height: 0px;
            border-top: 34.5px solid var(--theme);
            border-right: 28px solid transparent;
            content: "";
            left: -13px;
            position: absolute;
            bottom: 11.5%;
            transform: rotate(-41deg);
        }

        .pricing-items.style-2 .top-text::after {
            width: 0;
            height: 0;
            border-top: 32.5px solid var(--theme);
            border-right: 32px solid transparent;
            content: "";
            right: -14px;
            position: absolute;
            bottom: 13.5%;
            transform: rotate(138deg);
        }

    .pricing-items.style-2 .pricing-header-2 {
        margin-top: 30px;
    }

        .pricing-items.style-2 .pricing-header-2 .price-list {
            justify-content: center;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

            .pricing-items.style-2 .pricing-header-2 .price-list del {
                font-weight: 500;
            }

            .pricing-items.style-2 .pricing-header-2 .price-list span {
                padding: 8px 20px;
                border-radius: 24px;
                background: rgba(56, 75, 255, 0.12);
                line-height: 1;
                color: var(--theme);
                font-weight: 500;
                text-transform: uppercase;
            }

        .pricing-items.style-2 .pricing-header-2 h2 {
            text-align: center;
        }

            .pricing-items.style-2 .pricing-header-2 h2 sub {
                font-size: 16px;
                font-weight: 500;
                color: var(--text);
                text-transform: lowercase;
                margin-left: -15px;
            }

    .pricing-items.style-2 p {
        margin-top: 20px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }

    .pricing-items.style-2 .pricing-btn {
        background-color: var(--theme);
        color: var(--white);
        padding: 16px 40px;
    }

        .pricing-items.style-2 .pricing-btn:hover {
            background-color: var(--header);
        }

    .pricing-items.style-2.active {
        border: 1px solid var(--theme);
    }

        .pricing-items.style-2.active .top-text {
            background-color: var(--theme2);
        }

            .pricing-items.style-2.active .top-text::before {
                border-top: 34.5px solid var(--theme2);
            }

            .pricing-items.style-2.active .top-text::after {
                border-top: 32.5px solid var(--theme2);
            }

        .pricing-items.style-2.active .pricing-btn {
            background-color: var(--theme2);
            border: 1px solid transparent;
        }

            .pricing-items.style-2.active .pricing-btn:hover {
                background-color: var(--header);
            }

.pricing-section {
    position: relative;
}

    .pricing-section .pricing-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

        .pricing-section .pricing-shape img {
            width: 100%;
            height: 100%;
        }

.pricing-tab-header {
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .pricing-tab-header {
        margin-bottom: 0;
    }
}

.pricing-tab-header .arrow-shape {
    position: absolute;
    left: 59.5%;
    top: 0;
    animation: rounded 5s linear infinite;
}

@media (max-width: 1199px) {
    .pricing-tab-header .arrow-shape {
        display: none;
    }
}

.pricing-tab-header .nav {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
    justify-content: center;
    max-width: 225px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .pricing-tab-header .nav {
        max-width: 325px;
    }
}

@media (max-width: 575px) {
    .pricing-tab-header .nav {
        gap: 15px;
        max-width: 225px;
    }
}

.pricing-tab-header .nav .nav-link {
    text-align: center;
    padding: 18px 25px;
    border-radius: 100px;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--header);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .pricing-tab-header .nav .nav-link {
        padding: 14px 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .pricing-tab-header .nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.pricing-tab-header .nav .nav-link.active {
    position: relative;
    background-color: var(--theme);
    color: var(--white);
}

.pricing-tab-header .save-text {
    font-weight: 500;
    color: var(--theme);
    font-size: 18px;
    text-align: center;
    margin-left: 40%;
}

.pricing-tab-header.style-2 .nav {
    max-width: 535px;
}

    .pricing-tab-header.style-2 .nav .nav-link {
        color: var(--text);
        font-weight: 500;
    }

        .pricing-tab-header.style-2 .nav .nav-link.active {
            color: var(--white) !important;
        }

.pricing-box-items {
    margin-top: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease-in-out;
}

    .pricing-box-items .pricing-header .price-content {
        margin-bottom: 20px;
    }

        .pricing-box-items .pricing-header .price-content h4 {
            font-size: 22px;
            margin-bottom: 10px;
        }

    .pricing-box-items .pricing-header h2 {
        font-size: 40px;
    }

        .pricing-box-items .pricing-header h2 sup {
            font-weight: 400;
            color: var(--text);
            font-size: 16px;
            margin-left: 5px;
        }

    .pricing-box-items .pricing-button {
        margin-top: 30px;
    }

        .pricing-box-items .pricing-button .theme-btn {
            width: 100%;
            background-color: transparent;
            border-radius: 4px;
            border: 1.5px solid var(--theme);
            color: var(--theme);
        }

            .pricing-box-items .pricing-button .theme-btn::before {
                background-color: var(--theme);
            }

            .pricing-box-items .pricing-button .theme-btn:hover {
                color: var(--white);
                border: 1.5px solid transparent;
            }

    .pricing-box-items .pricing-list {
        margin-top: 30px;
    }

@media (max-width: 575px) {
    .pricing-box-items .pricing-list {
        margin-top: 20px;
    }
}

.pricing-box-items .pricing-list li {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .pricing-box-items .pricing-list li:not(:last-child) {
        margin-bottom: 10px;
    }

    .pricing-box-items .pricing-list li span i {
        color: var(--theme);
        margin-right: 7px;
    }

    .pricing-box-items .pricing-list li i {
        font-weight: 500;
    }

    .pricing-box-items .pricing-list li.color-2 span i {
        color: #FF1010;
    }

.pricing-box-items:hover {
    transform: translateY(-10px);
}

.pricing-box-items.active {
    background-color: var(--theme);
}

    .pricing-box-items.active .pricing-header .price-content h4, .pricing-box-items.active .pricing-header .price-content p {
        color: var(--white);
    }

    .pricing-box-items.active .pricing-header h2 {
        color: var(--white);
    }

        .pricing-box-items.active .pricing-header h2 sup {
            color: var(--white);
        }

    .pricing-box-items.active .pricing-button .theme-btn {
        color: var(--theme);
        background-color: var(--white);
        border: 1.5px solid transparent;
    }

        .pricing-box-items.active .pricing-button .theme-btn::before {
            background-color: var(--header);
        }

        .pricing-box-items.active .pricing-button .theme-btn:hover {
            color: var(--white);
            border: 1.5px solid var(--header);
        }

    .pricing-box-items.active .pricing-list li {
        color: var(--white);
    }

        .pricing-box-items.active .pricing-list li span {
            color: var(--white);
        }

            .pricing-box-items.active .pricing-list li span i {
                color: var(--white);
            }

        .pricing-box-items.active .pricing-list li.color-2 span i {
            color: var(--white);
        }

.affiliate-card-items {
    margin-top: 30px;
    background-color: var(--bg);
    border-right: 1px solid var(--border);
    position: relative;
}

    .affiliate-card-items .top-text {
        font-size: 16px;
        color: var(--white);
        font-weight: 400;
        display: inline-block;
        padding: 10.8px 30px;
        text-align: center;
        position: relative;
        background-color: var(--theme);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
    }

        .affiliate-card-items .top-text::before {
            width: 0px;
            height: 0px;
            border-top: 34.5px solid var(--theme);
            border-right: 28px solid transparent;
            content: "";
            left: -13px;
            position: absolute;
            bottom: 11.5%;
            transform: rotate(-41deg);
        }

        .affiliate-card-items .top-text::after {
            width: 0;
            height: 0;
            border-top: 32.5px solid var(--theme);
            border-right: 32px solid transparent;
            content: "";
            right: -14px;
            position: absolute;
            bottom: 13.5%;
            transform: rotate(138deg);
        }

    .affiliate-card-items .pricing-header {
        padding: 60px 35px 50px;
    }

        .affiliate-card-items .pricing-header .affiliate-img {
            max-width: 240px;
            text-align: center;
            margin: 0 auto;
        }

            .affiliate-card-items .pricing-header .affiliate-img img {
                width: 100%;
                height: 100%;
            }

        .affiliate-card-items .pricing-header .price-list {
            justify-content: center;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

            .affiliate-card-items .pricing-header .price-list del {
                font-weight: 500;
            }

            .affiliate-card-items .pricing-header .price-list span {
                padding: 8px 20px;
                border-radius: 24px;
                background: rgba(56, 75, 255, 0.12);
                line-height: 1;
                color: var(--theme);
                font-weight: 500;
                text-transform: uppercase;
            }

        .affiliate-card-items .pricing-header h2 {
            text-align: center;
            margin-bottom: 20px;
        }

            .affiliate-card-items .pricing-header h2 sub {
                font-size: 16px;
                font-weight: 500;
                color: var(--text);
                text-transform: lowercase;
                margin-left: -15px;
            }

        .affiliate-card-items .pricing-header .theme-btn {
            width: 100%;
            padding: 17.5px 40px;
            margin-top: 20px;
        }

    .affiliate-card-items ul li {
        padding: 22px 35px;
        border-top: 1px solid var(--border);
        line-height: 1;
        font-weight: 500;
    }

        .affiliate-card-items ul li i {
            color: var(--theme);
        }

    .affiliate-card-items.active .top-text {
        background-color: var(--theme2);
    }

        .affiliate-card-items.active .top-text::before {
            border-top: 34.5px solid var(--theme2);
        }

        .affiliate-card-items.active .top-text::after {
            border-top: 32.5px solid var(--theme2);
        }

    .affiliate-card-items.active .pricing-header .theme-btn {
        background-color: var(--theme2);
    }

.hosting-wrapper .hosting-content .hosting-items {
    display: flex;
    gap: 30px;
    background-color: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 30px;
}

@media (max-width: 470px) {
    .hosting-wrapper .hosting-content .hosting-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

.hosting-wrapper .hosting-content .hosting-items:not(:last-child) {
    margin-bottom: 30px;
}

.hosting-wrapper .hosting-content .hosting-items .icon {
    width: 56px;
    height: 56px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.hosting-wrapper .hosting-content .hosting-items .content {
    flex-basis: 85%;
}

@media (max-width: 470px) {
    .hosting-wrapper .hosting-content .hosting-items .content {
        flex-basis: 100%;
        text-align: center;
    }
}

.hosting-wrapper .hosting-content.style-2 .hosting-items .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.hosting-wrapper .hosting-image img {
    width: 100%;
    height: 100%;
}

.hosting-inner-items {
    margin-top: 30px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
}

    .hosting-inner-items .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background-color: var(--bg);
        border-radius: 8px;
        border: 1px solid var(--border);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
    }

    .hosting-inner-items .content {
        padding: 30px 30px 30px 100px;
    }

        .hosting-inner-items .content h3 {
            margin-bottom: 10px;
        }

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

    .hosting-inner-items.responsive-style {
        position: relative;
    }

@media (max-width: 1399px) {
    .hosting-inner-items.responsive-style {
        padding: 40px 20px;
    }

        .hosting-inner-items.responsive-style::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            content: "";
            background-color: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
        }

        .hosting-inner-items.responsive-style .icon {
            position: relative;
            text-align: center;
            margin: 0 auto;
        }

        .hosting-inner-items.responsive-style .content {
            position: relative;
            z-index: 9;
            padding: 0;
            text-align: center;
            margin-top: 20px;
        }
}

.hosting-box-items {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background-color: var(--bg);
    position: relative;
    z-index: 9;
    min-height: 380px;
}

    .hosting-box-items::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--theme);
        transform: scale(1, 0);
        transition: transform 500ms ease;
        transform-origin: bottom center;
        z-index: -1;
        border-radius: 16px;
    }

    .hosting-box-items .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
        transition: all 0.4s ease-in-out;
        transition: transform 500ms ease;
    }

    .hosting-box-items .content {
        margin-top: 20px;
    }

        .hosting-box-items .content h3 {
            margin-bottom: 10px;
        }

        .hosting-box-items .content .theme-btn {
            padding: 15px 40px;
            background-color: transparent;
            color: var(--text);
            font-weight: 600;
            border: 1px solid var(--border);
        }

            .hosting-box-items .content .theme-btn::before {
                background-color: var(--theme2);
            }

            .hosting-box-items .content .theme-btn:hover {
                color: var(--white);
                border: 1px solid var(--theme2);
            }

    .hosting-box-items:hover {
        border: 1px solid var(--theme);
    }

        .hosting-box-items:hover::before {
            transform: scale(1, 1);
            transform-origin: top center;
        }

        .hosting-box-items:hover .icon {
            border: 1px solid transparent;
            background-color: #F3F7FB;
            transform: scaleX(-1);
        }

        .hosting-box-items:hover .content h3 a {
            color: var(--white);
        }

        .hosting-box-items:hover .content p {
            color: var(--white);
        }

        .hosting-box-items:hover .content .theme-btn {
            background-color: var(--white);
        }

.offer-hosting-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 1199px) {
    .offer-hosting-wrapper {
        gap: 25px;
        flex-wrap: wrap;
    }
}

.offter-hosting-items {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    width: 450px;
    height: 100%;
    background-position: center;
}

    .offter-hosting-items .bg-shape {
        position: absolute;
        top: 0;
        left: 0;
    }

        .offter-hosting-items .bg-shape img {
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .offter-hosting-items .icon {
        width: 68px;
        height: 68px;
        line-height: 68px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
        position: absolute;
        top: 21px;
        left: 4px;
    }

    .offter-hosting-items .content {
        padding: 40px 30px 50px 122px;
    }

        .offter-hosting-items .content .offer-text {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

            .offter-hosting-items .content .offer-text span {
                line-height: 1;
                padding: 8px 20px;
                background-color: var(--white);
                color: var(--theme);
                border-radius: 24px;
            }

            .offter-hosting-items .content .offer-text h3 {
                color: var(--white);
                font-weight: 600;
            }

        .offter-hosting-items .content h4 {
            color: var(--white);
            font-weight: 600;
            font-size: 16px;
            line-height: 160%;
            margin-bottom: 20px;
        }

        .offter-hosting-items .content .theme-btn {
            border-radius: 0;
            background-color: transparent;
            border: 1.5px solid var(--white);
            border-radius: 4px;
            padding: 16.5px 30px;
        }

    .offter-hosting-items.responsive-style {
        position: relative;
    }

@media (max-width: 1399px) {
    .offter-hosting-items.responsive-style {
        padding: 40px 20px;
        background-image: none !important;
    }

        .offter-hosting-items.responsive-style::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            content: "";
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid var(--border);
            border-radius: 10px;
        }

        .offter-hosting-items.responsive-style .icon {
            position: relative;
            text-align: center;
            margin: 0 auto;
            top: initial;
            left: initial;
        }

        .offter-hosting-items.responsive-style .content {
            position: relative;
            z-index: 9;
            padding: 0;
            text-align: center;
            margin-top: 20px;
        }
}

@media (max-width: 1399px) and (max-width: 1399px) {
    .offter-hosting-items.responsive-style .content .offer-text {
        justify-content: center;
    }
}

.hosting-service-text {
    text-align: center;
    line-height: 1;
    padding: 20px 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    max-width: 420px;
    margin: 50px auto 0;
    font-size: 17px;
    font-weight: 400;
}

    .hosting-service-text a {
        text-decoration: underline;
        color: var(--white);
    }

.data-center-box-items {
    margin-top: 90px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .data-center-box-items {
        margin-top: 40px;
    }
}

.data-center-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px dashed var(--theme);
    border-radius: 20px;
    top: 15px;
    left: 20px;
    z-index: -1;
}

.data-center-box-items h3 {
    margin-bottom: 25px;
}

    .data-center-box-items h3 img {
        margin-right: 15px;
    }

.data-center-box-items ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

    .data-center-box-items ul li:not(:last-child) {
        margin-bottom: 7px;
    }

    .data-center-box-items ul li span {
        font-weight: 500;
        margin-right: 10px;
    }

.doming-card-items {
    margin-top: 30px;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    position: relative;
    z-index: 9;
}

    .doming-card-items .wing-shape {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
    }

        .doming-card-items .wing-shape img {
            width: 100%;
            height: 100%;
        }

    .doming-card-items .doming-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        position: relative;
        z-index: 9;
    }

        .doming-card-items .doming-header h6 {
            font-weight: 600;
            color: var(--theme);
        }

    .doming-card-items p {
        margin-top: 20px;
        margin-bottom: 30px;
        position: relative;
        z-index: 9;
    }

    .doming-card-items .theme-btn {
        border-radius: 10px;
        background-color: transparent;
        border: 1.5px solid var(--border);
        color: var(--text);
        padding: 15.5px 40px;
        z-index: 9;
    }

    .doming-card-items::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--theme);
        transform: scale(1, 0);
        transition: transform 500ms ease;
        transform-origin: bottom center;
        z-index: -1;
        border-radius: 16px;
    }

    .doming-card-items:hover::before {
        transform: scale(1, 1);
        transform-origin: top center;
    }

    .doming-card-items:hover .doming-header .tag {
        filter: brightness(0) invert(1);
    }

    .doming-card-items:hover .doming-header h6 {
        color: var(--white);
    }

    .doming-card-items:hover h4 {
        color: var(--white);
    }

    .doming-card-items:hover p {
        color: var(--white);
    }

    .doming-card-items:hover .theme-btn {
        background-color: var(--theme2);
        border: 1.5px solid var(--theme2);
        color: var(--white);
    }

        .doming-card-items:hover .theme-btn:hover {
            color: var(--header);
        }

            .doming-card-items:hover .theme-btn:hover::before {
                background-color: var(--white);
            }

.doming-list-items {
    margin-top: 30px;
    background-color: var(--bg);
    border-right: 1px solid var(--border);
    position: relative;
}

    .doming-list-items .top-text {
        font-size: 16px;
        color: var(--white);
        font-weight: 400;
        display: inline-block;
        padding: 10.8px 30px;
        text-align: center;
        position: relative;
        background-color: var(--theme);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
    }

        .doming-list-items .top-text::before {
            width: 0px;
            height: 0px;
            border-top: 35.5px solid var(--theme);
            border-right: 28px solid transparent;
            content: "";
            left: -13px;
            position: absolute;
            bottom: 10.5%;
            transform: rotate(-39deg);
        }

        .doming-list-items .top-text::after {
            width: 0;
            height: 0;
            border-top: 32.5px solid var(--theme);
            border-right: 32px solid transparent;
            content: "";
            right: -16px;
            position: absolute;
            bottom: 13.5%;
            transform: rotate(135deg);
        }

    .doming-list-items ul li {
        padding: 18px 35px;
        line-height: 1;
        border-top: 1px solid var(--border);
        font-size: 16px;
        font-weight: 500;
        color: var(--header);
        height: 60px;
    }

        .doming-list-items ul li del {
            color: var(--text);
        }

        .doming-list-items ul li.border-none {
            border-top: none;
        }

        .doming-list-items ul li.style-2 {
            padding: 21px 10px;
        }

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

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

.section-title span {
    color: var(--theme);
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
}

    .section-title span::before {
        position: absolute;
        top: 13px;
        right: -35px;
        content: "";
        width: 20px;
        height: 1.6px;
        background-color: var(--theme);
    }

    .section-title span.white-text {
        color: var(--white);
    }

        .section-title span.white-text::before {
            background-color: var(--white);
        }

    .section-title span.style-border::after {
        position: absolute;
        top: 13px;
        left: -35px;
        content: "";
        width: 20px;
        height: 1.6px;
        background-color: var(--theme);
    }

    .section-title span.style-border-white::after {
        position: absolute;
        top: 13px;
        left: -35px;
        content: "";
        width: 20px;
        height: 1.6px;
        background-color: var(--white);
    }

    .section-title span.style-border-white::before {
        position: absolute;
        top: 13px;
        right: -35px;
        content: "";
        width: 20px;
        height: 1.6px;
        background-color: var(--white);
    }

    .section-title span.style-bg {
        border-radius: 24px;
        background: rgba(56, 75, 255, 0.12);
        padding: 10px 20px;
        line-height: 1;
    }

        .section-title span.style-bg::before {
            display: none;
        }

    .section-title span.style-bg-2 {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 10px 20px;
        line-height: 1;
    }

        .section-title span.style-bg-2::before {
            display: none;
        }

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

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

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

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

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

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

.team-card-item {
    margin-top: 30px;
}

    .team-card-item .team-image img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }

    .team-card-item .team-content {
        margin: -70px 0 0px;
        padding: 50px 30px 40px 55px;
    }

        .team-card-item .team-content h5 {
            margin-bottom: 5px;
        }

            .team-card-item .team-content h5 a:hover {
                color: var(--theme);
            }

        .team-card-item .team-content .social-profile {
            position: absolute;
            right: 48px;
            top: -200px;
            content: "";
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            z-index: 2;
            display: inline-block;
            overflow: hidden;
        }

            .team-card-item .team-content .social-profile ul {
                transform: translateY(100px);
                transition: all 0.6s ease-in-out;
                opacity: 0;
                visibility: hidden;
            }

                .team-card-item .team-content .social-profile ul li:not(:last-child) {
                    margin-bottom: 10px;
                }

                .team-card-item .team-content .social-profile ul li a {
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    font-size: 16px;
                    border-radius: 50%;
                    display: block;
                    background: var(--white);
                    color: var(--theme);
                    -webkit-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                    text-align: center;
                    margin: 0 auto;
                }

                    .team-card-item .team-content .social-profile ul li a:hover {
                        background-color: var(--theme);
                        color: var(--white);
                    }

            .team-card-item .team-content .social-profile .plus-btn {
                z-index: 2;
                cursor: pointer;
                width: 40px;
                height: 40px;
                line-height: 40px;
                text-align: center;
                font-size: 16px;
                border-radius: 50%;
                display: inline-block;
                background: var(--theme);
                color: var(--white);
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                margin-top: 10px;
            }

            .team-card-item .team-content .social-profile:hover ul {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

.team-details-wrapper {
    margin-bottom: -10px;
}

    .team-details-wrapper .team-author-items {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 30px;
        border: 1px solid var(--border);
        border-radius: 12px;
    }

@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.team-details-wrapper .team-author-items .thumb {
    max-width: 370px;
}

    .team-details-wrapper .team-author-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

.team-details-wrapper .team-author-items .content {
    max-width: 850px;
}

    .team-details-wrapper .team-author-items .content h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

@media (max-width: 575px) {
    .team-details-wrapper .team-author-items .content h2 {
        font-size: 26px;
    }
}

.team-details-wrapper .team-author-items .content span {
    margin-bottom: 20px;
    display: inline-block;
}

@media (max-width: 575px) {
    .team-details-wrapper .team-author-items .content span {
        margin-bottom: 10px;
    }
}

.team-details-wrapper .team-author-items .content ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items .content ul {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
        justify-content: center;
    }
}

.team-details-wrapper .team-author-items .content ul li {
    color: var(--header);
}

    .team-details-wrapper .team-author-items .content ul li b {
        color: var(--theme);
    }

    .team-details-wrapper .team-author-items .content ul li .color-star {
        color: var(--theme);
    }

.team-details-wrapper .team-author-items .content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

    .team-details-wrapper .team-author-items .content .social-icon span {
        font-weight: 500;
        margin-bottom: 0;
        margin-right: 25px;
        color: var(--theme);
    }

@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items .content .social-icon {
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-author-items .content .social-icon {
        margin-top: 20px;
    }
}

.team-details-wrapper .team-author-items .content .social-icon a {
    color: var(--header);
}

    .team-details-wrapper .team-author-items .content .social-icon a:hover {
        color: var(--theme);
    }

.team-details-wrapper .details-info-items {
    padding: 80px 0 0;
}

@media (max-width: 767px) {
    .team-details-wrapper .details-info-items {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .details-info-items {
        padding: 40px 0;
    }
}

.team-details-wrapper .details-info-items .info-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.team-details-wrapper .details-info-items .progress-wrap {
    margin-left: 30px;
}

@media (max-width: 991px) {
    .team-details-wrapper .details-info-items .progress-wrap {
        margin-left: 0;
    }
}

.team-details-wrapper .details-info-items .progress-wrap .pro-items {
    width: 100%;
}

    .team-details-wrapper .details-info-items .progress-wrap .pro-items:not(:last-child) {
        margin-bottom: 20px;
    }

    .team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .title {
            font-size: 16px;
            color: var(--header);
        }

        .team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .point {
            font-size: 16px;
            color: var(--header);
        }

    .team-details-wrapper .details-info-items .progress-wrap .pro-items .progress {
        background: var(--bg);
        justify-content: flex-start;
        border-radius: 100px;
        align-items: center;
        position: relative;
        display: flex;
        height: 8px;
        width: 100%;
    }

    .team-details-wrapper .details-info-items .progress-wrap .pro-items .progress-value {
        animation: load 3s normal forwards;
        border-radius: 0;
        background: var(--theme);
        height: 8px;
        width: 0;
    }

    .team-details-wrapper .details-info-items .progress-wrap .pro-items .style-two {
        animation: load2 3s normal forwards;
    }

    .team-details-wrapper .details-info-items .progress-wrap .pro-items .style-three {
        animation: load3 3s normal forwards;
    }

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

    100% {
        width: 90%;
    }
}

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

    100% {
        width: 70%;
    }
}

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

    100% {
        width: 55%;
    }
}

.team-section-details .section-title-area {
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .team-section-details .section-title-area {
        margin-bottom: 0;
    }
}

.team-section-details .section-title-area .arry-button {
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 9;
}

@media (max-width: 991px) {
    .team-section-details .section-title-area .arry-button {
        display: none;
    }
}

.team-section-details .section-title-area .arry-button .array-prev, .team-section-details .section-title-area .arry-button .array-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.team-section-details .section-title-area .arry-button .array-prev {
    background-color: transparent;
    color: var(--header);
    border: 1px solid var(--border);
}

    .team-section-details .section-title-area .arry-button .array-prev:hover {
        background-color: var(--theme);
        color: var(--white);
    }

.team-section-details .section-title-area .arry-button .array-next {
    background-color: var(--theme);
    color: var(--white);
}

    .team-section-details .section-title-area .arry-button .array-next:hover {
        background-color: var(--header);
        color: var(--white);
    }

.testimonial-card-items {
    position: relative;
    padding: 40px;
    z-index: 9;
}

@media (max-width: 1399px) {
    .testimonial-card-items {
        margin-bottom: 1px;
    }
}

@media (max-width: 1199px) {
    .testimonial-card-items {
        margin-bottom: 0;
    }
}

.testimonial-card-items .star {
    color: var(--theme2);
    position: absolute;
    right: 40px;
    top: 33%;
}

.testimonial-card-items .icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.testimonial-card-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 0px 50px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.15);
    top: 91px;
    height: initial;
    z-index: -1;
}

.testimonial-card-items .client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
}

    .testimonial-card-items .client-image .circle-shape {
        position: absolute;
        top: 23%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

.testimonial-card-items p {
    color: var(--white);
    margin-top: 15px;
}

.testimonial-card-items .client-info {
    margin-top: 20px;
}

    .testimonial-card-items .client-info h4 {
        color: var(--white);
        margin-bottom: 5px;
    }

    .testimonial-card-items .client-info span {
        color: var(--white);
    }

.tesimonial-wrapper {
    margin-right: -31%;
}

@media (max-width: 1199px) {
    .tesimonial-wrapper {
        margin-right: 0;
    }
}

.testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items {
    background-color: var(--theme);
}

    .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items .pngwing-shape {
        opacity: 1;
        visibility: visible;
    }

    .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items .icon {
        color: var(--white);
        opacity: 1;
    }

    .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items p {
        color: var(--white);
    }

    .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items .client-info .content h4, .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-box-items .client-info .content span {
        color: var(--white);
    }

.testimonial-box-items {
    padding: 50px 35px;
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 12px;
    position: relative;
    z-index: 9;
}

    .testimonial-box-items .pngwing-shape {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
    }

    .testimonial-box-items .icon {
        position: absolute;
        right: 35px;
        bottom: 55px;
        color: var(--theme);
        opacity: 0.3;
        font-size: 55px;
    }

    .testimonial-box-items .star {
        color: var(--theme2);
        margin-bottom: 15px;
    }

    .testimonial-box-items p {
        font-size: 18px;
    }

    .testimonial-box-items .client-info {
        margin-top: 30px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .testimonial-box-items .client-info .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

.testimonial-wrapper-2 {
    position: relative;
    margin-top: 150px;
}

    .testimonial-wrapper-2 .arry-button {
        display: flex;
        align-items: center;
        gap: 6px;
        position: absolute;
        bottom: 25%;
        left: 40%;
        transform: translateX(-50%);
        z-index: 9;
    }

@media (max-width: 991px) {
    .testimonial-wrapper-2 .arry-button {
        display: none;
    }
}

.testimonial-wrapper-2 .arry-button .array-prev, .testimonial-wrapper-2 .arry-button .array-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .arry-button .array-prev {
    background-color: var(--theme);
    color: var(--white);
}

    .testimonial-wrapper-2 .arry-button .array-prev:hover {
        background-color: var(--header);
    }

.testimonial-wrapper-2 .arry-button .array-next {
    background-color: #EBF1FF;
    color: var(--header);
}

    .testimonial-wrapper-2 .arry-button .array-next:hover {
        background-color: var(--theme);
        color: var(--white);
    }

.testimonial-wrapper-2 .testimonial-box-items-2 {
    padding: 80px 45px;
    background-color: var(--white);
    border-radius: 20px;
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .testimonial-box-items-2 {
        padding: 60px 45px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-box-items-2 {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper-2 .testimonial-box-items-2 {
        padding: 40px 30px;
    }
}

.testimonial-wrapper-2 .testimonial-box-items-2 .icon {
    font-size: 45px;
    color: var(--theme);
    margin-bottom: 20px;
}

.testimonial-wrapper-2 .testimonial-box-items-2 .client-info {
    margin-top: 30px;
}

    .testimonial-wrapper-2 .testimonial-box-items-2 .client-info span {
        color: #808080;
    }

.testimonial-wrapper-2 .testimonial-box-items-2 .star {
    margin-top: 30px;
    color: #00B67A;
}

@media (max-width: 575px) {
    .testimonial-wrapper-2 .testimonial-box-items-2 .star {
        margin-top: 20px;
    }
}

.testimonial-wrapper-2 .testimonial-box-items-2 .star span {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    color: var(--text);
}

.testimonial-wrapper-2 .testimonial-image img {
    width: 100%;
    height: 100%;
}

.testimonial-card-items-2 {
    margin-top: 30px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 40px 35px;
    position: relative;
    margin-bottom: 60px;
}

    .testimonial-card-items-2 .icon {
        position: absolute;
        right: 35px;
        top: 45px;
        color: var(--theme);
        opacity: 0.3;
        font-size: 45px;
    }

    .testimonial-card-items-2 .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

        .testimonial-card-items-2 .client-info .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

    .testimonial-card-items-2 p {
        font-size: 18px;
    }

    .testimonial-card-items-2 .client-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

        .testimonial-card-items-2 .client-bottom .star {
            color: var(--theme2);
        }

.testimonial-click-text {
    padding: 6px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    margin: 0 auto;
}

    .testimonial-click-text p {
        font-size: 17px;
        padding-left: 24px;
    }

    .testimonial-click-text a {
        display: inline-block;
        background-color: var(--theme);
        color: var(--white);
        padding: 15px 16px;
        line-height: 1;
        border-radius: 4px;
        margin-right: 10px;
    }

        .testimonial-click-text a:hover {
            background-color: var(--theme2);
        }
/*# sourceMappingURL=main.css.map */


.news-card-items h3 {
    font-size: 1.1rem;
    min-height: 2rem;
    border-bottom: none !important;
}


.header-logo img, .header-logo-2 img {
    width: 65px;
}

.newsbox ul {
    list-style: inherit;
    padding-right: 25px;
}