﻿
:root {
    --theme-color: #ff681a;
    --theme-color2: #37d4d9;
    --secondary-color: #111330;
    --title-color: #1c1c1c;
    --body-color: #505050;
    --smoke-color: #f7f7f7;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ffccb1;
    --bg-color1: #fff5f0;
    --bg-color2: #f5f5f5;
    --title-font: "Jost", sans-serif;
    --body-font: "Jost", sans-serif;
    --icon-font: "Font Awesome 5 Pro";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 80px;
    --ripple-ani-duration: 5s;
}




/*------------------- 3.10. Animation -------------------*/
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
    animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
    --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
    --jump-y: -20px;
}

.rotate-reverse-img,
.rotate-img,
.rotate-reverse,
.rotate {
    animation: rotate var(--duration, 12s) infinite linear;
}

.rotate-reverse-img,
.rotate-img {
    --duration: 40s;
}

.rotate-reverse {
    --rotate-angle: -360deg;
}

.spin {
    animation: spin var(--duration, 40s) infinite linear;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.wow-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadein {
    --animation-name: fadein-custom;
}

.slideinup {
    --animation-name: slideinup;
}

.slideindown {
    --animation-name: slideindown;
}

.slideinleft {
    --animation-name: slideinleft;
}

.slideinright {
    --animation-name: slideinright;
}

.animated {
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
}

.ripple-animation, .play-btn:after, .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

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

    50% {
        opacity: 0.8;
    }

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

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

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

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

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

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

@keyframes fadein-custom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes jumpping {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    40% {
        transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    }
}

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

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

@keyframes leftToRight {
    0%, 100% {
        left: 0px;
    }

    50% {
        left: 56px;
    }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.price_slider_wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
}

    .price_slider_wrapper .ui-slider {
        height: 8px;
        position: relative;
        width: 100%;
        background-color: var(--border-color);
        border: none;
        margin-top: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        border-radius: 3px;
    }

    .price_slider_wrapper .ui-slider-handle {
        width: 20px;
        height: 20px;
        outline: none;
        border-radius: 50%;
        text-align: center;
        line-height: 10.5px;
        padding: 0;
        border: 5px solid var(--theme-color);
        cursor: pointer;
        position: absolute;
        z-index: 2;
        margin-top: -1px;
        background-color: var(--border-color);
        transform: translateX(8px);
    }

    .price_slider_wrapper .ui-slider-range {
        border: none;
        cursor: pointer;
        position: absolute;
        top: 0;
        height: 100%;
        z-index: 1;
        display: block;
        background-color: var(--theme-color);
    }

    .price_slider_wrapper .price_label {
        font-size: 14px;
        font-weight: 400;
        margin-right: 15px;
    }

    .price_slider_wrapper .vs-btn {
        padding: 13px 20px;
        background-color: var(--border-color);
        color: var(--theme-color);
    }

        .price_slider_wrapper .vs-btn:hover {
            color: var(--white-color);
        }

    .price_slider_wrapper .price_footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.chekbox-area {
    margin-bottom: 5px;
}

.countdown-style1 li:last-child {
    margin-right: 0;
}

    .countdown-style1 li:last-child::before {
        display: none;
    }

.header-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-contact li {
        display: inline-block;
    }

        .header-contact li i {
            width: 40px;
            height: 40px;
            margin-right: 5px;
            border-radius: 50%;
            color: var(--theme-color);
            transition: all ease 0.5s;
            background-color: var(--white-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .header-contact li a {
            color: var(--white-color);
            margin-right: 15px;
        }

            .header-contact li a:hover {
                color: var(--theme-color);
            }

        .header-contact li:last-child a {
            margin-right: 0;
        }

        .header-contact li:hover i {
            color: var(--white-color);
            background-color: var(--theme-color);
        }

.header-social a {
    display: inline-block;
    color: var(--white-color);
    line-height: 1;
    margin-right: 15px;
}

    .header-social a:hover {
        color: var(--theme-color);
    }

    .header-social a:last-child a {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

.header-btns a,
.header-btns button {
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    position: relative;
    background-color: var(--theme-color);
    display: inline-block;
}

    .header-btns a:hover,
    .header-btns button:hover {
        background-color: var(--theme-color2);
    }

        .header-btns a:hover .button-badge,
        .header-btns button:hover .button-badge {
            background-color: var(--theme-color);
        }

    .header-btns a:last-child,
    .header-btns button:last-child {
        margin-right: 0;
    }

.button-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
    overflow: hidden;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--theme-color2);
    font-family: var(--body-font);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

.vs-header .form-select {
    background-color: var(--theme-color);
    background-position: right 15px center;
    font-size: 16px;
    padding: 0 40px 0 15px;
    margin-left: 15px;
    position: relative;
    border: 0px;
    border-radius: 0;
    width: unset;
    color: var(--white-color);
    height: 60px;
}

    .vs-header .form-select::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--theme-color);
        position: absolute;
        top: 0;
        left: 0;
    }

    .vs-header .form-select option {
        background-color: var(--white-color);
        color: var(--black-color);
    }

.vs-header .user-btn {
    padding: 17px 22px;
    color: var(--white-color);
    background-color: var(--theme-color2);
    transition: 0.5s ease all;
}

    .vs-header .user-btn:hover {
        background-color: var(--theme-color);
    }

.vs-header .sticky-wrapper {
    background-color: var(--white-color);
}

    .vs-header .sticky-wrapper .header-btns ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .vs-header .sticky-wrapper .header-btns ul li {
            display: inline-block;
        }

.header-dropdown .dropdown-toggle {
    background-color: var(--theme-color);
    background-position: right 15px center;
    font-size: 16px;
    transition: all ease 0.5s;
    padding: 0 25px;
    margin-left: 15px;
    position: relative;
    border: 0px;
    border-radius: 0;
    width: unset;
    color: var(--white-color);
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-dropdown ul.dropdown-menu {
    padding: 10px 15px;
    margin: 0;
    width: -moz-max-content;
    width: max-content;
    min-width: auto;
    position: relative;
    z-index: 9;
    border: none;
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .header-dropdown ul.dropdown-menu a {
        display: block;
        margin: 0 0;
        width: -moz-max-content;
        width: max-content;
        padding: 2px 10px;
        color: var(--title-color);
        font-weight: 400;
        font-size: 14px;
    }

.header-dropdown:hover .dropdown-toggle {
    background-color: var(--theme-color2);
}

.header-layout1 {
    background-color: var(--title-color);
}

.header-layout2 .header-top {
    padding: 10px 0 65px 0;
    background-color: var(--theme-color);
}

.header-layout2 .header-contact li i {
    background-color: var(--white-color);
    color: var(--theme-color);
    transition: 0.5s ease-in-out;
}

.header-layout2 .header-contact li:hover i {
    background-color: var(--theme-color2);
    color: var(--white-color);
}

.header-layout2 .vs-btn {
    padding: 11px 24px;
    font-weight: 400;
}

.header-layout2 .sticky-wrapper {
    background-color: transparent;
    margin-top: -55px;
}

    .header-layout2 .sticky-wrapper .container {
        background-color: var(--white-color);
    }

    .header-layout2 .sticky-wrapper .active .container {
        margin-top: 0;
    }

.header-layout2 .header-social a:hover,
.header-layout2 .header-contact a:hover {
    color: var(--theme-color2);
}

.header-layout3 {
    background-color: var(--theme-color);
}

    .header-layout3 .header-contact li i {
        background-color: var(--white-color);
        color: var(--title-color);
    }

    .header-layout3 .header-contact li:hover i {
        background-color: var(--theme-color2);
        color: var(--white-color);
    }

    .header-layout3 .form-select {
        background-color: var(--white-color);
        color: var(--title-color);
    }

    .header-layout3 .header-social a:hover,
    .header-layout3 .header-contact a:hover {
        color: var(--theme-color2);
    }

.menu-style1 > ul > li {
    padding: 47px 0;
}

    .menu-style1 > ul > li > a {
        padding: 0;
    }

.header-btns a,
.header-btns button {
    margin-right: 15px;
}

    .header-btns a:last-child,
    .header-btns button:last-child {
        margin-right: 0;
    }

/* Small devices */
@media (max-width: 767px) {
    .vs-header .user-btn {
        padding: 10px 15px;
    }

    .vs-header .form-select {
        margin-left: 0;
        padding-left: 10px;
        padding-right: 32px;
    }

    .header-dropdown .dropdown-toggle {
        height: 46px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
/*------------------- 4.3. Footer  -------------------*/
.footer-menu > ul li {
    padding-left: 25px;
    position: relative;
}

    .footer-menu > ul li i {
        position: absolute;
        left: 0;
        top: 1px;
    }

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

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

.footer-layout1,
.footer-layout4,
.footer-layout5 {
    --body-color: #ffffff;
}

    .footer-layout1 .social-style,
    .footer-layout4 .social-style,
    .footer-layout5 .social-style {
        margin-top: 24px;
    }

    .footer-layout1 .form-group,
    .footer-layout4 .form-group,
    .footer-layout5 .form-group {
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid var(--theme-color);
        border-radius: 10px;
    }

        .footer-layout1 .form-group .form-control,
        .footer-layout4 .form-group .form-control,
        .footer-layout5 .form-group .form-control {
            border: none;
            margin: 5px;
            color: var(--white-color);
            padding-right: 15px;
            background-color: transparent;
        }

        .footer-layout1 .form-group .vs-btn,
        .footer-layout4 .form-group .vs-btn,
        .footer-layout5 .form-group .vs-btn {
            margin: 5px;
            overflow: unset;
            display: inline-block;
        }

    .footer-layout1 .footer-widget.widget_nav_menu,
    .footer-layout4 .footer-widget.widget_nav_menu,
    .footer-layout5 .footer-widget.widget_nav_menu {
        margin-bottom: 0px;
    }

.footer-insta-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-style a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
}

    .social-style a:hover {
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

    .social-style a:last-child {
        margin-right: 0;
    }

.copyright-wrap {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.copyright-menu ul {
    margin: 0;
}

.copyright-menu li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

    .copyright-menu li::after {
        content: "";
        width: 1px;
        height: 50%;
        background-color: var(--theme-color);
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .copyright-menu li:last-child {
        margin-right: 0;
    }

        .copyright-menu li:last-child::after {
            display: none;
        }

.copyright-menu a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}

    .copyright-menu a:hover {
        color: var(--theme-color);
    }

.copyright-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

    .copyright-text a {
        color: var(--theme-color);
    }

        .copyright-text a:hover {
            color: var(--theme-color);
            text-decoration: underline;
        }

.cta-style1 {
    position: relative;
    background-color: var(--theme-color);
    padding: 0 60px;
    border-radius: 10px;
}

    .cta-style1 .cta-title {
        color: var(--white-color);
    }

.footer-top {
    position: relative;
}

    .footer-top .shadow-color {
        height: 50%;
        bottom: unset;
        top: 0;
    }

.footer-top2 .shadow-color {
    background-color: var(--smoke-color);
}

.cta-image {
    margin-bottom: -15px;
    margin-top: -20px;
}

.footer-newsletter2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.newsletter-style2 {
    margin-bottom: 30px;
    padding-left: 100px;
    position: relative;
    min-height: 80px;
}

    .newsletter-style2 .newsletter-img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .newsletter-style2 .newsletter-text {
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 5px;
        padding-top: 7px;
    }

/* Large devices */
@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 60px;
    }

        .footer-widget .widget_title {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .footer-widget.widget_nav_menu .widget_title {
            margin-bottom: 25px;
        }

        .footer-widget.widget_nav_menu a {
            font-size: 16px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .widget-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-widget .widget_title {
        font-size: 22px;
    }

    .copyright-text {
        font-size: 14px;
    }

    .footer-top::before {
        height: 100px;
    }

    .cta-style1 {
        padding: 30px;
        text-align: center;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .footer-top::before {
        height: 130px;
    }

    .cta-style1 {
        padding: 30px 15px;
    }

    .newsletter-style2 {
        padding-left: 85px;
    }

        .newsletter-style2 .newsletter-img img {
            width: 60px;
        }

        .newsletter-style2 .newsletter-text {
            font-size: 20px;
        }

        .newsletter-style2 a {
            font-size: 14px;
        }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
    max-width: 100%;
    margin: 0 0 0 0;
    padding: 16.5px 0;
    list-style-type: none;
}

    .breadcumb-menu li {
        display: inline;
        list-style: none;
        position: relative;
    }

        .breadcumb-menu li:after {
            content: "/";
            position: relative;
            margin-left: 14px;
            margin-right: 10px;
        }

        .breadcumb-menu li:last-child {
            padding-right: 0;
            margin-right: 0;
        }

            .breadcumb-menu li:last-child:after {
                display: none;
            }

    .breadcumb-menu li,
    .breadcumb-menu a,
    .breadcumb-menu span {
        white-space: normal;
        word-break: break-word;
        font-weight: 400;
        font-size: 18px;
        color: var(--white-color);
    }

        .breadcumb-menu li > i,
        .breadcumb-menu a > i,
        .breadcumb-menu span > i {
            margin-right: 10px;
        }

        .breadcumb-menu a:hover {
            color: var(--theme-color);
        }

.breadcumb-title {
    font-size: 48px;
    color: var(--white-color);
    margin: 0 0 -5px 0;
}

.breadcumb-wrapper {
    padding-top: 180px;
    padding-bottom: 180px;
    background-color: var(--title-color);
    /* Medium devices */
}

@media (max-width: 991px) {
    .breadcumb-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Large devices */
@media (max-width: 1199px) {
    .breadcumb-title {
        font-size: 48px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .breadcumb-title {
        font-size: 40px;
        margin: -0.15em 0 -0.4em 0;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .breadcumb-title {
        font-size: 36px;
    }

    .breadcumb-menu li,
    .breadcumb-menu a,
    .breadcumb-menu span {
        font-size: 14px;
    }

        .breadcumb-menu li:after {
            margin-left: 11px;
            margin-right: 9px;
        }
}
/*------------------- 4.5. Pagination  -------------------*/
.vs-pagination {
    text-align: center;
    margin-bottom: 30px;
}

    .vs-pagination ul {
        margin: 0;
        padding: 0;
    }

    .vs-pagination li {
        display: inline-block;
        margin: 0 3px;
        list-style-type: none;
    }

        .vs-pagination li:last-child {
            margin-right: 0;
        }

        .vs-pagination li:first-child {
            margin-left: 0;
        }

    .vs-pagination span,
    .vs-pagination a {
        display: inline-block;
        text-align: center;
        position: relative;
        font-family: var(--body-font);
        color: var(--title-color);
        background-color: var(--white-color);
        width: 50px;
        height: 50px;
        line-height: 52px;
        font-weight: 400;
        padding: 0;
        font-size: 16px;
        z-index: 1;
        border-radius: 6px;
        vertical-align: middle;
        border: 1px solid var(--border-color);
    }

        .vs-pagination span.active, .vs-pagination span:hover,
        .vs-pagination a.active,
        .vs-pagination a:hover {
            color: var(--white-color);
            background-color: var(--theme-color);
            box-shadow: none;
        }

.post-pagination {
    border-bottom: 1px solid var(--border-color);
    margin: 0 0 50px 0;
}

    .post-pagination .pagi-icon {
        font-size: 36px;
        color: var(--border-color);
    }

        .post-pagination .pagi-icon:hover {
            color: var(--theme-color);
        }

.post-pagi-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0px;
}

    .post-pagi-box > img {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 54px;
        text-align: center;
        color: var(--title-color);
        overflow: hidden;
        background-color: var(--smoke-color);
        border-radius: 10px;
    }

        .post-pagi-box > img:hover {
            background-color: var(--theme-color);
            color: var(--white-color);
        }

    .post-pagi-box .pagi-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--title-color);
        margin: 4.5px 0 0 0;
        max-width: 250px;
        flex: 1;
    }

        .post-pagi-box .pagi-title:hover {
            color: var(--theme-color);
        }

    .post-pagi-box.next {
        flex-direction: row-reverse;
        text-align: right;
    }

/* Medium Large devices */
@media (max-width: 1399px) {
    .post-pagination {
        margin: 0px 0 40px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .vs-pagination span,
    .vs-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        padding: 0 10px;
        vertical-align: middle;
    }

        .vs-pagination span i,
        .vs-pagination a i {
            vertical-align: middle;
        }

    .post-pagi-box {
        display: block;
        padding: 30px 20px 20px;
    }

        .post-pagi-box > a {
            margin-bottom: 10px;
        }
}
/*------------------- 4.6. Blog  -------------------*/
.vs-blockquote {
    display: block;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--title-color);
    background-color: var(--quote-bg, #f0f4f5);
    border-left: 4px solid var(--theme-color);
    padding: 43px 50px 42px 35px;
    margin: 35px 0;
}

    .vs-blockquote p {
        font-family: inherit;
        margin-bottom: 0 !important;
        line-height: 1.5;
        color: inherit;
        width: 100%;
        position: relative;
        z-index: 3;
        font-style: italic;
    }

    .vs-blockquote:before {
        content: "\f10e";
        font-family: var(--icon-font);
        font-size: 6.5rem;
        font-weight: 900;
        line-height: 1;
        color: var(--border-color);
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .vs-blockquote p {
        margin-bottom: 0;
    }

        .vs-blockquote p a {
            color: inherit;
        }

    .vs-blockquote cite {
        display: inline-block;
        font-size: 20px;
        position: relative;
        padding-left: 45px;
        line-height: 1;
        font-weight: 600;
        margin-top: 22px;
        font-style: normal;
        color: var(--title-color);
    }

        .vs-blockquote cite:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 8px;
            width: 30px;
            height: 2px;
            border-top: 2px solid var(--theme-color);
        }

.vs-quote {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-weight: 700;
    line-height: 36px;
    font-size: 22px;
    padding: 50px 60px 49px 150px;
    border-radius: 5px;
}

    .vs-quote:before {
        background-color: var(--theme-color2);
        height: 100%;
        right: auto;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 115px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        content: "\f10d";
        color: var(--white-color);
    }

    .vs-quote p {
        font-style: normal;
    }

.blog-meta span,
.blog-meta a {
    display: inline-block;
    margin-right: 18px;
    font-size: 16px;
    color: var(--title-color);
}

    .blog-meta span i,
    .blog-meta a i {
        margin-right: 4px;
    }

    .blog-meta span:last-child,
    .blog-meta a:last-child {
        margin-right: 0;
    }

    .blog-meta a:hover {
        color: var(--theme-color);
    }

.blog-category a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 21px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--white-color);
    background-color: var(--theme-color2);
    display: inline-block;
}

    .blog-category a:hover {
        background-color: var(--theme-color);
        color: var(--white-color);
    }

.blog-category {
    margin-bottom: -10px;
    margin-right: -10px;
}

.blog-title a {
    color: inherit;
}

    .blog-title a:hover {
        color: var(--theme-color);
    }

.vs-blog {
    margin-bottom: 30px;
}

.vs-blog-details .blog-single {
    border: none;
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .vs-blog-details .blog-single .blog-content {
        margin-top: 25px;
    }

    .vs-blog-details .blog-single .blog-title {
        margin-bottom: 15px;
    }

.vs-blog-details .blog-meta {
    margin-bottom: 18px;
}

    .vs-blog-details .blog-meta span,
    .vs-blog-details .blog-meta a {
        margin-bottom: 10px;
    }

        .vs-blog-details .blog-meta span i,
        .vs-blog-details .blog-meta a i {
            color: var(--theme-color);
            margin-right: 10px;
        }

.vs-blog-details .blog-inner-img {
    margin-bottom: 20px;
}

    .vs-blog-details .blog-inner-img img {
        border-radius: 10px;
    }

.blog-author {
    display: flex;
    align-items: center;
    background-color: var(--theme-color);
    --body-color: #fff;
    --title-color: #fff;
    padding: 40px;
    margin: 50px 0;
}

    .blog-author .media-img {
        width: 160px;
        height: 160px;
        margin-right: 25px;
        border-radius: 50%;
    }

        .blog-author .media-img img {
            border-radius: inherit;
        }

    .blog-author .author-name {
        margin-bottom: 10px;
        margin-right: 25px;
        display: inline-block;
        color: var(--white-color);
    }

    .blog-author .author-links {
        display: inline-block;
    }

        .blog-author .author-links ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

        .blog-author .author-links li {
            display: inline-block;
        }

            .blog-author .author-links li:not(:first-child):before {
                content: "";
                width: 1px;
                height: 15px;
                background-color: var(--white-color);
                display: inline-block;
                vertical-align: middle;
                margin: 0 15px 0 10px;
                top: -1px;
                position: relative;
                opacity: 0.5;
            }

        .blog-author .author-links a {
            display: inline-block;
            color: var(--white-color);
            font-size: 16px;
        }

            .blog-author .author-links a:hover {
                color: var(--theme-color);
            }

.blog-inner-title {
    margin: -0.04em 0 40px 0;
    width: max-content;
    line-height: 1;
    font-size: 36px;
    font-weight: 700;
}

.blog-inner-author {
    --theme-color: #ffffff;
    padding: 28px 20px 20px 20px;
    display: inline-block;
    border-radius: 0px 10px 10px 0px;
    background-color: rgba(28, 28, 28, 0.8);
    padding-left: 100px;
    min-height: 100px;
}

    .blog-inner-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--smoke-color);
    }

    .blog-inner-author .author-name {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: var(--white-color);
    }

    .blog-inner-author .author-degi,
    .blog-inner-author .blog-date {
        color: var(--theme-color);
        font-size: 14px;
        font-weight: 400;
    }

.share-links-title {
    font-size: 18px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 600;
    margin: 0 15px 0 0;
    display: inline-block;
}

.share-links {
    margin: 50px 0 0px 0;
    padding: 50px 0px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

    .share-links .row {
        align-items: center;
    }

    .share-links .tagcloud {
        display: inline-block;
    }

        .share-links .tagcloud a {
            color: var(--body-color);
            background-color: var(--smoke-color);
            font-weight: 400;
        }

            .share-links .tagcloud a:hover {
                color: var(--white-color);
                background-color: var(--theme-color);
            }

    .share-links .social-links {
        display: inline-block;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .share-links .social-links li {
            display: inline-block;
            margin-right: 4px;
        }

            .share-links .social-links li:last-child {
                margin-right: 0;
            }

        .share-links .social-links a {
            width: 46px;
            height: 46px;
            line-height: 46px;
            font-size: 16px;
            color: var(--body-color);
            text-align: center;
            display: block;
            background-color: var(--smoke-color);
            border-radius: 50%;
        }

            .share-links .social-links a:hover {
                color: var(--white-color);
                background-color: var(--theme-color);
            }

.post-pagi-box img {
    border-radius: 10px;
}

.blog-single {
    margin-bottom: 60px;
    padding: 40px 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

    .blog-single .blog-img {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .blog-single .blog-inner-author {
        position: absolute;
        left: 0;
        bottom: 60px;
    }

    .blog-single .blog-content {
        padding: 0;
        position: relative;
    }

    .blog-single .blog-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .blog-single .blog-date {
        color: var(--body-color);
    }

        .blog-single .blog-date i {
            margin-right: 4px;
        }

        .blog-single .blog-date:hover {
            color: var(--theme-color);
        }

    .blog-single .blog-bottom {
        margin-top: 40px;
        padding: 40px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color);
    }

    .blog-single .blog-meta {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .blog-single .blog-meta li {
            display: inline-block;
            position: relative;
            margin-right: 20px;
        }

            .blog-single .blog-meta li::before {
                content: "";
                width: 1px;
                height: 70%;
                background-color: var(--title-color);
                opacity: 0.5;
                position: absolute;
                left: -14px;
                top: 50%;
                transform: translateY(-50%);
            }

            .blog-single .blog-meta li:first-child::before {
                content: none;
            }

    .blog-single .play-btn {
        position: absolute;
        top: 10%;
        right: 10%;
    }

        .blog-single .play-btn i {
            color: var(--white-color);
        }

.blog-style2 {
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: var(--smoke-color);
    padding: 30px 24px;
}

    .blog-style2 .blog-img {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 40px;
        background-color: var(--smoke-color);
    }

    .blog-style2 .blog-inner-author {
        position: absolute;
        left: 0;
        bottom: 30px;
    }

        .blog-style2 .blog-inner-author .author-name {
            font-size: 16px;
        }

    .blog-style2 .blog-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .blog-style2 .blog-date {
        color: var(--body-color);
    }

        .blog-style2 .blog-date i {
            margin-right: 5px;
        }

        .blog-style2 .blog-date:hover {
            color: var(--theme-color);
        }

    .blog-style2 .blog-bottom {
        padding: 30px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color);
    }

    .blog-style2 .vs-btn {
        padding: 16px 20px;
        font-size: 14px;
    }

.blog-style3 {
    border: none;
    box-shadow: 0px 0px 15px rgba(255, 104, 26, 0.15);
    padding: 30px 24px;
    border-radius: 10px;
}

    .blog-style3 .blog-img {
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 24px;
    }

        .blog-style3 .blog-img img {
            transition: 0.5s ease-in-out;
        }

    .blog-style3 .blog-title {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .blog-style3 .blog-text {
        margin-bottom: 15px;
    }

    .blog-style3 .vs-btn {
        padding: 16px 20px;
        font-size: 14px;
        margin-left: 4px;
    }

        .blog-style3 .vs-btn i {
            margin-left: 4px;
        }

    .blog-style3 .blog-bottom {
        margin-top: 0;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .blog-style3 .blog-date {
        margin-right: 4px;
    }

        .blog-style3 .blog-date i {
            margin-right: 4px;
        }

    .blog-style3:hover .blog-img img {
        transform: scale(1.1);
    }

.blog-style4 {
    display: flex;
    align-items: center;
}

    .blog-style4 .blog-image {
        position: relative;
        border-radius: 10px;
    }

        .blog-style4 .blog-image img {
            border-radius: 10px;
        }

    .blog-style4 .category-tag a {
        background-color: var(--white-color);
        color: var(--theme-color);
        padding: 18px 44px 16px;
        border-radius: 0 10px 10px 0;
        font-size: 14px;
        font-weight: 700;
        position: absolute;
        left: 0;
        top: 80px;
    }

        .blog-style4 .category-tag a i {
            margin-right: 4px;
        }

    .blog-style4 .blog-content {
        border: 1px solid var(--border-color);
        background-color: var(--white-color);
        position: relative;
        margin-left: -100px;
        padding: 40px;
        max-width: 615px;
        border-radius: 10px;
    }

    .blog-style4 .blog-text {
        font-size: 16px;
        max-width: 475px;
    }

    .blog-style4 .blog-date {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 700;
        color: var(--theme-color);
        background-color: unset;
        padding: 0;
    }

        .blog-style4 .blog-date i {
            margin-right: 4px;
        }

    .blog-style4:nth-child(odd) {
        margin: 60px 0 30px 0;
    }

        .blog-style4:nth-child(odd) .blog-image {
            order: 2;
        }

        .blog-style4:nth-child(odd) .category-tag a {
            right: 0;
            left: unset;
            border-radius: 10px 0 0 10px;
        }

        .blog-style4:nth-child(odd) .blog-content {
            margin-right: -100px;
            margin-left: unset;
            z-index: 2;
        }

.blog-wrapper .vs-carousel {
    margin-top: -10px;
}

.blog-wrapper .blog-style3 {
    margin-top: 10px;
}

.blog-wrapper1 .title-area {
    padding-top: 50px;
}

/* Large devices */
@media (max-width: 1199px) {
    .blog-style4 .blog-date {
        font-size: 16px;
    }

    .blog-style4 .blog-title {
        font-size: 20px;
    }

    .share-links-title {
        font-size: 16px;
    }

    .wp-block-tag-cloud a,
    .tagcloud a {
        padding: 10px;
    }

    .share-links .social-links a {
        font-size: 14px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .blog-single .blog-meta li:last-child {
        display: none;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .blog-style3 {
        padding: 30px 15px;
    }

        .blog-style3 .blog-date {
            font-size: 14px;
        }

        .blog-style3 .vs-btn {
            padding: 12px 16px;
            font-size: 13px;
        }

    .blog-style4 {
        display: block;
    }

        .blog-style4 .blog-content {
            margin: 30px 0 0 0;
            max-width: 100%;
        }

    .blog-wrapper1 .title-area {
        padding-top: 0px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .blog-inner-author {
        min-height: unset;
        padding: 15px 13px 15px 75px;
    }

        .blog-inner-author .author-name {
            font-size: 14px;
        }

        .blog-inner-author .author-degi {
            font-size: 10px;
        }

        .blog-inner-author img {
            width: 50px;
            height: 50px;
            left: 15px;
        }

    .blog-single {
        padding: 20px;
        margin-bottom: 30px;
    }

        .blog-single .blog-title {
            font-size: 18px;
            line-height: 1.6;
        }

        .blog-single .blog-img .blog-date {
            right: 15px;
            top: 15px;
            font-size: 14px;
            padding: 12px 15px;
        }

        .blog-single .blog-inner-author {
            bottom: 0;
        }

        .blog-single .blog-content {
            margin-top: 20px;
        }

        .blog-single .play-btn {
            --icon-size: 60px;
            --icon-font-size: 18px;
        }

        .blog-single .blog-meta li {
            display: none;
        }

            .blog-single .blog-meta li:first-child {
                display: inline-block;
            }

        .blog-single .blog-meta span,
        .blog-single .blog-meta a {
            font-size: 13px;
        }

        .blog-single .vs-btn {
            font-size: 13px;
            padding: 12px 10px;
        }

        .blog-single .blog-bottom {
            margin-top: 0;
            padding-top: 20px;
        }

    .vs-blockquote {
        padding: 24px 20px 24px 24px;
    }

    .blog-style4 {
        display: block;
    }

        .blog-style4 .blog-content {
            padding: 20px 15px;
            margin: 0;
        }

        .blog-style4 .tips-tag {
            padding: 10px 24px 8px;
        }

        .blog-style4 .blog-title a {
            font-size: 24px;
        }

        .blog-style4 .blog-date {
            font-size: 16px;
        }

        .blog-style4 .category-tag a {
            padding: 10px 20px 8px;
        }

    .blog-style2 .blog-img {
        margin-bottom: 20px;
    }

    .blog-style2 .blog-inner-author {
        bottom: 0;
    }

        .blog-style2 .blog-inner-author .author-name {
            font-size: 14px;
        }

    .blog-style2 .vs-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .blog-style2 .blog-date {
        font-size: 14px;
    }

    .blog-style2 .blog-title {
        font-size: 20px;
    }

    .share-links-title {
        margin-bottom: 10px;
    }

    .vs-blog-details .blog-single {
        padding: 0;
        box-shadow: none;
    }

    .post-pagi-box .pagi-title {
        font-size: 14px;
    }

    .blog-inner-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .share-links {
        padding: 30px 0;
    }
}
/*------------------- 4.6. Comments  -------------------*/
.vs-comments-wrap ul.comment-list,
.vs-comments-wrap .children {
    list-style: none;
    margin: -10px 0 0 0;
    padding: 0;
}

.vs-comments-wrap .children {
    margin-left: 70px;
}

.vs-comments-wrap .vs-post-comment {
    position: relative;
    display: flex;
    padding: 30px 30px;
    margin: 30px 0 30px 0;
    background-color: var(--smoke-color);
}

    .vs-comments-wrap .vs-post-comment p {
        margin-bottom: 0;
    }

.vs-comments-wrap .comment-avater {
    width: 110px;
    height: 110px;
    border-radius: 5px;
    margin-right: 25px;
    overflow: hidden;
}

.vs-comments-wrap .comment-content {
    flex: 1;
    position: relative;
}

.vs-comments-wrap .comment-date {
    font-size: 14px;
}

.vs-comments-wrap .commented-on {
    font-size: 14px;
    color: var(--title-color);
}

    .vs-comments-wrap .commented-on i {
        margin-right: 4px;
        color: var(--theme-color);
    }

.vs-comments-wrap .name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.vs-comments-wrap .reply_and_edit {
    position: absolute;
    right: 0;
    top: 0;
}

.vs-comments-wrap .replay-btn {
    font-weight: 700;
    margin-left: 4px;
    background-color: #fff;
    border-radius: 25px;
    padding: 6px 12px;
    font-size: 14px;
}

    .vs-comments-wrap .replay-btn i {
        font-size: 12px;
        margin-left: 2px;
    }

.vs-comment-form {
    margin-top: 58px;
}

    .vs-comment-form .form-group {
        border: none;
    }

    .vs-comment-form .form-control {
        background-color: var(--smoke-color);
        color: var(--title-color);
    }

        .vs-comment-form .form-control::placeholder {
            color: var(--title-color);
        }

    .vs-comment-form .custom-checkbox {
        margin-bottom: 30px;
        margin-top: 30px;
    }

        .vs-comment-form .custom-checkbox label {
            font-weight: 400;
        }

    .vs-comment-form .notice {
        margin-top: 0;
    }

/* Small devices */
@media (max-width: 767px) {
    .vs-comments-wrap .vs-post-comment {
        padding: 20px 15px;
        display: block;
    }

    .vs-comments-wrap .comment-content {
        margin-top: 20px;
    }

    .vs-comments-wrap .reply_and_edit {
        position: relative;
        margin-top: 10px;
    }

    .vs-comments-wrap .children {
        margin-left: 0;
    }

    .vs-comment-form {
        margin-top: 30px;
    }
}
/*------------------- 4.8. Hero Area  -------------------*/
.hero-mask {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-subtitle {
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--body-font);
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    font-family: var(--body-font);
}

.hero-text {
    max-width: 521px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font);
}

.hero-layout,
.hero-layout1,
.hero-layout2,
.hero-layout4 {
    position: relative;
}

    .hero-layout .form-group > i,
    .hero-layout1 .form-group > i,
    .hero-layout2 .form-group > i,
    .hero-layout4 .form-group > i {
        right: unset;
        left: 20px;
        top: 23px;
        color: var(--body-color);
    }

    .hero-layout .form-group select,
    .hero-layout .form-group input,
    .hero-layout1 .form-group select,
    .hero-layout1 .form-group input,
    .hero-layout2 .form-group select,
    .hero-layout2 .form-group input,
    .hero-layout4 .form-group select,
    .hero-layout4 .form-group input {
        padding-left: 45px;
    }

    .hero-layout .form-group > i,
    .hero-layout2 .form-group > i,
    .hero-layout4 .form-group > i {
        top: 17px;
    }

    .hero-layout .hero-bottom .radioselect,
    .hero-layout .hero-bottom .form-control,
    .hero-layout .hero-bottom .form-select,
    .hero-layout .hero-bottom textarea,
    .hero-layout .hero-bottom input,
    .hero-layout2 .hero-bottom .radioselect,
    .hero-layout2 .hero-bottom .form-control,
    .hero-layout2 .hero-bottom .form-select,
    .hero-layout2 .hero-bottom textarea,
    .hero-layout2 .hero-bottom input,
    .hero-layout4 .hero-bottom .radioselect,
    .hero-layout4 .hero-bottom .form-control,
    .hero-layout4 .hero-bottom .form-select,
    .hero-layout4 .hero-bottom textarea,
    .hero-layout4 .hero-bottom input {
        height: 47px;
    }

.hero-layout {
    position: relative;
}

    .hero-layout .hero-img {
        position: relative;
    }

        .hero-layout .hero-img img {
            border-radius: 340px;
            background-color: var(--white-color);
            border: 20px solid var(--white-color);
        }

        .hero-layout .hero-img .img2 {
            width: 65%;
            position: absolute;
            top: 60%;
            right: -25%;
            transform: translateY(-50%);
        }

    .hero-layout .hero-bottom {
        margin-bottom: -150px;
        margin-top: 100px;
    }

        .hero-layout .hero-bottom .radioselect,
        .hero-layout .hero-bottom .form-control,
        .hero-layout .hero-bottom .form-select,
        .hero-layout .hero-bottom textarea,
        .hero-layout .hero-bottom input {
            height: 47px;
        }

    .hero-layout .hero-form {
        background-color: var(--white-color);
        padding: 30px 30px 0px;
        border-radius: 15px;
        position: relative;
        z-index: 1;
        box-shadow: 0px 4px 15px rgba(255, 104, 26, 0.1);
    }

        .hero-layout .hero-form .vs-btn {
            width: 100%;
        }

    .hero-layout .slide-count {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        z-index: 2;
    }

        .hero-layout .slide-count .tab-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.5s ease-in-out;
            background-color: var(--white-color);
            border: none;
            margin-bottom: 20px;
            color: var(--theme-color);
            position: relative;
            font-size: 20px;
            font-weight: 800;
            font-family: var(--body-font);
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-bottom: 0;
            }

            .hero-layout .slide-count .tab-btn:hover {
                background-color: var(--theme-color);
                color: var(--white-color);
            }

        .hero-layout .slide-count .active {
            background-color: var(--theme-color);
            color: var(--white-color);
        }

        .hero-layout .slide-count::before {
            content: "";
            width: 4px;
            height: 90%;
            background-color: var(--theme-color);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.hero-layout1 {
    margin-top: -100px;
}

    .hero-layout1 .hero-mask {
        padding-top: 200px;
        position: relative;
    }

    .hero-layout1 .hero-title,
    .hero-layout1 .hero-text {
        color: var(--white-color);
    }

    .hero-layout1 .icon-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%);
    }

        .hero-layout1 .icon-btn:first-child {
            left: 12%;
        }

        .hero-layout1 .icon-btn:last-child {
            left: unset;
            right: 12%;
        }

.hero-form2 {
    padding: 60px 40px;
    max-width: 490px;
    border-radius: 15px;
    position: relative;
    background-color: var(--white-color);
    margin-left: auto;
}

    .hero-form2 .h3 {
        margin-bottom: 5px;
    }

    .hero-form2 .shape-mockup {
        position: absolute;
        right: 0;
        bottom: 0;
    }

.hero-layout2 {
    position: relative;
}

    .hero-layout2 .hero-mask {
        padding-bottom: 160px;
    }

    .hero-layout2 .hero-title,
    .hero-layout2 .hero-text {
        color: var(--white-color);
    }

    .hero-layout2 .hero-img .shape-mokup {
        width: 40%;
        position: absolute;
        right: -9.5%;
        bottom: 0%;
        transform: rotateZ(45deg);
        z-index: 0;
    }

    .hero-layout2 .hero-img .img1 {
        position: relative;
        z-index: 1;
    }

    .hero-layout2 .hero-bottom {
        margin-top: -65px;
    }

    .hero-layout2 .hero-form {
        background-color: var(--white-color);
        padding: 30px 30px 0px;
        border-radius: 15px;
        position: relative;
        box-shadow: 0px 4px 15px rgba(255, 104, 26, 0.1);
    }

        .hero-layout2 .hero-form .vs-btn {
            width: 100%;
        }

    .hero-layout2 .icon-btn {
        display: block;
        margin: 0;
        position: absolute;
        left: 12%;
        top: 38.5%;
        transform: translateY(-50%);
    }

        .hero-layout2 .icon-btn:last-child {
            top: 50%;
        }

@media (min-width: 1920px) {
    .hero-layout2 .hero-img .shape-mokup {
        right: -4.5%;
        transform: rotateZ(23deg);
        height: 65%;
    }
}

@media (min-width: 1500px) and (max-width: 1700px) {
    .hero-layout2 .icon-btn {
        left: 3%;
    }

    .hero-layout .slide-count {
        left: 4%;
    }

    .hero-layout1 .icon-btn:first-child {
        left: 3%;
    }

    .hero-layout1 .icon-btn:last-child {
        right: 3%;
    }

    .hero-title {
        font-size: 64px;
    }
}
/* Extra large devices */
@media (max-width: 1500px) {
    .hero-layout .hero-img .img2 {
        right: 0%;
        width: 50%;
    }

    .hero-layout .hero-img .img1 {
        width: 70%;
    }

    .hero-layout .slide-count {
        margin-top: 60px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-layout .slide-count::before {
            height: 4px;
            width: 90%;
        }

        .hero-layout .slide-count .tab-btn {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 20px;
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-right: 0;
            }

    .hero-layout .hero-mask {
        padding-bottom: 80px;
    }

    .hero-layout .hero-bottom {
        margin-top: 70px;
    }

    .hero-layout2 .icon-btn {
        left: 50%;
        top: unset;
        bottom: 150px;
        transform: translateX(-50%) rotate(-90deg);
    }

        .hero-layout2 .icon-btn:first-child {
            left: 45%;
        }

        .hero-layout2 .icon-btn:last-child {
            left: 55%;
            top: unset;
        }

    .hero-layout1 .icon-btn:first-child {
        left: 2%;
    }

    .hero-layout1 .icon-btn:last-child {
        right: 2%;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-layout2 .hero-content {
        text-align: start;
    }

    .hero-layout2 .hero-mask {
        padding-bottom: 170px;
    }

    .hero-layout .hero-img .img2 {
        right: -5%;
    }

    .hero-layout .slide-count {
        margin-top: 60px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-layout .slide-count::before {
            height: 4px;
            width: 90%;
        }

        .hero-layout .slide-count .tab-btn {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 20px;
        }

            .hero-layout .slide-count .tab-btn:last-child {
                margin-right: 0;
            }

    .hero-layout .hero-bottom {
        margin-top: 50px;
    }

    .hero-form2 {
        margin-top: 30px;
        max-width: 100%;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-layout .hero-img {
        margin-top: 30px;
    }

        .hero-layout .hero-img .img1 {
            width: 60%;
        }

        .hero-layout .hero-img .img2 {
            width: 50%;
            top: 50%;
            right: 0;
        }

    .hero-layout .hero-bottom {
        margin-bottom: 0;
    }

    .hero-layout .hero-form {
        padding: 20px 15px;
    }

    .hero-layout2 .hero-img {
        text-align: center;
    }

    .hero-layout2 .icon-btn {
        bottom: 225px;
    }

    .hero-layout1 .hero-mask {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .hero-layout1 .icon-btn {
        top: unset;
        bottom: 40px;
        transform: translateY(unset);
    }

        .hero-layout1 .icon-btn:first-child {
            left: 45%;
            transform: translateX(-50%);
        }

        .hero-layout1 .icon-btn:last-child {
            right: unset;
            left: 55%;
            transform: translateX(-50%);
        }
}
/* Small devices */
@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-layout .hero-mask {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-layout .hero-img img {
        border: 5px solid var(--white-color);
    }

    .hero-layout .slide-count .tab-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-layout1 {
        margin-top: 0;
    }

        .hero-layout1 .hero-mask {
            padding-top: 80px;
            padding-bottom: 150px;
        }

        .hero-layout1 .hero-form2 {
            margin-top: 30px;
            padding: 20px 15px;
        }

        .hero-layout1 .icon-btn:first-child {
            left: 45%;
        }

        .hero-layout1 .icon-btn:last-child {
            left: 55%;
        }

    .hero-layout2 .icon-btn:first-child {
        left: 40%;
    }

    .hero-layout2 .icon-btn:last-child {
        left: 55%;
    }
}
/* Extra small devices */
@media (max-width: 575px) {
    .hero-layout2 .icon-btn {
        bottom: 350px;
    }

        .hero-layout2 .icon-btn:first-child {
            left: 36%;
        }

        .hero-layout2 .icon-btn:last-child {
            left: 60%;
        }

    .hero-layout1 .icon-btn:first-child {
        left: 36%;
    }

    .hero-layout1 .icon-btn:last-child {
        left: 60%;
    }
}
/*------------------- 4.7. Simple Sections  -------------------*/
.social-box {
    padding: 80px 100px;
    position: relative;
    z-index: 1;
}

    .social-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 9999px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.07);
        z-index: -1;
    }

.social-box__title {
    color: var(--white-color);
    margin: -0.2em 0 10px 0;
    font-size: 34px;
}

.social-box a,
.info-social a {
    display: inline-block;
    color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 18px;
    margin-right: 5px;
    border-radius: 50%;
}

    .social-box a:last-child,
    .info-social a:last-child {
        margin-right: 0;
    }

    .social-box a:hover,
    .info-social a:hover {
        background-color: var(--theme-color);
        color: var(--white-color);
        border-color: transparent;
    }

.award-wrap-title {
    background-color: var(--theme-color);
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 18px;
    line-height: 1;
    margin: 0 auto -40px auto;
    max-width: 850px;
    text-align: center;
    padding: 31px 30px;
    position: relative;
    z-index: 1;
}

.award-wrap1 {
    background-color: #F7F7F7;
    padding: 90px 50px 20px 50px;
    margin-bottom: 60px;
}

    .award-wrap1:last-child {
        margin-bottom: 30px;
    }

.award-style1 {
    background-color: var(--white-color);
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

    .award-style1 .award-img {
        min-height: 175px;
        line-height: 175px;
        text-align: center;
        margin-bottom: 20px;
    }

        .award-style1 .award-img img {
            max-width: 100%;
            max-height: 100%;
        }

    .award-style1 .award-title {
        margin-bottom: 10px;
    }

    .award-style1 .award-text {
        max-width: 250px;
        margin: 0 auto;
    }

/* Medium Large devices */
@media (max-width: 1399px) {
    .social-box {
        padding: 60px 50px;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .social-box {
        padding: 40px 40px;
    }

    .social-box__title {
        font-size: 26px;
    }

    .award-wrap1 {
        padding: 80px 20px 10px 20px;
    }

    .award-wrap-title {
        max-width: 740px;
    }

    .award-style1 {
        padding: 30px 20px 30px 20px;
    }

        .award-style1 .award-text {
            font-size: 14px;
        }

        .award-style1 .award-img {
            min-height: 100px;
            line-height: 100px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .social-box::before {
        width: 100%;
    }

    .award-wrap-title {
        max-width: 520px;
        padding: 21px 20px;
        margin-bottom: -30px;
    }

    .award-wrap1 {
        padding: 70px 20px 10px 20px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .social-box {
        padding: 40px 20px;
    }

        .info-social a,
        .social-box a {
            width: 50px;
            height: 50px;
            line-height: 52px;
            font-size: 16px;
        }
}
/*------------------- 4.8. Error  -------------------*/
.error-content {
    max-width: 744px;
    margin-left: auto;
    margin-right: auto;
}

.error-img {
    margin-top: 60px;
}

.error-title {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 18px 0;
}

.error-text {
    margin: 0 0 30px 0;
    max-width: 596px;
    margin-left: auto;
    margin-right: auto;
}

.vs-error-wrapper {
    background-color: #fafafa;
    padding: calc(var(--section-space) + 54px) 0 var(--section-space) 0;
}

/* Large devices */
@media (max-width: 1199px) {
    .vs-error-wrapper {
        padding: var(--section-space) 0 var(--section-space) 0;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .error-title {
        font-size: 48px;
    }

    .vs-error-wrapper {
        padding: var(--section-space-mobile) 0 var(--section-space-mobile) 0;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .error-title {
        font-size: 36px;
    }

    .text-theme {
        font-size: 20px;
    }

    .search-inline input {
        padding-left: 30px;
    }
}
/*------------------- 4.9. Packages  -------------------*/
.package-review i {
    color: var(--theme-color2);
    font-size: 14px;
}

.package-meta a {
    margin-right: 20px;
    position: relative;
}

    .package-meta a i {
        margin-right: 4px;
    }

    .package-meta a::before {
        content: "";
        width: 1px;
        height: 70%;
        opacity: 0.7;
        background-color: var(--body-color);
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
    }

    .package-meta a:last-child {
        margin-right: 0;
    }

        .package-meta a:last-child::before {
            display: none;
        }

.package-price {
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}

.package-style1,
.package-style3 {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all ease 0.4s;
}

    .package-style1 .package-img,
    .package-style3 .package-img {
        overflow: hidden;
    }

        .package-style1 .package-img img,
        .package-style3 .package-img img {
            transition: 0.5s;
        }

    .package-style1 .package-content,
    .package-style3 .package-content {
        padding: 25px 30px 30px;
    }

    .package-style1 .package-title,
    .package-style3 .package-title {
        font-size: 20px;
        font-weight: 600;
        margin: 3px 0;
    }

        .package-style1 .package-title a,
        .package-style3 .package-title a {
            color: var(--body-color);
        }

            .package-style1 .package-title a:hover,
            .package-style3 .package-title a:hover {
                color: var(--theme-color);
            }

    .package-style1 .package-text,
    .package-style3 .package-text {
        margin-bottom: 10px;
    }

    .package-style1 .package-meta,
    .package-style3 .package-meta {
        border-top: 1px solid var(--border-color);
        padding-top: 12px;
    }

    .package-style1 .package-footer,
    .package-style3 .package-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }

    .package-style1 .vs-btn,
    .package-style3 .vs-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .package-style1:hover,
    .package-style3:hover {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        transition: all ease 0.4s;
    }

        .package-style1:hover .package-img img,
        .package-style3:hover .package-img img {
            transform: scale(1.1);
        }

        .package-style1:hover .package-price,
        .package-style3:hover .package-price {
            color: var(--theme-color);
        }

.package-review2 i {
    color: var(--theme-color);
}

/*------------------- 4.10. Cities  -------------------*/
.gallery-image {
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-video {
    position: relative;
    margin-bottom: 30px;
}

    .gallery-video img {
        border-radius: 10px;
    }

    .gallery-video .gallery-btn {
        padding: 10px 20px;
        border-radius: 35px;
        box-shadow: 0px 0px 15px 0px rgba(255, 104, 26, 0.15);
        background-color: var(--white-color);
        position: absolute;
        top: 10%;
        left: -55px;
    }

        .gallery-video .gallery-btn span {
            font-size: 20px;
            font-weight: 600;
        }

        .gallery-video .gallery-btn .play-btn {
            margin-left: 20px;
        }

            .gallery-video .gallery-btn .play-btn::before, .gallery-video .gallery-btn .play-btn::after {
                background-color: var(--border-color);
            }

            .gallery-video .gallery-btn .play-btn > i {
                background-color: var(--theme-color);
                color: var(--white-color);
                width: var(--icon-size, 50px);
                height: var(--icon-size, 50px);
                line-height: var(--icon-size, 50px);
                font-size: var(--icon-font-size, 1em);
            }

            .gallery-video .gallery-btn .play-btn:hover::before, .gallery-video .gallery-btn .play-btn:hover::after {
                background-color: var(--theme-color2);
            }

            .gallery-video .gallery-btn .play-btn:hover > i {
                background-color: var(--theme-color2);
            }

.gallery-style1 .title-area {
    max-width: 500px;
    margin-left: 0;
}

.gallery-style-2 {
    max-width: 1012px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

    .gallery-style-2 .play-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .gallery-style-2 .play-btn > i {
            color: var(--white-color);
            width: var(--icon-size, 110px);
            height: var(--icon-size, 110px);
            line-height: var(--icon-size, 110px);
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:after, .gallery-style-2 .play-btn:before {
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:hover > i {
            background-color: rgba(55, 212, 217, 0.8);
        }

        .gallery-style-2 .play-btn:hover:after, .gallery-style-2 .play-btn:hover:before {
            background-color: rgba(55, 212, 217, 0.8);
        }

.gallery2 {
    position: relative;
}

    .gallery2 .shadow-color {
        bottom: 0;
    }

.shadow-color {
    width: 100%;
    height: 30%;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.gallery3 {
    position: relative;
}
/*------------------- 4.11. Features  -------------------*/
.features-style1,
.features-style3 {
    overflow: hidden;
    text-align: center;
    position: relative;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 30px 10px;
    transition: 0.5s ease-in-out;
    border: 1px solid var(--border-color);
    background-color: var(--theme-color);
}

    .features-style1 .features-bg,
    .features-style3 .features-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
    }

    .features-style1 .features-image,
    .features-style3 .features-image {
        position: relative;
        z-index: 1;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

        .features-style1 .features-image img,
        .features-style3 .features-image img {
            width: 40px;
        }

        .features-style1 .features-image::before, .features-style1 .features-image::after,
        .features-style3 .features-image::before,
        .features-style3 .features-image::after {
            content: "";
            width: 20px;
            height: 20px;
            border-radius: 50%;
            transition: 0.5s ease-in-out;
            background-color: var(--theme-color2);
            position: absolute;
        }

        .features-style1 .features-image::before,
        .features-style3 .features-image::before {
            left: 10px;
            top: 0;
        }

        .features-style1 .features-image::after,
        .features-style3 .features-image::after {
            right: 10px;
            bottom: 0;
        }

    .features-style1 .features-content,
    .features-style3 .features-content {
        z-index: 1;
    }

    .features-style1 .features-title,
    .features-style1 .features-text,
    .features-style3 .features-title,
    .features-style3 .features-text {
        color: var(--white-color);
    }

    .features-style1 .features-title,
    .features-style3 .features-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        transition: 0.5s ease-in-out;
    }

    .features-style1 .features-text,
    .features-style3 .features-text {
        transition: 0.5s ease-in-out;
    }

    .features-style1:hover,
    .features-style3:hover {
        border-color: var(--theme-color2);
        background-color: var(--theme-color2);
    }

        .features-style1:hover .features-image,
        .features-style3:hover .features-image {
            background-color: var(--white-color);
        }

            .features-style1:hover .features-image::before, .features-style1:hover .features-image::after,
            .features-style3:hover .features-image::before,
            .features-style3:hover .features-image::after {
                background-color: var(--theme-color);
            }

.features-style2 {
    padding: 30px 30px 10px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: 0.5s ease-in;
    background-color: var(--theme-color);
}

    .features-style2 .features-image {
        position: relative;
        z-index: 1;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

        .features-style2 .features-image img {
            width: 40px;
            transition: 0.5s ease-in-out;
        }

    .features-style2 .features-content {
        z-index: 1;
    }

    .features-style2 .features-title,
    .features-style2 .features-text {
        color: var(--white-color);
        transition: 0.5s ease-in-out;
    }

    .features-style2 .features-title {
        font-size: 20px;
        font-weight: 600;
    }

    .features-style2:hover {
        background-color: var(--theme-color2);
    }

        .features-style2:hover .features-image {
            background-color: var(--white-color);
        }

            .features-style2:hover .features-image img {
                transform: rotateY(180deg) scale(1.2);
            }

        .features-style2:hover .features-title,
        .features-style2:hover p {
            color: var(--white-color);
        }

/* Small devices */
@media (max-width: 767px) {
    .features-style1,
    .features-style2 {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/*------------------- 4.12. Offers  -------------------*/
.offer-style1 {
    overflow: hidden;
}

.img-1-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
}

.img-box2 {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
}

    .img-box2::before {
        content: "";
        width: 77%;
        height: 77%;
        border-radius: 50%;
        background-color: var(--white-color);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .img-box2 .img1 {
        width: 240px;
        height: 240px;
        padding: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        position: relative;
        z-index: 2;
    }

    .img-box2 .spinner-style1 {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        animation: spin 20s linear infinite;
    }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            content: "";
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--theme-color2);
            position: absolute;
        }

        .img-box2 .spinner-style1::before {
            left: 0;
            top: 24%;
        }

        .img-box2 .spinner-style1::after {
            right: 0;
            bottom: 24%;
        }

    .img-box2 .img-1-2 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 320px;
    }

/* Extra large devices */
@media (max-width: 1500px) {
    .img-1-2 {
        display: none;
    }

    .img-box2 {
        width: 400px;
        height: 400px;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .img-box2 {
        width: 360px;
        height: 360px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .img-box2 {
        width: 300px;
        height: 300px;
    }

        .img-box2::before {
            width: 75%;
            height: 75%;
        }

        .img-box2 .img1 {
            width: 150px;
            height: 150px;
            padding: 25px;
        }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            width: 25px;
            height: 25px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .img-box2 {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }

        .img-box2::before {
            width: 75%;
            height: 75%;
        }

        .img-box2 .img1 {
            width: 100px;
            height: 100px;
            padding: 15px;
        }

        .img-box2 .spinner-style1::before, .img-box2 .spinner-style1::after {
            width: 25px;
            height: 25px;
        }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/*------------------- 4.12. Testimonials  -------------------*/
.testimonial-style1 .title-area .vs-btn {
    margin-top: 10px;
}

.testimonial-style1 .sec-subtitle {
    color: var(--theme-color2);
}

.testimonial-style1 .sec-title,
.testimonial-style1 .sec-text {
    color: var(--white-color);
}

.testimonial-slider2 {
    max-width: 908px;
}

.testimonial-style2 .sec-subtitle {
    color: var(--theme-color2);
}

.testimonial-style2 .sec-title {
    color: var(--white-color);
}

.testi-style2 {
    text-align: center;
}

    .testi-style2 .testi-body {
        background-color: var(--white-color);
        padding: 24px 30px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .testi-style2 .testi-rating i {
        color: var(--theme-color2);
    }

    .testi-style2 .testi-degi {
        font-size: 14px;
        color: var(--white-color);
    }

    .testi-style2 .testi-name {
        color: var(--white-color);
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .testi-style2 .testi-avater {
        margin-top: 12px;
    }

        .testi-style2 .testi-avater img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }

.testi-style1 {
    text-align: center;
    width: 605px;
    height: 605px;
    padding: 0 100px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    position: relative;
}

    .testi-style1 .testi-shape {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        outline-offset: 15px;
        outline: 1px solid var(--theme-color);
        background-color: var(--theme-color);
        border-radius: 40% 40% 40% 40%/40% 40% 40% 40%;
        transform: rotate(45deg) scale(0.91);
    }

        .testi-style1 .testi-shape img {
            transform: translate(-50%, -50%) rotate(-45deg);
            position: absolute;
            left: 50%;
            top: 50%;
        }

    .testi-style1 .vs-carousel {
        position: relative;
        z-index: 1;
    }

    .testi-style1 .testi-quote {
        margin: 0 auto 24px;
    }

    .testi-style1 .testi-rating {
        margin-bottom: 24px;
    }

        .testi-style1 .testi-rating i {
            color: var(--white-color);
        }

    .testi-style1 .testi-text {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--white-color);
    }

    .testi-style1 .testi-avater {
        margin-bottom: 15px;
    }

        .testi-style1 .testi-avater img {
            width: 100px;
            height: 100px;
            border-radius: 10px;
        }

    .testi-style1 .testi-name {
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 5px;
    }

    .testi-style1 .testi-degi {
        font-size: 14px;
        color: var(--white-color);
    }

    .testi-style1 .testi-avaters img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .testi-style1 .testi-avaters .tab-btn {
        position: absolute;
        padding: 0;
        display: inline-block;
        background-color: var(--theme-color);
        max-width: 100px;
        max-height: 100px;
        border-radius: 50%;
        overflow: hidden;
        z-index: 1;
        border: 5px solid var(--theme-color);
    }

        .testi-style1 .testi-avaters .tab-btn:nth-child(1) {
            top: 10%;
            left: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(2) {
            top: 10%;
            right: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(3) {
            bottom: 10%;
            right: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:nth-child(4) {
            bottom: 10%;
            left: 5%;
        }

        .testi-style1 .testi-avaters .tab-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .testi-style1 .testi-avaters .active {
        border-color: var(--theme-color2);
        background-color: var(--theme-color2);
    }

/* Large devices */
@media (max-width: 1199px) {
    .testi-style1 {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 1500px) {
    .testi-style1 {
        width: 480px;
        height: 480px;
        padding-left: 50px;
        padding-right: 50px;
    }

        .testi-style1 .testi-avater img {
            width: 80px;
            height: 80px;
        }

        .testi-style1 .testi-text {
            font-size: 18px;
        }

        .testi-style1 .testi-quote {
            width: 50px;
            margin: 0 auto 20px;
        }

        .testi-style1 .testi-avaters .tab-btn {
            width: 80px;
            height: 80px;
        }

            .testi-style1 .testi-avaters .tab-btn img {
                width: 80px;
                height: 80px;
            }
}

@media (max-width: 1399px) {
    .testi-style1 .testi-avater .tab-btn {
        max-width: 90px;
        max-height: 90px;
    }

    .testi-style1 .testi-text {
        margin-bottom: 20px;
    }

    .testi-style1 .testi-rating {
        margin-bottom: 15px;
    }

    .testi-style1 .testi-avater .tab-btn:nth-child(3) {
        top: 0.5%;
        right: 14%;
    }

    .testi-style1 .testi-avater .tab-btn:nth-child(5) {
        top: 30%;
        right: -7%;
    }

    .testi-style1 .testi-text {
        font-size: 18px;
    }

    .testi-style1 .testi-name {
        font-size: 20px;
    }

    .testi-style1 .testi-degi {
        margin: 0 0 10px 0;
    }

    .testi-style1 .testi-shape:after,
    .testi-style1 .testi-shape::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .testi-style2 .testi-text {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 20px 0;
    }

    .testi-style2 .testi-name {
        font-size: 22px;
        margin: 0 0 4px 0;
    }

    .testi-style2 .testi-degi {
        letter-spacing: 0;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .testi-style1 .testi-shape {
        width: 95%;
        height: 95%;
    }
}

@media (max-width: 767px) {
    .testi-style1 {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background-color: var(--theme-color);
        padding: 40px 15px 40px 15px;
    }

        .testi-style1 .testi-shape {
            display: none;
        }

        .testi-style1 .testi-quote {
            margin: 0 auto 15px;
        }

            .testi-style1 .testi-quote img {
                max-width: 50px;
            }

        .testi-style1 .testi-text {
            font-size: 16px;
            line-height: 29px;
        }

        .testi-style1 .testi-author {
            font-size: 22px;
        }

        .testi-style1 .testi-avaters {
            max-width: 50px;
            max-height: 50px;
        }

            .testi-style1 .testi-avaters img {
                width: 50px;
                height: 50px;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(1) {
                top: 5%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(2) {
                top: 5%;
                right: 2%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(3) {
                bottom: 13%;
                right: 2%;
            }

            .testi-style1 .testi-avaters .tab-btn:nth-child(4) {
                bottom: 13%;
                left: 2%;
            }
}
/*------------------- 4.13. Destinations  -------------------*/
.destination-style1 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .destination-style1 img {
        transition: 0.5s ease-in-out;
    }

    .destination-style1 .destination-price {
        font-size: 30px;
        font-weight: 700;
        padding: 15px 30px 15px;
        border-radius: 0 0 10px 10px;
        background-color: var(--white-color);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s ease-in-out;
    }

    .destination-style1 .destination-info {
        transition: 0.5s ease-in-out;
        background-color: rgba(28, 28, 28, 0.8);
        padding: 25px 30px 10px;
        max-width: 297px;
        width: 100%;
        border-radius: 0 10px 10px 0px;
        position: absolute;
        left: 0;
        bottom: 30px;
    }

    .destination-style1 .destination-name {
        margin-bottom: 5px;
    }

        .destination-style1 .destination-name a {
            color: var(--white-color);
        }

    .destination-style1 .destination-text {
        color: var(--white-color);
    }

    .destination-style1:hover img {
        transform: scale(1.1);
    }

    .destination-style1:hover .destination-price {
        background-color: var(--theme-color);
        color: var(--white-color);
    }

    .destination-style1:hover .destination-info {
        background-color: var(--theme-color);
    }

.destination-details .ds-title:first-child {
    margin-bottom: 33px;
    margin-top: -10px;
}

.destination-details .ds-img1 {
    border-radius: 10px;
    overflow: hidden;
}

.destination-details .img-2 {
    border-radius: 10px;
    overflow: hidden;
}

.destination-details .ds-text {
    margin-top: 15px;
}

.destination-details .vs-comment-form {
    margin-top: 30px;
}

.destinations-info {
    margin: 60px 0 50px;
    border-radius: 10px;
    background-color: var(--smoke-color);
    padding: 20px 40px 30px;
}

.destination-list {
    margin: 0;
    padding: 0;
}

    .destination-list li {
        list-style: none;
        padding-top: 10px;
        padding-left: 280px;
        position: relative;
    }

        .destination-list li span {
            font-size: 16px;
            font-weight: 400;
            font-family: var(--body-font);
        }

            .destination-list li span:first-child {
                color: var(--title-color);
                font-weight: 600;
                position: absolute;
                left: 0;
            }

/* Large devices */
@media (max-width: 1199px) {
    .destination-style1 .destination-info {
        max-width: 250px;
        padding: 20px 20px 5px;
    }

    .destination-style1 .destination-price {
        padding: 10px 24px;
        font-size: 24px;
    }

    .destination-list li {
        padding-left: 200px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .destination-style1 .destination-info {
        max-width: 220px;
        padding: 15px 15px 0px;
    }

    .destination-style1 .destination-price {
        padding: 10px 24px;
        font-size: 24px;
    }

    .destinations-info {
        padding: 20px 15px;
    }

    .destination-list li {
        padding-left: unset;
    }

        .destination-list li span:first-child {
            position: unset;
            display: block;
            margin-right: 10px;
        }
}
/*------------------- 4.13. Destinations  -------------------*/
.about-list1,
.about-list2 {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
}

    .about-list1 li,
    .about-list2 li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
        margin-right: 15px;
    }

        .about-list1 li::before,
        .about-list2 li::before {
            content: "";
            width: 6px;
            height: 6px;
            outline: 5px solid var(--border-color);
            background-color: var(--theme-color);
            border-radius: 50%;
            position: absolute;
            left: 5px;
            top: 10px;
        }

.about-content .title-area {
    margin: 0;
}

.about-content .vs-btn {
    margin-top: 30px;
}

.img-box3 {
    position: relative;
    padding: 0px 10px;
}

    .img-box3 .img1 {
        border-radius: 10px;
    }

    .img-box3 .bottom-img {
        margin-top: -64px;
        display: flex;
        align-items: baseline;
    }

    .img-box3 .img2 {
        max-width: 280px;
        margin-top: 30px;
        border-radius: 10px;
    }

    .img-box3 .img3 {
        max-width: 210px;
        border-radius: 10px;
        border: 15px solid var(--theme-color2);
        margin-left: 30px;
    }

.image-box1 {
    margin: 80px 0;
    position: relative;
}

    .image-box1 .img1 {
        border-radius: 25% 0 25% 0;
    }

    .image-box1 .img2 {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background-color: var(--white-color);
        padding: 40px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1;
    }

    .image-box1 .media-box1,
    .image-box1 .media-box2 {
        width: 260px;
        border-radius: 10px;
        outline: 15px solid var(--white-color);
        background-color: var(--theme-color);
        padding: 45px 40px 45px;
        position: absolute;
        right: 0;
        top: -55px;
        z-index: 0;
    }

        .image-box1 .media-box1 .media-info,
        .image-box1 .media-box2 .media-info {
            font-size: 36px;
            font-weight: 700;
            color: var(--white-color);
            font-family: var(--body-font);
            margin-bottom: 5px;
        }

        .image-box1 .media-box1 .media-text,
        .image-box1 .media-box2 .media-text {
            font-size: 22px;
            font-weight: 600;
            margin: 0;
            color: var(--white-color);
        }

    .image-box1 .media-box1 {
        background-color: var(--theme-color);
        bottom: unset;
        right: -5px;
        top: -55px;
    }

    .image-box1 .media-box2 {
        background-color: var(--theme-color2);
        bottom: -55px;
        top: unset;
        right: 125px;
    }

/* Large devices */
@media (max-width: 1199px) {
    .about-list1 {
        grid-template-columns: 1fr 1fr;
    }

    .img-box3 {
        margin-top: 30px;
        padding: 0;
    }

        .img-box3 .bottom-img {
            display: block;
            margin-top: 0;
        }

        .img-box3 .img3 {
            margin-top: 20px;
            margin-left: 15px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .about-list1 {
        grid-template-columns: 1fr 1fr;
    }

    .img-box3 {
        margin-top: 30px;
    }

        .img-box3 .bottom-img {
            display: block;
            margin-top: 0;
        }

        .img-box3 .img2,
        .img-box3 .img3 {
            margin-top: 30px;
            margin-left: auto;
            margin-right: auto;
            max-width: 100%;
        }

        .img-box3 .img3 {
            margin-left: 25px;
        }
}
/* Small devices */
@media (max-width: 767px) {
    .about-list1 {
        grid-template-columns: 1fr;
    }

    .image-box1 {
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 30px;
    }

        .image-box1 .img2 {
            width: 150px;
            height: 150px;
            padding: 10px;
            top: 0;
            transform: translate(0);
        }

        .image-box1 .media-box1,
        .image-box1 .media-box2 {
            width: 45%;
            padding: 15px;
            height: fit-content;
            border: none;
            text-align: center;
            margin-top: 20px;
        }

            .image-box1 .media-box1 .media-info,
            .image-box1 .media-box2 .media-info {
                font-size: 20px;
            }

            .image-box1 .media-box1 .media-text,
            .image-box1 .media-box2 .media-text {
                font-size: 15px;
            }

        .image-box1 .media-box1 {
            position: relative;
            top: unset;
            right: unset;
            border: none;
        }

        .image-box1 .media-box2 {
            position: relative;
            bottom: 0;
            right: 0;
            margin-left: 20px;
        }

    .img-box3 .img3 {
        margin-left: auto;
    }
}
/*------------------- 4.14. Destinations  -------------------*/
.history-steped {
    position: relative;
    padding-right: 100px;
}

    .history-steped::before, .history-steped::after {
        content: "";
        position: absolute;
        right: -5px;
        top: 60px;
        transform: translateY(-50%);
        z-index: 1;
    }

    .history-steped::before {
        width: 105px;
        height: 2px;
        background-color: var(--border-color);
    }

    .history-steped::after {
        width: 10px;
        height: 10px;
        outline: 5px solid var(--border-color);
        border-radius: 50%;
        background-color: var(--theme-color);
    }

    .history-steped .divider {
        height: 100%;
        width: 2px;
        background-color: var(--border-color);
        position: absolute;
        right: -1px;
        top: 30%;
        transform: translateY(-50%);
    }

        .history-steped .divider::before {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--border-color);
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

    .history-steped:first-child .divider::before {
        content: "";
        top: 0;
    }

    .history-steped:last-child .divider::before {
        content: "";
        bottom: 0;
        top: unset;
    }

    .history-steped:nth-child(even) {
        margin-top: 80px;
        padding-left: 100px;
        padding-right: unset;
    }

        .history-steped:nth-child(even)::before, .history-steped:nth-child(even)::after {
            right: unset;
            left: -5px;
        }

        .history-steped:nth-child(even) .divider {
            top: 80%;
            left: -1px;
            right: unset;
        }

.vs-history {
    --body-color: #8B919C;
    padding: 30px 40px 20px;
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--white-color);
}

    .vs-history .history-date {
        font-size: 24px;
        font-weight: 600;
        font-family: var(--body-font);
        margin-bottom: 0;
        position: relative;
        padding-left: 30px;
        color: var(--body-color);
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            content: "";
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
        }

        .vs-history .history-date::before {
            width: 120px;
            height: 2px;
            background-color: var(--border-color);
        }

        .vs-history .history-date::after {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--theme-color);
        }

    .vs-history .history-title {
        margin-bottom: 0;
    }

    .vs-history .header-area {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

/* Large devices */
@media (max-width: 1199px) {
    .vs-history .history-date {
        padding-left: 15px;
    }

        .vs-history .history-date::before {
            width: 80px;
        }
}
/* Medium devices */
@media (max-width: 991px) {
    .history-steped {
        padding-right: 50px;
    }

        .history-steped:nth-child(even) {
            padding-left: 50px;
            margin-top: 50px;
        }

        .history-steped::before {
            width: 55px;
        }

    .vs-history {
        padding: 25px 30px 15px;
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            display: none;
        }
}
/* Small devices */
@media (max-width: 767px) {
    .history-steped {
        margin-top: 30px;
        padding: 0 15px;
    }

        .history-steped:first-child {
            margin-top: 0;
        }

        .history-steped:nth-child(even) {
            padding: 0 15px;
            margin-top: 30px;
        }

        .history-steped::before, .history-steped::after {
            display: none;
        }

        .history-steped .divider {
            display: none;
        }

    .vs-history {
        padding: 20px 20px 10px;
    }

        .vs-history .history-date::before, .vs-history .history-date::after {
            display: none;
        }
}
/*------------------- 4.15. Destinations  -------------------*/
.filter-menu1 {
    background-color: var(--smoke-color);
    margin-bottom: 60px;
}

    .filter-menu1 .tab-button {
        padding: 24px 30px;
        display: inline-block;
        border: none;
        margin: 0;
        color: var(--body-color);
        background-color: var(--smoke-color);
    }

        .filter-menu1 .tab-button i {
            margin-right: 4px;
        }

        .filter-menu1 .tab-button:hover {
            color: var(--theme-color);
        }

    .filter-menu1 .active {
        background-color: var(--white-color);
        color: var(--theme-color);
    }

.filter-active1 {
    padding-left: 40px;
    padding-right: 40px;
}

    .filter-active1 .package-style1 {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
        background-color: var(--white-color);
    }

/* Large devices */
@media (max-width: 1199px) {
    .filter-menu1 .tab-button {
        padding-left: 24px;
        padding-right: 24px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .filter-menu1 {
        margin-bottom: 20px;
    }

        .filter-menu1 .tab-button {
            font-size: 14px;
            padding: 10px 12px;
        }
}
/*------------------- 4.16. Tour Bookings  -------------------*/
.tour-review ul {
    margin: 0;
    padding: 0;
}

    .tour-review ul li {
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        font-family: var(--body-font);
    }

        .tour-review ul li i {
            color: var(--theme-color);
        }

.tab-content1 .info-image {
    margin-bottom: 36px;
}

.tab-content1 .tour-review {
    margin-bottom: 5px;
}

.tab-content1 .tour-price {
    font-size: 24px;
}

.tours-active .package-style1 {
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
    transition: 0.5s ease-in-out;
}

    .tours-active .package-style1:hover {
        box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.15);
    }

.tour-plan {
    padding-left: 70px;
    position: relative;
    padding-top: 8px;
    margin-top: 26px;
}

    .tour-plan .tour-card1 {
        width: 50px;
        height: 50px;
        font-size: 24px;
        font-weight: 700;
        color: var(--white-color);
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        position: absolute;
        left: 0;
        top: 0;
    }

    .tour-plan .tp-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .tour-plan .tp-list li {
            padding-left: 25px;
            margin-bottom: 10px;
            position: relative;
        }

            .tour-plan .tp-list li::before {
                content: "\f058";
                font-weight: 700;
                font-family: var(--icon-font);
                position: absolute;
                left: 0;
            }

            .tour-plan .tp-list li:last-child {
                margin-bottom: 0;
            }

.google-map {
    height: 710px;
}

    .google-map iframe {
        height: 100%;
        width: 100%;
    }

.tag-widget .vs-btn {
    font-weight: 400;
    margin-right: 10px;
}

    .tag-widget .vs-btn i {
        margin-right: 4px;
    }

    .tag-widget .vs-btn:last-child {
        margin-right: 0;
    }

.infolist {
    margin-top: 40px;
    border: none;
}

    .infolist tr {
        vertical-align: baseline;
    }

        .infolist tr td {
            border: none;
            padding: 9px 0;
            font-size: 16px;
            font-weight: 400;
            font-family: var(--body-font);
        }

            .infolist tr td:first-child {
                font-weight: 600;
            }

            .infolist tr td .sub-infolist {
                border: none;
                margin: 0;
            }

                .infolist tr td .sub-infolist tr {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                }

                    .infolist tr td .sub-infolist tr td {
                        padding: 0 0 0 25px;
                        margin-bottom: 10px;
                        position: relative;
                        width: 208px;
                        font-weight: 400;
                    }

                        .infolist tr td .sub-infolist tr td::before {
                            content: "\f058";
                            font-weight: 700;
                            font-family: var(--icon-font);
                            position: absolute;
                            left: 0;
                        }

        .infolist tr .info-heading {
            width: 250px;
            font-weight: 700;
        }

/* fluid 5 columns */
.grid-item {
    margin-bottom: 24px;
}

    .grid-item img {
        border-radius: 10px;
    }

.progress-style1 {
    margin-top: 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 40px 30px 34px;
}

    .progress-style1 .circle-progress {
        width: 150px;
        height: 150px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

        .progress-style1 .circle-progress .progress-value {
            font-size: 18px;
            font-weight: 600;
            font-family: var(--body-font);
            color: var(--title-color);
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

    .progress-style1 .progress-title {
        margin: 26px 0 0 0;
    }

.rating-wrap {
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
    padding-top: 60px;
}

    .rating-wrap .rating-text {
        font-size: 14px;
    }

    .rating-wrap .rating-post {
        margin-bottom: 26px;
    }

    .rating-wrap .vs-comment-form {
        background-color: var(--smoke-color);
        padding: 60px 30px 30px;
        border-radius: 10px;
    }

        .rating-wrap .vs-comment-form .form-control {
            background-color: var(--white-color);
        }

    .rating-wrap .review-rating {
        margin-bottom: 15px;
    }

    .rating-wrap .rating-select {
        margin: 0 0 15px 0;
    }

    .rating-wrap .blog-inner-title {
        margin-bottom: 20px;
    }

    .rating-wrap .vs-comment-form .custom-checkbox {
        margin-top: 20px;
    }

.rating-author {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

    .rating-author .author-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        margin-right: 15px;
        overflow: hidden;
    }

    .rating-author .author-text {
        margin-bottom: 5px;
    }

    .rating-author .author-digi {
        font-size: 14px;
    }

.review-rating {
    position: relative;
    display: flex;
    align-items: center;
}

    .review-rating .rating-tilte {
        margin-right: 15px;
    }

    .review-rating .star-rating {
        overflow: hidden;
        position: relative;
        width: 100px;
        height: 1.2em;
        line-height: 1.2em;
        display: block;
        font-family: var(--icon-font);
        font-weight: 700;
        font-size: 14px;
    }

        .review-rating .star-rating span {
            overflow: hidden;
            float: left;
            top: 0;
            left: 0;
            position: absolute;
            padding-top: 1.5em;
        }

        .review-rating .star-rating::before {
            content: "\f005\f005\f005\f005\f005";
            color: var(--theme-color2);
            float: left;
            top: 0px;
            left: 0px;
            position: absolute;
            letter-spacing: 3px;
            font-weight: 700;
        }

/* Small devices */
@media (max-width: 767px) {
    .infolist tr {
        display: block;
    }

        .infolist tr .info-heading {
            width: 145px;
        }

        .infolist tr td {
            font-size: 14px;
        }

            .infolist tr td .sub-infolist tr {
                grid-template-columns: 1fr;
            }

                .infolist tr td .sub-infolist tr td {
                    width: 100%;
                }

    .tour-plan {
        padding-left: 0;
        margin-top: 15px;
        padding-top: 0;
    }

        .tour-plan .tour-card1 {
            position: relative;
            font-size: 18px;
            width: 40px;
            height: 40px;
            margin-bottom: 5px;
        }
}
/*------------------- 4.17. Tour Bookings  -------------------*/
.vs-sort-bar {
    margin-bottom: 30px;
}

.woocommerce-ordering select {
    width: 200px;
    padding: 10px 20px;
    background-color: var(--smoke-color);
    border: none;
    outline: none;
    border-radius: 5px;
}

.vs-product {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}

    .vs-product .product-img {
        background-color: var(--smoke-color);
        position: relative;
        padding: 20px 20px;
    }

        .vs-product .product-img .action-buttons {
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: 0.5s ease-in-out;
            position: absolute;
            left: 50%;
            top: 20px;
            width: 100%;
            transform: translateX(-50%);
        }

        .vs-product .product-img .icon-btn {
            width: 44px;
            height: 44px;
            line-height: 44px;
            border-radius: 10px;
            box-shadow: none;
            font-size: 16px;
            color: var(--white-color);
            background-color: var(--theme-color);
        }

            .vs-product .product-img .icon-btn:hover {
                background-color: var(--theme-color2);
            }

        .vs-product .product-img .badge {
            right: 20px;
            border-radius: 5px;
            color: var(--white-color);
            font-weight: 500;
            font-size: 16px;
            transition: 0.5s ease-in-out;
            background-color: var(--theme-color);
        }

    .vs-product .product-body {
        padding: 30px 30px;
    }

        .vs-product .product-body .rating-wrap {
            margin-bottom: 10px;
            margin-top: 0;
            padding-top: 0;
            border: none;
        }

            .vs-product .product-body .rating-wrap i {
                color: var(--theme-color2);
            }

        .vs-product .product-body .product-title {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .vs-product .product-body .vs-btn {
            margin-top: 22px;
        }

    .vs-product:hover .product-img .action-buttons {
        opacity: 1;
        width: 80%;
    }

    .vs-product:hover .product-img .badge {
        opacity: 0;
        z-index: -1;
    }

.product-big-img {
    background-color: var(--smoke-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-thumb-slide .thumb {
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--smoke-color);
    border: 1px solid transparent;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

    .product-thumb-slide .thumb img {
        transition: 0.5s ease-in-out;
        width: 100%;
    }

    .product-thumb-slide .thumb:hover {
        border-color: var(--theme-color);
    }

        .product-thumb-slide .thumb:hover img {
            transform: scale(1.1);
        }

.product-thumb-slide .slick-current .thumb {
    border-color: var(--theme-color);
}

    .product-thumb-slide .slick-current .thumb img {
        transform: scale(1.1);
    }

.quantity {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

    .quantity .qty-btn {
        border: 1px solid var(--theme-color);
        background-color: var(--theme-color);
        padding: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: var(--white-color);
        font-size: 16px;
    }

        .quantity .qty-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .quantity input {
        height: 50px;
        width: 50px;
        margin: 0;
        font-size: 16px;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        color: var(--black-color);
        background-color: var(--smoke-color);
        border-color: transparent;
        border-radius: 0;
    }

.star-rating {
    margin-right: 10px;
    font-size: 16px;
}

    .star-rating i {
        color: var(--theme-color2);
    }

.product-about .product-rating {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin: 0 0 15px 0;
}

    .product-about .product-rating p {
        margin: 0;
        font-size: 16px;
    }

.product-about .product-title {
    margin-bottom: 5px;
}

.product-about .product-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color);
}

.product-about .product-text {
    font-size: 16px;
}

.product-about .product-color {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    text-transform: capitalize;
}

.product-about .varient-select {
    margin-bottom: 30px;
}

    .product-about .varient-select .h6 {
        text-transform: uppercase;
        font-size: 16px;
    }

.product-about .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}

    .product-about .actions .vs-btn {
        flex: 1;
        height: 50px;
        line-height: 22px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .product-about .actions .icon-btn {
        border-radius: 10px;
        height: 50px;
        width: 50px;
        line-height: 50px;
        box-shadow: none;
        color: var(--white-color);
        background-color: var(--theme-color);
    }

        .product-about .actions .icon-btn:hover {
            background-color: var(--theme-color2);
        }

.image-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .image-list .varient-image {
        width: 80px;
        height: 80px;
        margin-right: 10px;
        border-radius: 10px;
        display: inline-block;
        background-color: var(--smoke-color);
        position: relative;
    }

        .image-list .varient-image input[type=radio] {
            visibility: hidden;
            opacity: 0;
            display: inline-block;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            padding: 0;
        }

            .image-list .varient-image input[type=radio] ~ label {
                padding: 0;
                width: 100%;
                height: 100%;
                border-radius: 10px;
                outline-offset: 5px;
                transition: 0.5s ease-in-out;
                background-color: var(--smoke-color);
                outline: 1px solid var(--smoke-color);
            }

                .image-list .varient-image input[type=radio] ~ label::before {
                    display: none;
                }

                .image-list .varient-image input[type=radio] ~ label img {
                    width: 100%;
                    height: 100%;
                }

            .image-list .varient-image input[type=radio]:checked ~ label {
                background-color: var(--theme-color);
                outline-color: var(--theme-color);
            }

            .image-list .varient-image input[type=radio]:hover ~ label {
                background-color: var(--theme-color);
                outline-color: var(--theme-color);
            }

.product_meta {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

    .product_meta .meta-title {
        margin-bottom: 15px;
    }

    .product_meta > span {
        display: block;
        margin-bottom: 3px;
        font-size: 16px;
        color: var(--title-color);
        font-weight: 700;
    }

        .product_meta > span > span {
            color: var(--title-color);
            padding-left: 10px;
            font-weight: 400;
        }

        .product_meta > span a {
            margin-right: 5px;
            font-weight: 400;
            text-transform: capitalize;
        }

            .product_meta > span a:first-child {
                padding-left: 10px;
            }

            .product_meta > span a::after {
                content: ",";
            }

            .product_meta > span a:last-child::after {
                display: none;
            }

.tab-wrap {
    box-shadow: 13px 0px 48px 0px rgba(255, 104, 26, 0.07);
}

.product-tab1 {
    margin: 50px 0 20px 0;
    background-color: var(--smoke-color);
}

    .product-tab1 .nav-link {
        padding: 30px 30px;
        color: var(--title-color);
        text-transform: capitalize;
    }

        .product-tab1 .nav-link:hover {
            color: var(--theme-color);
        }

    .product-tab1 .active {
        background-color: var(--white-color);
        color: var(--theme-color);
    }

.tab-content {
    padding: 25px 40px 35px;
}

    .tab-content .vs-comment-form {
        background-color: var(--smoke-color);
        padding: 40px;
        border-radius: 10px;
    }

        .tab-content .vs-comment-form .form-control {
            background-color: var(--white-color);
        }

.list-style2 li {
    margin-bottom: 7px;
}

    .list-style2 li span {
        color: var(--title-color);
        font-size: 16px;
        font-family: var(--body-font);
    }

        .list-style2 li span:first-child {
            font-weight: 500;
            display: inline-block;
            min-width: 150px;
        }

    .list-style2 li:last-child {
        margin-bottom: 0;
    }

.woocommerce-Reviews .vs-comments-wrap .comment-avater {
    border-radius: 50%;
}

.woocommerce-Reviews .vs-comments-wrap .vs-post-comment {
    border-radius: 10px;
}

    .woocommerce-Reviews .vs-comments-wrap .vs-post-comment p {
        margin-bottom: 15px;
    }

.rating-select {
    margin-top: -0.4em;
}

    .rating-select label {
        margin: 0 10px 0 0;
        display: inline-block;
        color: var(--body-color);
    }

    .rating-select p {
        display: inline-block;
    }

        .rating-select p.stars {
            margin-bottom: 0;
            line-height: 1;
        }

            .rating-select p.stars a {
                position: relative;
                height: 14px;
                width: 18px;
                text-indent: -999em;
                display: inline-block;
                text-decoration: none;
            }

                .rating-select p.stars a::before {
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 18px;
                    height: 14px;
                    line-height: 1;
                    font-family: var(--icon-font);
                    content: "\f005";
                    font-weight: 400;
                    text-indent: 0;
                    color: var(--theme-color);
                }

                .rating-select p.stars a:hover ~ a::before {
                    content: "\f005";
                    font-weight: 400;
                }

            .rating-select p.stars:hover a::before {
                content: "\f005";
                font-weight: 700;
            }

            .rating-select p.stars.selected a.active::before {
                content: "\f005";
                font-weight: 700;
            }

            .rating-select p.stars.selected a.active ~ a::before {
                content: "\f005";
                font-weight: 400;
            }

            .rating-select p.stars.selected a:not(.active)::before {
                content: "\f005";
                font-weight: 700;
            }

/* Small devices */
@media (max-width: 767px) {
    .vs-product .product-body .product-title {
        font-size: 16px;
    }

    .vs-product .product-body .vs-btn {
        padding: 16px;
    }

    .product-about {
        margin-top: 30px;
    }

        .product-about .actions {
            width: 100%;
            display: inline-block;
        }

            .product-about .actions .quantity,
            .product-about .actions .vs-btn,
            .product-about .actions .icon-btn {
                margin-bottom: 15px;
                vertical-align: bottom;
            }

        .product-about .product-rating {
            display: inline-block;
        }

    .product-tab1 .nav-link {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .tab-content {
        padding: 0px 15px 15px;
    }

        .tab-content .vs-comment-form {
            padding: 20px 15px;
        }

            .tab-content .vs-comment-form .notice {
                margin-top: 20px;
            }
}
/*------------------- 4.18. Cart  -------------------*/
.cart_table {
    border: none;
    margin-bottom: 45px;
}

    .cart_table thead {
        background-color: var(--border-color);
    }

        .cart_table thead th {
            font-family: var(--title-font);
            color: var(--title-color);
            font-weight: 600;
            border: none;
            padding: 27px 15px;
        }

    .cart_table td {
        border: none;
        border-bottom: 1px solid var(--border-color);
        color: var(--title-color);
        padding: 20px 10px;
        position: relative;
        vertical-align: middle;
    }

    .cart_table .cart-productimage {
        display: inline-block;
        border-radius: 5px;
        background-color: var(--smoke-color);
    }

    .cart_table .quantity {
        display: inline-flex;
        align-items: center;
        border: none;
        border-radius: 0;
    }

    .cart_table .qut-btn {
        border: 2px solid var(--border-color);
        background-color: var(--theme-color);
        color: var(--white-color);
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 25px;
        font-size: 16px;
        font-weight: 400;
        border-radius: 4px;
    }

        .cart_table .qut-btn:hover {
            background-color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .cart_table .qty-input {
        vertical-align: middle;
        background-color: transparent;
        border: 2px solid var(--border-color);
        width: 70px;
        height: 30px;
        font-size: 14px;
        text-align: center;
        color: var(--title-color);
        font-weight: 400;
        margin: 0 10px;
        border-radius: 4px;
    }

    .cart_table .vs-cart-coupon {
        float: left;
        margin: 0;
        width: 455px;
        max-width: 100%;
        display: flex;
    }

        .cart_table .vs-cart-coupon input {
            height: 46px;
            width: calc(100% - 200px);
            margin-right: 10px;
            border-radius: 10px;
        }

        .cart_table .vs-cart-coupon .vs-btn {
            font-size: 16px;
            width: max-content;
            border-radius: 10px;
        }

    .cart_table .actions {
        text-align: right;
        vertical-align: middle;
    }

        .cart_table .actions > .vs-btn {
            margin-right: 15px;
        }

            .cart_table .actions > .vs-btn:last-child {
                margin-right: 0;
            }

.cart_totals {
    border: 1px solid var(--border-color);
}

    .cart_totals td:first-child,
    .cart_totals th:first-child {
        width: 45%;
        background-color: #f9fbfb;
        font-weight: 700;
        font-size: 14px;
        color: #333333;
    }

    .cart_totals .amount {
        font-weight: 600;
        font-size: 14px;
        font-family: var(--title-font);
    }

    .cart_totals .woocommerce-shipping-methods {
        margin-bottom: 0;
    }

        .cart_totals .woocommerce-shipping-methods input[type=radio] ~ label::before {
            width: 15px;
            height: 15px;
            line-height: 14px;
            font-size: 7px;
            padding-left: 1px;
            top: -1px;
        }

    .cart_totals .woocommerce-shipping-destination {
        margin-bottom: 10px;
    }

    .cart_totals .shipping-calculator-button {
        display: inline-block;
        border-bottom: 1px solid;
        color: var(--title-color);
        font-weight: 700;
    }

/* Medium devices */
@media (max-width: 991px) {
    .cart_table .vs-cart-coupon {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart_table .actions {
        text-align: center;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .cart_totals td:first-child,
    .cart_totals th:first-child {
        width: 30%;
    }
}
/*------------------- 4.20. Checkout  -------------------*/
.checkout-ordertable th,
.checkout-ordertable td {
    vertical-align: top;
    text-align: right;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    border-left: none;
    color: #2c3e50;
}

.checkout-ordertable tr:last-child th {
    border-bottom: none;
}

.checkout-ordertable tr:last-child td {
    border-bottom: none;
}

.checkout-ordertable th {
    text-align: left;
}

.vs-checkout-wrapper .cart_table {
    margin-bottom: 0px;
    border: none;
}

/*------------------- 4.21. woocommerce  -------------------*/
.woocommerce-message,
.woocommerce-info {
    position: relative;
    padding: 11px 20px;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border-radius: 5px;
}

    .woocommerce-message::before,
    .woocommerce-info::before {
        content: "\f06a";
        font-family: var(--icon-font);
        font-weight: 900;
        margin-right: 10px;
    }

.woocommerce-notices-wrapper .woocommerce-message::before {
    content: "\f14a";
    font-weight: 300;
}

.woocommerce-cart-form {
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.shipping-calculator-form {
    display: none;
}

    .shipping-calculator-form p:first-child {
        margin-top: 20px;
    }

    .shipping-calculator-form select,
    .shipping-calculator-form .form-control,
    .shipping-calculator-form .form-select,
    .shipping-calculator-form textarea,
    .shipping-calculator-form input {
        height: 50px;
        padding-left: 20px;
        padding-right: 25px;
    }

.order-total .amount {
    color: var(--theme-color);
}

.woocommerce-form-login-toggle .woocommerce-info {
    background-color: var(--theme-color);
}

    .woocommerce-form-login-toggle .woocommerce-info .showlogin {
        color: var(--white-color);
        text-decoration: underline;
    }

.woocommerce-form-login {
    display: none;
    padding: 40px 40px 35px;
    margin-bottom: 30px;
    border-radius: 10px;
}

    .woocommerce-form-login .form-group:last-child {
        margin-bottom: 0;
    }

.woocommerce-form-coupon-toggle .woocommerce-info {
    background-color: var(--border-color);
    color: var(--title-color);
}

    .woocommerce-form-coupon-toggle .woocommerce-info a {
        text-decoration: underline;
    }

.woocommerce-form-coupon {
    padding: 40px;
    border-radius: 10px;
}

    .woocommerce-form-coupon .form-group:last-child {
        margin-bottom: 0;
    }

.woocommerce-checkout {
    margin-top: 60px;
}

    .woocommerce-checkout .form-group input:not(:last-child) {
        margin-bottom: var(--bs-gutter-x);
    }

    .woocommerce-checkout .shipping_address {
        display: none;
    }

.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .woocommerce-checkout-payment ul li {
        padding-top: 10px;
        border-bottom: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 16px;
    }

    .woocommerce-checkout-payment ul input[type=radio] ~ label {
        margin-bottom: 15px;
        color: var(--body-color);
        width: 100%;
    }

.woocommerce-checkout-payment .payment_box {
    color: #a1b1bc;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-bottom: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
}

    .woocommerce-checkout-payment .payment_box p {
        margin: 0;
        color: var(--title-color);
    }

.woocommerce-checkout-payment .place-order {
    margin-top: 30px;
}

/* Small devices */
@media (max-width: 767px) {
    .woocommerce-form-coupon {
        padding: 20px;
    }

    .woocommerce-form-login {
        padding: 20px 20px 15px;
    }
}
/*------------------- 4.22 Contct  -------------------*/
.contact-box_wrapper .outer-wrap {
    background-color: var(--theme-color);
    border-radius: 10px;
    padding: 30px 0px 60px;
    max-width: 1340px;
    margin-top: 0;
}

.contact-box {
    background-color: var(--white-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    margin-top: 30px;
    padding: 30px 25px;
    padding-left: 110px;
    position: relative;
}

    .contact-box .contact-box_icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        transition: 0.5s ease-in-out;
        background-color: var(--theme-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--white-color);
        position: absolute;
        left: 30px;
    }

    .contact-box .contact-box__title {
        margin-bottom: 5px;
    }

    .contact-box .contact-box__text {
        margin-bottom: -5px;
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
        font-family: var(--body-font);
        color: var(--title-color);
    }

    .contact-box .contact-box_list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .contact-box .contact-box_list li {
            display: block;
            margin-top: 2px;
            font-size: 14px;
            font-weight: 400;
            font-family: var(--body-font);
            color: var(--title-color);
        }

    .contact-box:hover .contact-box_icon {
        background-color: var(--theme-color2);
    }

/*------------------- 4.23 Contct  -------------------*/
.signup-form {
    padding: 40px 30px;
    border-radius: 10px;
}

/* Medium devices */
@media (max-width: 991px) {
    .signup-form {
        padding: 20px 15px;
    }
}
/*------------------- 4.26. Popup Search  -------------------*/
.popup-search-box {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    height: 100%;
    width: 0;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

    .popup-search-box button.searchClose {
        width: 60px;
        height: 60px;
        line-height: 60px;
        position: absolute;
        top: 40px;
        right: 40px;
        border: none;
        background-color: var(--theme-color);
        color: var(--white-color);
        font-size: 30px;
        border-radius: 50%;
        transition: all ease 0.4s;
    }

        .popup-search-box button.searchClose i {
            line-height: inherit;
        }

        .popup-search-box button.searchClose:hover {
            color: var(--white-color);
            background-color: var(--theme-color2);
        }

    .popup-search-box form {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        padding-bottom: 40px;
        cursor: auto;
        width: 100%;
        max-width: 700px;
        transform: translate(-50%, -50%) scale(0);
        transition: transform ease 0.4s;
        /* Large devices */
    }

@media (max-width: 1199px) {
    .popup-search-box form {
        max-width: 600px;
    }
}

.popup-search-box form input {
    font-size: 14px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--theme-color);
    background-color: transparent;
    padding-left: 30px;
    color: #fff;
    border-radius: 50px;
}

    .popup-search-box form input::-moz-placeholder {
        color: #fff;
    }

    .popup-search-box form input::-webkit-input-placeholder {
        color: #fff;
    }

    .popup-search-box form input:-ms-input-placeholder {
        color: #fff;
    }

    .popup-search-box form input::placeholder {
        color: #fff;
    }

.popup-search-box form button {
    position: absolute;
    top: 0px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    right: 13px;
    color: var(--white-color);
    cursor: pointer;
    width: 70px;
    height: 70px;
    transition: all ease 0.4s;
    transform: scale(1.001);
}

    .popup-search-box form button:hover {
        transform: scale(1.1);
    }

.popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    transition: all ease 0.4s;
}

    .popup-search-box.show form {
        transition-delay: 0.5s;
        transform: translate(-50%, -50%) scale(1);
    }

/*------------------- 4.27. Popup Side Menu  -------------------*/
.offcanvas-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
}

    .offcanvas-wrapper .closeButton {
        display: inline-block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        padding: 0;
        background-color: var(--theme-color);
        color: var(--white-color);
        border: none;
        border-radius: 50%;
        transform: rotate(0);
        transition: all ease 0.4s;
        z-index: 33;
    }

        .offcanvas-wrapper .closeButton i {
            line-height: inherit;
        }

        .offcanvas-wrapper .closeButton:hover {
            color: var(--white-color);
            border-color: transparent;
            transform: rotate(90deg);
            background-color: var(--theme-color2);
        }

    .offcanvas-wrapper .sidemenu-content {
        background-color: var(--white-color);
        width: 450px;
        margin-left: auto;
        padding: 50px 30px;
        height: 100%;
        overflow: scroll;
        position: relative;
        right: -500px;
        cursor: auto;
        transition-delay: 1s;
        transition: right ease 1s;
    }

        .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
            background-color: #F5F5F5;
        }

        .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
            width: 2px;
            background-color: #F5F5F5;
        }

    .offcanvas-wrapper .widget {
        padding: 0;
        border: none;
        background-color: transparent;
        margin-bottom: 50px;
    }

    .offcanvas-wrapper .footer-text {
        max-width: 100%;
    }

    .offcanvas-wrapper.show {
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: all ease 0.8s;
    }

        .offcanvas-wrapper.show .sidemenu-content {
            right: 0;
            opacity: 1;
            visibility: visible;
        }

/*=================================
    05. Spacing
==================================*/
.pt-30 {
    padding-top: 30px;
}

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

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

.mt-n1 {
    margin-top: -0.25rem;
}

.mt-n2 {
    margin-top: -0.5rem;
}

.mt-n3 {
    margin-top: -1rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mb-n1 {
    margin-bottom: -0.25rem;
}

.mb-n2 {
    margin-bottom: -0.5rem;
}

.mb-n3 {
    margin-bottom: -1rem;
}

.mb-n4 {
    margin-bottom: -1.5rem;
}

.mb-n5 {
    margin-bottom: -3rem;
}

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

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

.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

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

.mtb-70 {
    margin-top: 0;
    margin-bottom: 70px;
}

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

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

.space,
.space-top {
    padding-top: var(--section-space);
}

.space,
.space-bottom {
    padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {
    .space,
    .space-top {
        padding-top: var(--section-space-mobile);
    }

    .space,
    .space-bottom {
        padding-bottom: var(--section-space-mobile);
    }

    .space-extra,
    .space-extra-top {
        padding-top: calc(var(--section-space-mobile) - 30px);
    }

    .space-extra,
    .space-extra-bottom {
        padding-bottom: calc(var(--section-space-mobile) - 30px);
    }
}
/* Small devices */
@media (max-width: 767px) {
    .mtb-60 {
        margin: 0;
    }

    .mt-60 {
        margin-top: 0;
    }

    .mb-60 {
        margin-bottom: 0;
    }

    .mtb-70 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .mt-70 {
        margin-top: 0;
    }

    .mb-70 {
        margin-bottom: 0;
    }
}
/*=================================
    06. Pages
==================================*/
.header-layout4 {
    background-color: var(--theme-color);
}

    .header-layout4 .header-social a {
        /* Small devices */
    }

@media (max-width: 767px) {
    .header-layout4 .header-social a {
        margin-right: 8px;
    }
}

.header-layout4 .header-btns {
    margin-right: 15px;
}

.header-layout4 .vs-menu-toggle {
    float: right;
}

.header-layout4 .menu-style1 > ul > li {
    padding: 36px 0;
    margin: 0 20px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 5px;
    }
}

.header-layout4 .menu-style1 > ul > li > a {
    font-size: 16px;
}

.header-layout4 .sideMenuToggler {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin-left: 40px;
    color: var(--white-color);
    /* Large devices */
    /* Medium devices */
}

    .header-layout4 .sideMenuToggler:hover {
        color: var(--title-color);
    }

@media (max-width: 1199px) {
    .header-layout4 .sideMenuToggler {
        margin-left: 15px;
    }
}

@media (max-width: 991px) {
    .header-layout4 .sideMenuToggler {
        display: none;
    }
}

.header-layout4 .header-top {
    position: relative;
    z-index: 1;
    padding: 0 315px 0 0;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .header-top {
        padding: 0 100px 0 0;
    }
}

@media (max-width: 1199px) {
    .header-layout4 .header-top {
        padding: 0 15px 0 0;
    }
}

.header-layout4 .header-top__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 11px 0 11px 315px;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .header-top__left {
        padding: 11px 0 11px 100px;
    }
}

@media (max-width: 1199px) {
    .header-layout4 .header-top__left {
        padding: 11px 0 11px 15px;
    }
}

.header-layout4 .header-top__left::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--title-color);
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
}

.header-layout4 .header-contact li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    .header-layout4 .header-contact li i {
        width: inherit;
        height: inherit;
        background-color: transparent;
    }

.header-layout4 .header-links > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    gap: 35px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout4 .header-links > ul {
        gap: 15px;
    }
}

.header-layout4 .header-links > ul > li > a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
}

    .header-layout4 .header-links > ul > li > a:hover {
        color: var(--title-color);
    }

.header-layout4 .sticky-wrapper {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout4 .sticky-wrapper {
        padding-right: 15px;
    }
}

.header-layout4 .sticky-wrapper .sticky-active {
    flex: 1;
}

.header-layout4 .sticky-wrapper .header-box {
    position: relative;
    padding: 0 40px 0 40px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout4 .sticky-wrapper .header-box {
        padding: 0 0px 0 0px;
    }
}

.header-layout4 .sticky-wrapper .header-box::before {
    background-color: var(--white-color);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-top-right-radius: 15px;
    left: 0;
}

.header-right ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.item2 {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    border-right: 1px solid var(--theme-color);
    margin-right: 40px;
    gap: 14px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .item2 {
        display: none;
    }
}

.item2__icon {
    min-width: max-content;
}

.item2__text > a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
}

.item2:hover .item2__text > a {
    color: var(--theme-color);
}

.link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color);
    gap: 12px;
}

    .link > i {
        min-width: 20px;
        min-height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color2);
        border-radius: 50%;
        transition: all ease 0.4s;
    }

    .link:hover > i {
        background-color: var(--theme-color);
    }

.hero-layout4,
.hero-layout5 {
    position: relative;
}

    .hero-layout4 .hero-slide,
    .hero-layout5 .hero-slide {
        padding: 242px 0;
        position: relative;
        z-index: 1;
        /* Small devices */
    }

@media (max-width: 767px) {
    .hero-layout4 .hero-slide,
    .hero-layout5 .hero-slide {
        padding: 100px 0;
        background-size: cover;
        min-height: 541px;
    }
}

.hero-layout4 .hero-slide::before,
.hero-layout5 .hero-slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--title-color);
    opacity: 0.4;
    z-index: -1;
    top: 0;
    left: 0;
}

.hero-layout4 .icon-btn,
.hero-layout5 .icon-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11%;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .hero-layout4 .icon-btn,
    .hero-layout5 .icon-btn {
        left: 0;
    }
}

@media (max-width: 767px) {
    .hero-layout4 .icon-btn,
    .hero-layout5 .icon-btn {
        opacity: 0;
    }
}

.hero-layout4 .icon-btn.next-btn,
.hero-layout5 .icon-btn.next-btn {
    left: auto;
    right: 11%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .hero-layout4 .icon-btn.next-btn,
    .hero-layout5 .icon-btn.next-btn {
        right: 0;
    }
}

.hero-layout4 .hero-subtitle,
.hero-layout5 .hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-color2);
    display: inline-block;
    margin-bottom: 25px;
}

.hero-layout4 .hero-title,
.hero-layout5 .hero-title {
    color: var(--white-color);
    margin-bottom: 50px;
}

.hero-layout4 .hero-form,
.hero-layout5 .hero-form {
    padding: 45px 35px 19px 35px;
    box-shadow: 0px 6px 30px rgba(255, 104, 26, 0.15);
    border-radius: 0px 0px 20px 20px;
    margin: 0 -35px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .hero-layout4 .hero-form,
    .hero-layout5 .hero-form {
        margin: 0 0;
    }
}

@media (max-width: 767px) {
    .hero-layout4 .hero-form,
    .hero-layout5 .hero-form {
        padding: 15px;
    }
}

.hero-layout4 .hero-form .vs-btn,
.hero-layout5 .hero-form .vs-btn {
    width: 100%;
}

.hero-layout4 .hero-form input,
.hero-layout4 .hero-form .form-select,
.hero-layout5 .hero-form input,
.hero-layout5 .hero-form .form-select {
    height: 60px;
    padding: 0 30px 0 55px;
}

.hero-layout4 .hero-form .form-group > i,
.hero-layout5 .hero-form .form-group > i {
    top: 22px;
    left: calc(var(--bs-gutter-x) / 2 + 15px);
    color: #505050;
}

.about--layout4 .sec-text {
    max-width: 78%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .about--layout4 .sec-text {
        max-width: 100%;
    }
}

.about--layout4 .title-area {
    text-align: left;
}

.about-list2 {
    display: block;
}

    .about-list2 > li {
        margin-right: 0;
        margin-bottom: 20px;
        padding-left: 50px;
        font-size: 22px;
        font-weight: 600;
        color: var(--title-color);
        /* Small devices */
    }

@media (max-width: 767px) {
    .about-list2 > li {
        margin-bottom: 12px;
        padding-left: 40px;
        font-size: 16px;
    }
}

.about-list2 > li::before {
    content: "\f00c";
    width: 24px;
    height: 24px;
    outline: none;
    background-color: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--icon-font);
    text-align: center;
    font-size: 10px;
    color: var(--white-color);
    line-height: 24px;
}

.img-box4,
.img-box5 {
    display: flex;
    gap: 38px;
    position: relative;
    margin-left: -78px;
    margin-bottom: 30px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .img-box4,
    .img-box5 {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .img-box4,
    .img-box5 {
        gap: 5px;
    }
}

.img-box4 .img1,
.img-box4 .img2,
.img-box5 .img1,
.img-box5 .img2 {
    border-radius: 155px;
}

.img-box4 .img3,
.img-box5 .img3 {
    border-radius: 170px;
    margin-top: -28px;
    position: relative;
    /* z-index: -1; */
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .img3,
    .img-box5 .img3 {
        margin-top: -60px;
    }
}

.img-box4 .img1,
.img-box5 .img1 {
    min-width: 321px;
    /* Small devices */
    height: 600px;
}

@media (max-width: 767px) {
    .img-box4 .img1,
    .img-box5 .img1 {
        min-width: 320px;
    }
}

.img-box4 .img2,
.img-box5 .img2 {
    min-width: 270px;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .img2,
    .img-box5 .img2 {
        min-width: 220px;
    }
}

.img-box4 .discount,
.img-box5 .discount {
    position: absolute;
    min-width: 195px;
    min-height: 195px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
}

    .img-box4 .discount > span,
    .img-box5 .discount > span {
        display: block;
        font-size: 64px;
        font-weight: 600;
        color: var(--white-color);
        line-height: 1;
    }

    .img-box4 .discount > p,
    .img-box5 .discount > p {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600;
        color: var(--white-color);
    }

.img-box4__img2 {
    /* Small devices */
}

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

.img-box4__img1 {
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4__img1 {
        width: 100%;
    }
}

.img-box4 .discount {
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box4 .discount {
        top: auto;
        transform: translate(-50%, 0%);
    }
}

.fact--layout1 {
    padding: 185px 0 155px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .fact--layout1 {
        padding: 120px 0 90px;
    }
}

.fact-block {
    text-align: center;
    margin-bottom: 30px;
}

.fact-block__icon {
    min-width: 120px;
    min-height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-position: 100% 100%;
    margin-bottom: 15px;
}

.fact-block__number {
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 7px;
}

.fact-block__text {
    margin-bottom: 0;
    color: var(--white-color);
}

.package-style3 {
    border: 1px solid var(--theme-color);
}

    .package-style3 .package-title {
        margin: 3px 0 15px;
        text-transform: capitalize;
    }

    .package-style3 .package-price {
        font-weight: 700;
        font-size: 32px;
        color: var(--theme-color2);
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

        .package-style3 .package-price > span {
            display: block;
            font-size: 20px;
            font-weight: 400;
            color: var(--theme-color);
        }

    .package-style3 .package-review > i {
        color: var(--theme-color);
    }

    .package-style3 .package-footer {
        align-items: end;
        margin-top: 0;
        min-height: 55px;
    }

    .package-style3 .package-title {
        font-size: 24px;
        font-weight: 700;
    }

    .package-style3 .package-text {
        font-size: 18px;
    }

.gallery-style5 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 107px;
    border-radius: 28px;
    margin-top: -270px;
    z-index: 1;
    overflow: hidden;
    /* Medium devices */
}

@media (max-width: 991px) {
    .gallery-style5 {
        min-height: 390px;
        padding: 0 30px;
    }
}

.gallery-style5::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1c1c1c 1.32%, rgba(28, 28, 28, 0) 100%);
    z-index: -1;
    left: 0;
}

.gallery-style5 .gallery-content {
    max-width: 300px;
}

.gallery-style5 .play-btn {
    margin-bottom: 70px;
}

    .gallery-style5 .play-btn > i {
        color: var(--white-color);
        background-color: rgb(55, 212, 217);
        width: var(--icon-size, 100px);
        height: var(--icon-size, 100px);
        line-height: var(--icon-size, 100px);
    }

    .gallery-style5 .play-btn::before, .gallery-style5 .play-btn::after {
        background-color: rgba(255, 255, 255, 0.2);
        animation-name: ripple2;
    }

.features-style3 {
    text-align: left;
    padding: 36px;
    background: var(--white-color);
    border: 1px solid transparent;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

    .features-style3 .features-bg {
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease-in-out;
        z-index: -1;
    }

    .features-style3 .features-image {
        margin: 0 0 30px;
        background-color: var(--theme-color);
    }

        .features-style3 .features-image::before {
            display: none;
        }

        .features-style3 .features-image::after {
            display: none;
        }

    .features-style3 .features-title,
    .features-style3 .features-text {
        color: var(--title-color);
        transition: 0.5s ease-in-out;
    }

    .features-style3 .features-title {
        margin-bottom: 15px;
    }

    .features-style3 .features-link {
        min-width: 30px;
        min-height: 30px;
        background-color: var(--theme-color2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        float: right;
    }

    .features-style3:hover {
        background-color: var(--theme-color);
        border-color: var(--theme-color);
    }

        .features-style3:hover .features-bg {
            opacity: 1;
            visibility: visible;
            transition: 0.5s ease-in-out;
        }

        .features-style3:hover .features-image {
            background-color: var(--theme-color2);
        }

            .features-style3:hover .features-image::after {
                opacity: 0;
                visibility: hidden;
                transition: 0.5s ease-in-out;
            }

        .features-style3:hover .features-title,
        .features-style3:hover .features-text {
            color: var(--white-color);
            transition: 0.5s ease-in-out;
        }

.destination-style2,
.destination-style3 {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .destination-style2::before,
    .destination-style3::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 235px;
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 0px 0px 10px 10px;
        bottom: 0;
        z-index: 1;
    }

    .destination-style2 .destination-img,
    .destination-style3 .destination-img {
        width: 100%;
        transition: all 1s ease-in-out 0s;
    }

    .destination-style2 .destination-info,
    .destination-style3 .destination-info {
        position: absolute;
        bottom: 40px;
        left: 30px;
        z-index: 2;
    }

    .destination-style2 .destination-name,
    .destination-style3 .destination-name {
        margin-bottom: 5px;
    }

        .destination-style2 .destination-name > a,
        .destination-style3 .destination-name > a {
            color: var(--white-color);
        }

            .destination-style2 .destination-name > a:hover,
            .destination-style3 .destination-name > a:hover {
                color: var(--theme-color);
            }

    .destination-style2 .destination-text,
    .destination-style3 .destination-text {
        margin-bottom: 18px;
        color: var(--white-color);
    }

    .destination-style2 .destination-price,
    .destination-style3 .destination-price {
        font-size: 36px;
        color: var(--theme-color);
        font-weight: 700;
    }

    .destination-style2:hover .destination-img {
        transform: scale(1.2) rotate(5deg);
        transition: all 1s ease-in-out 0s;
    }

.benefits--layout1 {
    position: relative;
    z-index: 1;
}

    .benefits--layout1 .img1 {
        position: absolute;
        min-width: 48%;
        min-height: 770px;
        bottom: 0;
        left: 0;
        border-top-right-radius: 50px;
        /* Extra large devices */
        /* Large devices */
        /* Medium devices */
        /* Small devices */
    }

@media (max-width: 1500px) {
    .benefits--layout1 .img1 {
        min-width: 570px;
    }
}

@media (max-width: 1199px) {
    .benefits--layout1 .img1 {
        min-width: 470px;
    }
}

@media (max-width: 991px) {
    .benefits--layout1 .img1 {
        position: relative;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .benefits--layout1 .img1 {
        min-width: 100%;
    }
}

.benefits-element1 {
    min-width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #f5f5f5;
    border-top-left-radius: 50px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .benefits-element1 {
        min-width: 100%;
    }
}

.item {
    display: flex;
    gap: 58px;
    padding-right: 92px;
    margin-bottom: 45px;
    /* Large devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .item {
        gap: 20px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .item {
        padding-right: 0;
        gap: 15px;
    }
}

.item:last-child {
    margin-bottom: 0;
}

.item__icon {
    min-width: 72px;
    max-height: 72px;
    margin-top: 6px;
}

.item__title {
    color: var(--theme-color);
    margin-bottom: 7px;
    font-weight: 500;
}

.item__text {
    margin-bottom: 0;
}

.blog-style5 {
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    border-radius: 20px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .blog-style5 {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .blog-style5 {
        padding: 10px;
    }
}

.blog-style5 .blog-content {
    background: var(--white-color);
    padding: 0 30px 25px;
    text-align: center;
    border-radius: 10px;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .blog-style5 .blog-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 767px) {
    .blog-style5 .blog-content {
        padding: 0 10px 10px;
    }
}

.blog-style5 .blog-date {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--white-color);
    background: var(--theme-color);
    font-weight: 600;
    padding: 0 22px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog-style5 .blog-body {
    margin-top: -18px;
}

.blog-style5 .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

    .blog-style5 .blog-link::after {
        position: absolute;
        content: "";
        height: 16px;
        width: 1px;
        background-color: #505050;
        right: 0;
    }

    .blog-style5 .blog-link:last-child {
        padding-right: 0;
        margin-right: 0;
    }

        .blog-style5 .blog-link:last-child::after {
            display: none;
        }

.offer-block {
    padding: 80px 65px 50px;
    border: 3px solid #505050;
    border-radius: 24px;
    min-height: 250px;
    margin-bottom: -125px;
    position: relative;
    z-index: 9;
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 991px) {
    .offer-block {
        padding: 80px 65px 50px;
    }
}

@media (max-width: 767px) {
    .offer-block {
        padding: 30px 30px 0;
        min-height: 100%;
        text-align: center;
    }
}

.footer-layout4,
.footer-layout5 {
    padding-top: 195px;
    padding-bottom: 40px;
}

    .footer-layout4 .footer-newsletter2,
    .footer-layout5 .footer-newsletter2 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-layout4 .copyright-wrap,
    .footer-layout5 .copyright-wrap {
        text-align: center;
        padding: 15px 25px;
        position: relative;
        z-index: 2;
        border-top: 1px solid transparent;
        background: var(--title-color);
        border-radius: 10px;
    }

    .footer-layout4 .widget-area2,
    .footer-layout5 .widget-area2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .footer-layout4 .footer-widget.widget_nav_menu li,
    .footer-layout5 .footer-widget.widget_nav_menu li {
        float: left;
        width: 50%;
    }

        .footer-layout4 .footer-widget.widget_nav_menu li a,
        .footer-layout5 .footer-widget.widget_nav_menu li a {
            padding-left: 0;
            margin-bottom: 10px;
        }

    .footer-layout4 .footer-widget .newsletter-form .form-control,
    .footer-layout5 .footer-widget .newsletter-form .form-control {
        margin-bottom: 25px;
        background-color: #505050;
        height: 60px;
        border: 1px solid transparent;
    }

    .footer-layout4 .copyright-menu li::after,
    .footer-layout5 .copyright-menu li::after {
        background-color: var(--theme-color2);
    }

    .footer-layout4 .footer-widget .newsletter-form .vs-btn,
    .footer-layout5 .footer-widget .newsletter-form .vs-btn {
        border-radius: 10px;
    }

    .footer-layout4 .social-style1 a,
    .footer-layout5 .social-style1 a {
        border: 1px solid var(--theme-color2);
    }

        .footer-layout4 .social-style1 a:hover,
        .footer-layout5 .social-style1 a:hover {
            border-color: var(--theme-color);
        }

    .footer-layout4 .copyright-text a {
        color: var(--white-color);
        text-decoration: underline;
    }

        .footer-layout4 .copyright-text a:hover {
            color: var(--theme-color);
        }

    .footer-layout4 .vs-widget-about .footer-text {
        max-width: 257px;
    }

.testimonial-style4 {
    padding-bottom: 317px;
}

.testi-style3 {
    position: relative;
    z-index: 1;
    min-height: 383px;
    max-width: 373px;
    z-index: 1;
    margin-bottom: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 {
        background-color: var(--white-color);
        padding: 15px;
        min-height: 100%;
    }
}

.testi-style3 .testi-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-height: 373px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-bg {
        display: none;
    }
}

.testi-style3 .testi-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.testi-style3 .testi-avater {
    min-width: 114px;
    min-height: 114px;
    border-radius: 50%;
    border: 5px solid var(--white-color);
    overflow: hidden;
    filter: drop-shadow(4px 9px 4px rgba(0, 0, 0, 0.12));
    margin-left: 60px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-avater {
        margin-left: 0;
    }
}

.testi-style3 .testi-avater > img {
    min-width: 114px;
    min-height: 114px;
}

.testi-style3 .testi-client {
    text-align: right;
    padding-right: 28px;
}

.testi-style3 .testi-degi {
    display: inline-block;
    color: var(--theme-color2);
    margin-bottom: 6px;
    line-height: 1;
}

.testi-style3 .testi-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-name {
        font-size: 16px;
    }
}

.testi-style3 .testi-text {
    padding: 40px 55px 78px 63px;
    line-height: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .testi-style3 .testi-text {
        padding: 20px 0px 0;
        margin-bottom: 0;
    }
}

.testi-style3 .testi-rating > i {
    color: var(--theme-color);
}

.testi-style3 .testi-icon {
    position: absolute;
    bottom: 15px;
    right: 50px;
}

@media (max-width: 1790px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 8px;
    }

    .header-layout4 .sticky-wrapper .header-box {
        padding: 0 15px 0 15px;
    }

    .item2 {
        padding: 24px 15px;
        margin-right: 15px;
        gap: 15px;
    }
}
/* Extra large devices */
@media (max-width: 1500px) {
    .header-layout4 .menu-style1 > ul > li {
        margin: 0 5px;
    }
}

.header-layout5 .menu-style1 > ul > li {
    padding: 26px 0;
}

    .header-layout5 .menu-style1 > ul > li > a {
        color: var(--white-color);
    }

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

.header-layout5 .vs-menu-toggle:hover {
    background-color: var(--theme-color2);
}

.header-layout5 .sticky-wrapper {
    margin-bottom: -80px;
    background-color: transparent;
    /* Large devices */
}

@media (max-width: 1199px) {
    .header-layout5 .sticky-wrapper {
        margin-bottom: -79px;
    }
}

.header-layout5 .header-box {
    background-color: var(--title-color);
    padding: 0px 10px 0px 30px;
    border-radius: 0px 0px 10px 10px;
}

.header-layout5 .will-sticky .sticky-active {
    background-color: var(--title-color);
}

.header-layout5 .header-top {
    background-color: var(--title-color);
}

.header-layout5 .items {
    display: flex;
    align-items: center;
}

.header-layout5 .item2 {
    border-right: none;
    margin-right: 0;
    padding-left: 0;
    max-width: 310px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .header-layout5 .item2 {
        display: flex;
    }
}

.header-layout5 .item2__text {
    font-weight: 600;
    color: var(--title-color);
}

    .header-layout5 .item2__text > a {
        color: var(--theme-color);
    }

        .header-layout5 .item2__text > a:hover {
            color: var(--theme-color2);
        }

.header-layout5 .item2:last-child {
    padding-right: 0;
}

.header-layout5 .header-right > ul {
    gap: 40px;
}

.header-layout5 .header-dropdown .dropdown-toggle {
    background-color: transparent;
    height: 50px;
    padding-right: 0;
}

    .header-layout5 .header-dropdown .dropdown-toggle:hover {
        color: var(--theme-color);
    }

    .header-layout5 .header-dropdown .dropdown-toggle::after {
        margin-left: 9px;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        content: "\f107";
        font-family: var(--icon-font);
    }

    .header-layout5 .header-dropdown .dropdown-toggle > img {
        margin-right: 20px;
    }

.header-layout5 .vs-btn.style7 {
    min-height: 50px;
    padding: 15px 30px;
}

.hero-layout5 .hero-title {
    font-size: 84px;
    padding-right: 40px;
    /* Extra large devices */
    /* Small devices */
}

@media (max-width: 1500px) {
    .hero-layout5 .hero-title {
        font-size: 60px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-layout5 .hero-title {
        font-size: 36px;
    }
}

.hero-layout5 .hero-form {
    margin: 0 0;
}

.hero-layout5 .hero-content {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .hero-content {
        text-align: left;
    }
}

.hero-layout5 .icon-btn {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .icon-btn {
        left: 5%;
    }
}

.hero-layout5 .icon-btn.next-btn {
    /* Large devices */
}

@media (max-width: 1199px) {
    .hero-layout5 .icon-btn.next-btn {
        right: 5%;
    }
}

.hero-layout5 .hero-slide {
    min-height: 460px;
}

.img-box5 {
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    /* Large devices */
}

@media (max-width: 1199px) {
    .img-box5 {
        margin-left: 0;
        justify-content: center;
    }
}

.img-box5 .img-box__img1 {
    display: flex;
    gap: 20px;
    align-items: end;
    /* Small devices */
}

@media (max-width: 767px) {
    .img-box5 .img-box__img1 {
        flex-direction: column;
        align-items: center;
    }
}

.img-box5 .img1 {
    min-width: 320px;
    max-height: 313px;
    border-radius: 0;
    border-top-left-radius: 115px;
}

.img-box5 .img2 {
    min-width: 317px;
    border-radius: 0;
    border-top-right-radius: 75px;
}

.img-box5 .img-box__img2 {
    text-align: center;
}

.img-box5 .img3 {
    border-radius: 0;
    margin-top: 0;
    border-bottom-left-radius: 80px;
}

.about--layout5 {
    z-index: 1;
}

    .about--layout5 .element {
        bottom: 0;
        left: 0;
        position: absolute;
        width: 100%;
        min-height: 728px;
        background: linear-gradient(360deg, rgba(220, 254, 255, 0.55) -7.91%, #ffffff 100%);
        z-index: -2;
    }

    .about--layout5 .about-content {
        position: relative;
        padding-left: 27px;
        /* Medium devices */
    }

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

.about--layout5 .about-content .element {
    position: absolute;
    min-width: 950px;
    min-height: 900px;
    border-radius: 103px 103px 103px 0;
    background: var(--white-color);
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -40%;
    /* Large devices */
}

    .about--layout5 .about-content .element::before {
        content: "";
        position: absolute;
        min-width: 812px;
        min-height: 812px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 3px dashed #ffccb1;
        border-radius: 60px 60px 60px 0px;
    }

@media (max-width: 1199px) {
    .about--layout5 .about-content .element {
        display: none;
    }
}

.about--layout5 .about-content .vs-btn {
    margin-top: 50px;
}

.vs-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vs-card__img {
    min-width: 117px;
    min-height: 117px;
    border-radius: 50%;
    overflow: hidden;
}

.vs-card .sec-subtitle {
    margin-bottom: 0;
    color: var(--title-color);
    font-size: 28px;
    line-height: 1.3;
}

.item.style2 {
    gap: 20px;
    padding-right: 0;
}

    .item.style2 .item__icon {
        margin-top: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        min-height: 90px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA5MCA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxtYXNrIGlkPSJtYXNrMF84OF8zNSIgc3R5bGU9Im1hc2stdHlwZTphbHBoYSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjkwIiBoZWlnaHQ9Ijg5Ij4KPHJlY3QgeT0iMC4wNDM0NTciIHdpZHRoPSI5MCIgaGVpZ2h0PSI4OC45NTY2IiBmaWxsPSJ1cmwoI3BhdHRlcm4wKSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfODhfMzUpIj4KPHJlY3QgeT0iMC4wNDM0NTciIHdpZHRoPSI5MC4wODI2IiBoZWlnaHQ9Ijg4Ljk1NjYiIGZpbGw9IiNGRjY4MUEiLz4KPC9nPgo8ZGVmcz4KPHBhdHRlcm4gaWQ9InBhdHRlcm4wIiBwYXR0ZXJuQ29udGVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgd2lkdGg9IjEiIGhlaWdodD0iMSI+Cjx1c2UgeGxpbms6aHJlZj0iI2ltYWdlMF84OF8zNSIgdHJhbnNmb3JtPSJtYXRyaXgoMC4wMDYwNjA2MSAwIDAgMC4wMDYxMzE2OSAwIC0wLjAwNTg2NDU5KSIvPgo8L3BhdHRlcm4+CjxpbWFnZSBpZD0iaW1hZ2UwXzg4XzM1IiB3aWR0aD0iMTY1IiBoZWlnaHQ9IjE2NSIgeGxpbms6aHJlZj0iZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFLVUFBQUNsQ0FZQUFBQTlLejNhQUFBYTRrbEVRVlI0QWUxZGkxSGp5aExkRUc0SURtRXplR1N3cnNLU0pkZXJnZ3d1R2JBWlFBYVF3VzRHa0FFM0EyOEdoS0QzenVucFVXczhrbVVqTHJiVlZGSDZ5OUxNbWRQZmFYMzc1bi9lQXQ0QzNnTGVBdDRDblJab2l1SjdVMVdMWnJuOGkvL1ZjdEhVNWJLcFZsZE5WVjF4dVZ6K2hZdjBuTTROUG5tanFaYUxULzRKdi8xWHR3Q0JSZEFWdDAyRi93Qzg5ZXF1cWRkM3pXYnpYWjhSZ0RnRlVEUWJNM0FjcE5vOWw3TnNicGQvRVlpQi9mQm13cERDbHZxbU9DOGVNK2ZxOFhRWldaWkFCc3ZpWDRFdmJEY0Z3T1YzVmxkTmVVMDI1ek9DNmNQenBzL2wyeWZZQWdvRWdoR01vNklZNnlxNnV5S2I0bEpZc2dVcXIxY1J6K3NVR01zRjd5UDN1aFhSWDRrS0FFWW0rNVkvdWF6TDE2WXFucHAxOFhkRFppNlh3b0lBOERneHJjK3ZUVTNWQStBZk1YRDBHbCtlV0F0RXBnSEFJcHRWVjNoTUhndkE1VHJQcVJic2VBVWlnTGJaUkhDbnJ5ZGdiZ0UyQkxhT0xydXBnanF4dWlMSUtiTGIrOWpmNGZIQWxBNUcyekludXE3c3A0K0hqby9yRk4zTEJkaEo5K2t5N1Z3RnBSN0hNajFIai9FMzYrdWJwaTRmeUlSMThkaFU1VS8rMStVTm1WRlpXWmNZRUVYbU9TQ0t3WHpyOGhldjM2eC9rR1VCd2d3YlJwMDRjNi80ZkNOWldNLzM1VVF0UU5ZcnI1ZTRIVVV0UkxJUjF4LzVHUUtVWUlLT0NMQVZUMDFWdkRSMXVXMDI1WHRUbDgyQi8xdGVqM3RzeXJlbUtuNDM2L0toS1lNNHgyK0JwY0hJMUV2WHYvbGIvTjBWV1QzM1BtUmVETHdNUUZNR3oxM3YreVpvQVhaY3RicHZOZ0JLdGFEeVQvRzZ5MEJqZjQ2ZFI2WXp3RHNjZEllQ3REMWZRUDRXUVBnaW9CUXZBRm14THA4SlpESnBYaGNWdmJiOGFhMzJzZS92NTMyZ0JjaU1kZkVtSXE3NDN0Unc2UlNQT2RHTW44bUpQdjE1M211TmE0OWl2UlpRbndwZXZHdnhXMWhhTGZ1Z0lnaHozNmI2cTFyb01uaGIvVFE5VDl2QmwwZTJBQnNZdWhzQnRMb1RzVlF0ckg5UmJ4MllOQ3Z1emdPSXZXb0J4RDlFK2tPVURtQlFxQmJHVllSMm9BUlIvYmJhRmYzdVNsSzBITEVVZ05IUmZVK1JGdHd6dVZ1eEkzSkdBUzFhaXZ0ajlNQi9pUkY3Z1RqMCt3RHBFd2VhQWpCNWZ3R25NbXpMbXJuMjgzMTdXaUN3M1QzOWVnQmlSb2xQYnlHNlZOdndvbVBSTUJucTJBczRSaEYvMjRLenVFWGI1TVExMnpVQmJ0cU92cDFwQVk3dXVueURWY3JHN1dGSEZVRVU1Y0hkSTJBdW5rNWJUenlLRlVjTW51S0ZneGlXTzV6M3RiU2ZiV0lDRjZLK0xtOTBQOXBNMTMwWldvQ3VuTUNFY2JTUFlFYmJnT0U2V0tpWEpxSkhnREVGZWZFaTdRRnd3dThwekxuVFh2QllPQ0J0czhnNkhkQ01zTUQ5UVJkUDFrQ3hWMHFEaS9KT2xvUUYvYWtXY05ycFo3S3QxamxjWjJETzRFeHZseUVzNms3MkZsN3E1Qlp4dmI0Yk0yckpxa0djaXp1bzNEb2c5d3dTK0hUaG1OOFVqN0RTMng0SXhCQklJZDAvdTIxaHlCQjl5WVQvaGhxa0VjZTVpK25EcE1NMjV6clNkbGFDME8zWkxTVnV5MWp2azRxU01ZM2d6TGlIRVVlQnRMWFV0YzBocWJBdVJtS2JNNkRITDNvWmZXYndHeUlLRTVSc05zYUF3czNqVU5oSE5mb1VIVGVEZTBEYU1MN2VkYXluZlNHNjZJV215SWtQTWFSbjFhczdPL29VbkxsOWJEZ2tRRGdnajdEQzl3d3VKcGZBQUFwK1RkWFZtYkZVWFNsQXFTNGhpalJBSExidnptS2R3RktYejU0WEk1dENLVWZtREJyQ3dUZzlHTHR0S3JybUJxNGpFM2dBTUUxZjBVaGFGMytmQmVEMlBhU0lDSGxaKzVLNTY1cTYrQStWY2NsUmRIYnNndWR6d2FsWlYvVjFkS3BySDJtL2lmcTE2L1BVODg1aUtmN0VkdlFOUFRTTkdJcVRPWVFGOTRqVmZ4T01uZDhxa0RyMzNHU0FxWDFIWUdiY1NucjhwSmVXSVljZUZLT3cyUlJQTHFaUEJxaEk4c0JzejVpNWovNkxiQmxFdW00UDllMUpIV01hMVFqZkkwY2RjaU14V2owOCtMbml1Y09JK3daQThVNC9zdFVwQ1ZSRTNWWTBnQWhVbzRPZUZBRFRoNkdWUFlMZUdabXBvNmcrZG5yQkNYWGt2bzQrdytNSSt4cGdhbC9UVFFRSng3bFArU3g0UGZmTGwyUyt0Ymg3OUdYdzRMa0hvOGhHVEpaeFdYZjVuS3o2VXBVL3MvMW53S29nelozM3Bmc0l5SXkvSy9kUVlmb0NraWpnOG5Fcit5RFIrZ1dNVzYzdWMvMm8rMEJBU0RiVzdaTlk4cUhxNG5ITXd4Q1FMQUt3dW5NOThnc0FkdXdBQ0JLd3I0OUQ1dFlnZVB1dS9aVDlNajlrdit1bjJhenVlUzRyU0RoRG5xekk3Z1h1cmcvVEFvcGlmTUNkWk0vOTFIVzZEOFlZTm5TSUl4dmFHZkw4d0dnWVBUTUp6UUxNNWpUWS9mL2FPdlhJVGZrTFA2aDVqcmtmRjJvUFdkRHUramx6ajBIeGJzT1J0citweHNFaVI3MmtBMmNPMlB0OGFQMy9ZY0VYUEtEOFk4YmhyZ2duY0RuOUUvVWZnMCt5Vnp5WUVlbm5uREo0dDdtK1ZqQ3AwYXNlR04zLzZVdnFoM0NvaXVYRm1YVHBqOHJEWVY0eTVtZXY3czlhYlBrZ1NRWko4WmIydDkxV01yTDdQblZkZ1lnZkdZcHZONXc3Z3dvVytIY1d2TUEyZUxCQVM1bVJPREgrVEh2dTVPc3diZ2hJSk92Mk9jZkJvckN5eVpJK3cvQUNBU25NYVZ4Rk92OG5CZWZrQUV4dmlEQ2k3c3ZwRldyd3RQNUlkLzFjTENBcC9WckRoMzF2cHZQMkVaYmlaL0lsR0xEdnBwSmw3bnJrWllQUnFtT3RmdGtoTFZPU2thSzhSNnIyNGVqZy9ZT2dSTlk0c2tsY2oweU1BOXVSRjdiZUZ5TVBQbXdTbFpHeUJ3TnU2SUo5K2dLZDZTajY2VEh0K1FCU3lTZmptNlJJMTZrd3lSU0xJWnlOT3FaZzFHWHVvdWdrZC9mUC9BQUpZRmJGU3hZWGdTSHB6NTdLR3FjK0VHN0dHL2ZvazJSSmlXdlBzMU9VTWVhOE5OYjRFRUJ6eHc3YVo2M3NQcVlVc0tMaVJTbVo1SFB1bUZtL2UvSGVoeEdBanRJMEkrWVBBeVJpbVlaeWNkUGNEVUl0U1BnbW5TVzlEVHBPOVJRdlRWVStXMHlseHcvYTdwajdHUkh1K1pFK0lDTXA5ZVJCQUhCTlZkMGlhZU1nOE9WT1RobHlkNXNSSEdkSlowbkJRSS9SUTFCeWJrOStta1VPZTczN05MVEltOEswVDBhQ3U0Q2NKU05MNnNEc1VmV0lJWDRlUnI3NDFndTY5SUNWK1l4Zm14L1FZM0dKSDlBSDhhVkxDOFhBRUZ1UzJQSXVwQlNMY1Z1RDY5aGhZNWgyWFU5MmxuU1c3Q1VsUTJhS0YxM3k4eXZHaU5iOXZVc1Z6OHFHdVJQRkRlUzZaRytIS0dQTWVabVo1YWlZb250b3JNR2pnQVFRaDJMY1BPNStTUmZYZzRPdTlWdXFjY3pRWTdCSjhLR0FIT0VkdlkrbFBRWWZ5TVdhc3lqQ2oySnBXNEpUTlJBcGprY0JVT2sydlpoT1VBZWxNK1ZlREJUdk85Z0phV3dVNFFONlozcmQ0RFlwMkdjbU9pRDNBakpJeXdSNHhJL1dJeHJMbHBacWMrZ015UmZlS1dNN1plN25aUXdleGRVa0pWOGd6am05ZHU0TjdlOS9BQ20xQms4RUk4cUlFMHVTRks3N2U1ZldBcmNuaWVYRUwxVWQ4RUJ1OExqQkE0Tm5ONW1Ib0VUWWNVaUVNM296TUplQ041R1ppZzVLWjhyRE1EQWt3dXVCNkE1Qnh3SURiY1hXRGxPeUlnWS9oSDdZQTNrSGVudlZ1MVk0c01YNU80eUY3MVpZaWRqYk44bkhVOVJjSFRsYUhjbUpjSW1EUDlta253aEdYYUZUdkdmbUdmMUt6bnJPZXNkaW9HL1dJNU42ZWh6cEJCM3ozWVJLSWM1SnNicEVIZXhqSDhpdmN6RDNaQTZ4dHVVbWsyTkp5enA4bUR5Q01hRmJkd1c1NlA0d0tXVXlnK2ozTnRVMVZHcUhZbFdycSs2MGgrN0hJbDJmZEZCK0dKUUowVkVTcys1VXhyaVdUeDdMUnoxNUlweWJkUmsvV3U3NnBBUHl3NENFQ3BkSlZ3dkpQVGM3L25INktBSEVnT1QwVXhTY3NlaDZvZXVGSDhWQWo3K3kyZXgrNll5enpKUWh1WVJSWStiaXNKTGFSeC9JcjNkUTErVVcrRXIvS0lsVGZUTXlwTlorcWRlZGFaQnU1TGo0bmtSODEyV1RBaExiOUkvYnFkc2hwdDBwTkdEMVNWNVVyLzlNOVZCK241a0QzRWhnQmFqaUxScmExQ2NUcThpS2JnSGx6QnZTVlk4cFZZOW9RRWRRSXJ3ZC9ybFAvWko2QWtGbzVMdFBmZkFCT2FsMHkva2tJY0pEM29XQU1tRkpDMDRDMUl1Z1Rza1NmcSsrY0NPamlSVnI2bjhERTZaQXROdnVEbkttbkpncGV6OHdpbHBEeEY1SGxsczBoblg1N3A1M3pLUWRNMmNkdFNwK3B6RFRYTjRJeXZRRXV5MUdrQ2RpT0NBbkpLV3FmTFVZdzdyYU5SR1V1aU05a1Nlek9xL1hDM0pRVGdqS0hnYzY4UmJGOTJiMUl3ZElua1NMcUh6MlRwbTBVK1p1N0dTak9sMVFWc05sMlR5YTQ0Q2NtSlQ2UWFsRzk0NmozSVo3SU84cm41Y3pjYWM0VS9hSTVsNVBFSTBiNnp4SG5lbzVXNHYrN2xNUG9sNm1WSlV4V2o0OTRQM21kWU5jZkU5TVN0dlV1TFlNeVdQcENTazRIWlFPeW1sQldidzMrRnhpa01aWWFrSUdtVEtUc01HNmxLcG55dHdkZHdsTjJ5a09jcHMveWZVd3k0RjVGbGxRSmxVeVVHUFFPOFdCTkNFRzhCR3dtQ2xFVUFZUFVMTlovMUJDVENWMlo5dkRqQTdJQ1FIWk5KS2JhMERaVGxDMFlPMkFVRGNvNjFtcXBmS3ZpYmtGUHAwRkRoZWpjVHZLRkZzcGdOWFU1YlBpTDd1a2F5ak1hcHgycERqenpMbzlOOFZURjVUbFQ5Z3VBS0dXbys0QVVpMGlPVUdtM0ZMNWRLYVlqaW5tM3BicjFSMnNid1VlYlphcXV0S0NHTG8vTHVNY0NhQzJMbTlFaEh0Tnlsa3oyOVNEQ01hTWhoT0pzL1dkaW5CTGlpMG9rV1d1L3FPNi9OV3UrOFF4QitaRWFoY3dadHcrNHQxWmQ5Z3pBaElycWtmS3VpaWR3VmY1NHAweVVhZE16VHpuZGo4elIwZjhrdnhJMkhLNEhHQzR5RmJKOEtpT0EzSWlVdHFpUkpBeW9Uck9DVTZqWityeHVHeXExYjB3WmJYUVplTmZGM05EWndwR3JzcFg2NHVrWkE0aFJ3QTBnakJkVVdPSFlodHhTZFlZOGt5aGlaaGkzdUN1aXFldUJHNkJxUFpMaWtkdWQ1UlFUSHRrQmYvMW5YZUtpL0NQWTJCMTF3Rmx2V0o1SURLbUVlczd3QVFJZFNkcnZEZ281ODF1VTRodHZRZStMbUlOSGEzeVYxVzN3MHhwZlVnQUpPZnArR2VVUDg0U00yZGE2Sk1BcGNVWHNCWHdwVVNZWGRJaTZtU2VDN3A5V3NUTVFhVnNkL1N5ZUtRWFIvM2drZkNXaTJ4NE1VVm5CODJrM05WVlU2OGZuUzBjbUVkamdEVlB5NThxcGpYK1RSTGNGTDFWTTFKc2Nwc1gwUXRmL25UWGtJUHllRkFpa2xOSVdSWUVhamFvSEwxY05KdlYvVGltdEtsRnZGaHU2QlY5SFpSSGdiSXFYZ0lqc202VlJnNjUzSlMvTEZpenpJaWQxaTNFN2JwOEVFQmUzeHoxVUVmcklRNkNpMmh2WmdaZEx4VlhjS0JIcHF3QjJEYktrd1ZseHlVVXlrd3phTDVCSGZUaXhZc1QrRUE1ZUtEc3VJSWsyMXpZczN4WHNHWUJxVHRwcHNkb0RrUzNFZDgrWjhmOWxnZEp2dUtOcmlBVFJsUngzWlRYU3dCY2NUZDZHY09PZGZrY3dQbmtIM3B5dGh6TmxpcTYxUlhFanpsUjZ0NkdSSiszMFdERWlRd3hhcXA2K0g3ZS81Ti90Mjd3T0NqSGdiSjRWMUpUNEFsckJxc2JqSnNwRGFqbkRpN0Y2eDZtUi9EN3pEN3RkbHluekIyOHhVdjBTMnBrTUh6SXFjRmNIWUx5UUIrbElqWGVHQXByamVRTU4zZ2NsQ01HM01iNEplVVR5ckMwRjBHWDNFb2JTbEtHWW0zME1obytVRXlaZmxUOEVuQ09lTENEbEdLLzMrV0F2WGlucUc1MXlXZDFrb3NLeUw3ZVdtL1BhRUNtSi9LR3dlSHBCbzhQb3Q1QkJJeHM1Q01Qak5wc3hQVkRZN2tscW1jYjBrNnhsdDFXc2EwSEdSYUNld2lUeXVyVlF3UGZaZnNEN2lyeHRoQU1BSkR3MXREU0RyTmhRM3k3NCtkT3ZnR3FPQnRjMHZxMkdVUEk3S0FqVk9QZ3F6dG5TMmZMSFdJeXp2STR2MHVxclN5aTZFWXEyN3A0SEFSZzM4RmR0Z3hXT0kwZWR3L3RkTWpjMlJKV2RjeVhxQlpNZVZTV3RBVjR5WkpJaTF4eUxsZ2Yva2J0SjN1MjgzYWVHNkZxRjkxekI2TytmeERKb3VwUmhHOWx2VlBVWXN2UWRjL1h4MFlCTVQxSklqdlZvdGw0N1VwbnlvNzZRckFCTDAwZDV1TW9TektwUjg5RlZRd0pYNmZZK3RBMjBTOE8wZC9lTWRyWXMxNXU2U1lrMkNTYm5GWTNwYXBoeVZEZ1N0MURSNEZRTTRUVGkra0VCU2o1QVNoMEJoenFzKzZVbWFzd0s2a0pSQkN1cnVnZ2h6SERpWWNHRzB6c2xRVGZGRk9qdHlQNGpCV09pL2xqVEdWRHJpVjBoK0pkWEVVT3pCa096aTI5TW9qMklXS0RmeFN3a0dCTFc5KzBLbDZJblFSTG84Rm9UNFQ4NTgxTVJqcTNxVGZRWnltdUlVWjdZSkU3TUdmVkJyQzJKUTJOaWJ3NnhZSEdEQk40aUlmVzRKa0VsT3FaTnpkVFZ4R05IUW11eS9kMlBOOXlibUw4UVl5VzRsYWtKNE1yMndCTXdRU2lPVnA0b0x5T3RTa3Q4WDFvUFlJUnVnTDBCNHdTam9ZMTJQSXRpSEgvSU5ROHBBVUtWaTFvYVlNcGlZZnlqU0JsQWtaZ1NJYWxZZnhBdEUvZ2wwd1JqTkd3czQvaHh1S1JZVWVPaXVDZm1rZkh6STBaNVgzUno5UVo0ZHBCaEM4UWxFYjh4RkcrSlNhNFQyWXZwTmo1MUcxYTMzUUhvSEEvUHVCenZmUVE1QVhyMWdwRWVGM2doYUY3RUxrUXNNSXB3aHVKN0lCSnBWcnZwd0l3ZC9Qd0lESWZndzhHTndBY3FCZmNNYk45TndaTk1ML21WL1JYa3pVaG5vTk9hWFJJN2pOenZuUDQrWlI5SENtSThORFE0VU0vTjVpZjRWR2ZTeFB2V3dFWjVtd1Z0K2hqQUVyODFTQWhZS0Q0TFN4WjNLcUkveFRRN2JzcGxGaDVPREJrS0s0T3d3ZktyenZXTHdXWXdhMnp1bzlpT21hT0ZiZWlWOExTcHJPY1JRWUV3SjlnM093RHBCNFh2UUk2UlBFU0ZWeFk1akdqeUVYNTJhb3pNVWszV052b1U4a0d1aGZncWRpbW4vb0JCUWFVcUJRZlg3SWtoZFBBUVJnSjB5anhUKysrR0Q2dEkvVlNtR00rNzZFNkkxa1F4c3dTdVpIOEdtMUk5b2FsRFplZ2xHZ2hnNHIwL0JJdzJoL2xxT0VMY09TMEZGNWpVdnJxeWkzeU01UVdZRVZZMXdBZDdBU3lvRmE1QURoRGJEczR5WG11cVVOcDhmRmw2eHhCRE14ajltT1lOa0dyeklGNWR1SWIwbzZBTEo3RWFJSFloazVaTGhuQmtlQUpKTVlXZWlaQWR4SmlPNGQrR2p2MTlRM0ZOMTBIeURKV241VXo1bG1BVXdFSktjZGticklra2kxK3NTL1puOVFoWVRjOFVSS2F6eWJuY1BIbCs1Zzl4TkRUQmhaNC9NNHpEWjhZbmp4RGNUWUgvNlRhQTJCQWdsQkpwWHlJQnExRTc3WXNMTUE1T08zWEhyNGNmSDBQUUhxSHZrRlJUcXVjNlV3NG40cXlBL00wRFNYb2tDMExvclRLVC9hWlJtdmFmcVBJaGhYZWg0R1QzRSszQWYyV0dwQnZKd3ZGRWVkVytXbUFrMjRmY2VXRStmM3ZDa2lDRW1BRVdDV1BsbUNGeUQ1SjRBMDlsRGhVOFRMcVhOMThKM09HRktabUE5R09JcHB3Sjdnby84STJFTWM0Z0NkaU9USWtBUWxqUndJaG1OTWRBQWtBbnlFbzR3dGhoTWxJbzFPVklOWHZRSW80UUN6VlU5NitaR0RDS3hJa21VZ3RKR3FMRDVKdXZPSzdTTFZRbElxaFJKemZmdlY0aUpoTzloaGVtZ0FsL1M4WDFEZmh6OFFMaHVSaGlmejRETWwvbHkybElBQUJKZ3o1U29DQ0dlbVRYRjJGSEFhcGtxWlRIckEwU2Q4bkM3eWhCd3U2U1B3NmdKNUw5bHdqaUc5MFRyeXc2NW1mcTJkU2Z3d0dqZXFJZGZrYXBCbjBSaWtxZ0w0Umx4Q3p4OFVBdWdCQVJnQ0NKVFBwOE1LUVpTeDJKQy9PdERmUlg3NUVwRjIwZml0c0tLbUZNcWRLNTJlamp5aWU2VXVXbVFRQU1GaHpYZndOLzdQMjUwVXRMZTFUaklNbEdUUFhlSGtROVJza0RMTllrazlHbTJKZ1VqekhWRFBNUW0xbzFPam5qUkhza0RBaTR0cW9mb0lacW1CczZQdkx2Vjl4dUNpVWh0Q1VNQ1NuNnpKWkdPOG9ZT1U4SURlQ1BnWk1ZVWZxOURaV1hYSWlsMlIxUlhlUWtWQUJ4T2V1UDQ0Wk1CMjJURjZZdVhvU1JYaHFkVTNvbkN3OTZLeDVDRGc3N0dpcTVHRmVGWXdaaXV1UVFTNkdwN2ptZU4wRjZZNWpRSm1lUS9FQVA1Z0JLRUdvL2t5a1FyV042S3c1QnBnS1BFbkUxUW9tcjVKWUVWdzZ3WW9XSDJTY3MvOU1Na0IvbkZxMlR3cWN6OWp1Z3BEUkFscm9CQ0FhazVZNHJQSDFuVFdTV2xGLzBRYkpjUlk0Ni9YQVVBbEJDMWpQQW1JQm00andXSVl2ektYQ1Z6OWVZSFNpbjZIcmYwWi9uOFU5Q1M1bFF4ZzhBQ0x6TVdXZERTU04rRVFybmU0alUrQmR4STh6cDREdWxib2gyay9iVVJKdkpRK1NrZ1pUWGVXemMvUk5HbWY1V1FEbTMzeEloaHVONk03OWRuQ3VZelFEb0FTcG5qZGI1b1R1VjYxL1I2QVJlTXdLdnduV3N4ZzRFTVU2K0psU0dJeWRPampQQWVROTdhOXRQZXVsaXZDMEVZSmZVdzBleG16MUhBTk9QWDZjQ0J5anMzM2xPUUNqNm93QUl2NEJMRW9aQXU1Vk1zU2hPNnFMamVJODZKYklrVHl6N0I3dDVLOVlFbGpha0NIMVB2Y2NCcHhiT0hidE9SUmZNcjMzY3NCSlZzVFUxdmFycnhUQkZUTEJxVGRDTDN6VDR4R01URVZUWm9RT1hqeUc5dWtZbHJiOWZMMm5CYVRCeGZqQmVzOXAzenJnVENhOWswSFlLZXZmeGhsOFp1eTUvc09DOWxYVkdvRUFJdDAyd2RBRGF5TGp5dFRxWWJ1MElVUzg4NVpNR3J3Y0txN1pSaTY2KytDMXU1OGptbkh4NHJlQXRIOE9jUWVjQ0ltWkRzS2R5Y0Rvdk5PUHEvOGpvYjZLRTdiNDdCRFA4RUNzRWVIaUZHWkVXNlJXajNIYkVHRDBXRVQzamd4QUZmVWg2MmUzcFgzUFFTMUFNR0YwMHdxWFd0a0tPT3hMYnlZNW1pR3BBMkd6aEFYWWNmOWxiUGZyQVNwczkwb1FNcFMzWFBENU1CQnB0Q0JwZ2lBTTM2YmhlNzNTMEF2R0NjK2pMcm5EbnFKM2NsQ0grekZmMG5YSkZETWYya1lINEFZSzFMaE93SnIwT0lBNCtqbjFzOUI1RmNDQUdLNmxmenBpc1dQTXJQOGNsMWFHNjNqdHE0aGhzcldVUFFHcklWSkZVSVV3SDBRenhlNzZqNFQveEZpUmM2eXJETk9ZSTJ1Mktva0EvVmxBM1ZZN2M4UG1ROUE3L21KMmhBSTNaVWdZVFdCT0FpSDRSTW5Bb2ROcFZBVmdNd25CcG0xRkp6MW03cjJ3c2h3Tmp6VStSUEFhUVBkTHNtbENUUjA0c1NYMUMvVjE0TXFDNVJzTUwrcUpVckNCejBNWEYvUmVzSGVvOVJqSzY1bjNZZVNGazdxczRSS2ZMUUFUcVlDaDJKUmE1bUhlemZFdDYxZCtxQVdVVGUxTjJORWk0cTRJWEdUR29LT3dEeUpOTzU2ZENaRXBUbWFKaW1DZEgwNS9Fa0F6ZSttWi9rRXdLMEhKcGE2L05qV25kL3dLT3FBV2ZVSnU0bU1BNm90Y2o3cWVNckhmUGkvVytaeDFlY043Q2Z2MWV4SndYUFZHQURHOEU5L0RYVDlwMDM3ZWRsOWNObVdKOUFuRVN1V2NJWURsMXQ1SHJrVVJCY21lMFd2bG11cktnREk2bTRXOTVENEVBNWdPaHRabS9VTjhoV0N0YXNIendNekJNTkdCZ045STF6a0lCSWl0V082b0VwRWR3ZEpSYitidmsvMGx6S2pQNzhzVGFnRUIyWURGVGpjS1FCaktHRW9tRXZROUNXdWl3eW5Ld2F4aVpPVmVMNEl1ekZzaEFCbDdyc1JnVVNiZWJPSjBWT3E4QUJCK281UGhIUUdYQnlUQlNoRXRIMGlnUVNUUHBzeWZlMGJmZDhJdElQNjdQVUFGRUtzcTFsZmt1Z0FVb3ZtNVFRSXlqaFBNbURxdy90RnNWaithcW9TUkFvdjVWa1IrRVBzMFhsUUZRRjF3cTErT0FDRkNpUkRQeG5HT0psYnhyT0w2aEp2ZEgyMU1Dd2liQVVpVjZKbkdNS0krcDFFbE1CRXNlVEtsQWk2QVRrQUpZK2NmTVhhT3RkQjNnQ2x1SW9BYnY2MU1pMmVBSG93QkVsaDV6THY2T1NmYUF0cXhlTHdvYnRVb0VBZTlNQngxTXVxVk4zb05BVXpySEF4SlY4eGp0T1FGbUdKZHc3a2RMZTBZK2tNaDJUK3NjQ3Z6WWtKcDV2REJBckFnNnkzQjhvYmh0UWxUV3FHTGhwSjdaRjZaWjUyeTVZazJ0ei9XMkJaUWtObnpzUThneFQ2Q0FFWUo5dUZmQVJvc2Q3MU9kRlhNWlVkb0R3WlFPNDhsYm1PL0hPZjk1UDRza1JpQjE5NVBuZVZ3VDJIeUZvcURVZHpIcUk2ZTY4dVp0RUEwT2l3Z3JUaUhDRldyZGlBT2I1dExnWTE5QlB0QTRxd0FVUW9BMkh2NHVyZEFiQUVDaW5ya3JrRWtiaDhXVFJEZERpeHA0cys0Q2E2UE54dFlHWHZld0MzOGtMZEFmd3RZWnV3L3k0L3NhNEgvQWU1UGRFcXd5c29JQUFBQUFFbEZUa1N1UW1DQyIvPgo8L2RlZnM+Cjwvc3ZnPgo=");
        transition: all ease 0.4s;
    }

    .item.style2 .item__title {
        color: var(--title-color);
    }

    .item.style2 .item__text {
        padding-right: 10px;
    }

    .item.style2:hover .item__icon {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODgiIHZpZXdCb3g9IjAgMCA4OSA4OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxtYXNrIGlkPSJtYXNrMF84OF8zOCIgc3R5bGU9Im1hc2stdHlwZTphbHBoYSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9Ijg5IiBoZWlnaHQ9Ijg4Ij4KPHJlY3Qgd2lkdGg9Ijg5IiBoZWlnaHQ9Ijg3Ljk2ODIiIGZpbGw9InVybCgjcGF0dGVybjApIi8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF84OF8zOCkiPgo8cmVjdCB3aWR0aD0iODkuMDgxNyIgaGVpZ2h0PSI4Ny45NjgyIiBmaWxsPSIjMzdENEQ5Ii8+CjwvZz4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJwYXR0ZXJuMCIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPgo8dXNlIHhsaW5rOmhyZWY9IiNpbWFnZTBfODhfMzgiIHRyYW5zZm9ybT0ibWF0cml4KDAuMDA2MDYwNjEgMCAwIDAuMDA2MTMxNjkgMCAtMC4wMDU4NjQ1NykiLz4KPC9wYXR0ZXJuPgo8aW1hZ2UgaWQ9ImltYWdlMF84OF8zOCIgd2lkdGg9IjE2NSIgaGVpZ2h0PSIxNjUiIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBS1VBQUFDbENBWUFBQUE5S3ozYUFBQWE0a2xFUVZSNEFlMWRpMUhqeWhMZEVHNElEbUV6ZUdTd3JzS1NKZGVyZ2d3dUdiQVpRQWFRd1c0R2tBRTNBMjhHaEtEM3p1bnBVV3M4a21VakxyYlZWRkg2eTlMTW1kUGZhWDM3NW4vZUF0NEMzZ0xlQXQ0Q25SWm9pdUo3VTFXTFpybjhpLy9WY3RIVTViS3BWbGROVlYxeHVWeitoWXYwbk00TlBubWpxWmFMVC80SnYvMVh0d0NCUmRBVnQwMkYvd0M4OWVxdXFkZDN6V2J6WFo4UmdEZ0ZVRFFiTTNBY3BObzlsN05zYnBkL0VZaUIvZkJtd3BEQ2x2cW1PQzhlTStmcThYUVpXWlpBQnN2aVg0RXZiRGNGd09WM1ZsZE5lVTAyNXpPQzZjUHpwcy9sMnlmWUFnb0VnaEdNbzZJWTZ5cTZ1eUtiNGxKWXNnVXFyMWNSeitzVUdNc0Y3eVAzdWhYUlg0a0tBRVltKzVZL3VhekwxNllxbnBwMThYZERaaTZYd29JQThEZ3hyYyt2VFUzVkErQWZNWEQwR2wrZVdBdEVwZ0hBSXB0VlYzaE1IZ3ZBNVRyUHFSYnNlQVVpZ0xiWlJIQ25yeWRnYmdFMkJMYU9McnVwZ2pxeHVpTElLYkxiKzlqZjRmSEFsQTVHMnpJbnVxN3NwNCtIam8vckZOM0xCZGhKOStreTdWd0ZwUjdITWoxSGovRTM2K3VicGk0ZnlJUjE4ZGhVNVUvKzErVU5tVkZaV1pjWUVFWG1PU0NLd1h6cjhoZXYzNngva0dVQndnd2JScDA0YzYvNGZDTlpXTS8zNVVRdFFOWXJyNWU0SFVVdFJMSVIxeC81R1FLVVlJS09DTEFWVDAxVnZEUjF1VzAyNVh0VGw4MkIvMXRlajN0c3lyZW1LbjQzNi9LaEtZTTR4MitCcGNISTFFdlh2L2xiL04wVldUMzNQbVJlREx3TVFGTUd6MTN2K3lab0FYWmN0YnB2TmdCS3RhRHlUL0c2eTBCamY0NmRSNll6d0RzY2RJZUN0RDFmUVA0V1FQZ2lvQlF2QUZteExwOEpaREpwWGhjVnZiYjhhYTMyc2UvdjUzMmdCY2lNZGZFbUlxNzQzdFJ3NlJTUE9kR01uOG1KUHYxNTNtdU5hNDlpdlJaUW53cGV2R3Z4VzFoYUxmdWdJZ2h6MzZiNnExcm9NbmhiL1RROVQ5dkJsMGUyQUJzWXVoc0J0TG9Uc1ZRdHJIOVJieDJZTkN2dXpnT0l2V29CeEQ5RStrT1VEbUJRcUJiR1ZZUjJvQVJSL2JiYUZmM3VTbEswSExFVWdOSFJmVStSRnR3enVWdXhJM0pHQVMxYWl2dGo5TUIvaVJGN2dUajArd0RwRXdlYUFqQjVmd0duTW16TG1ybjI4MzE3V2lDdzNUMzllZ0JpUm9sUGJ5RzZWTnZ3b21QUk1CbnEyQXM0UmhGLzI0S3p1RVhiNU1RMTJ6VUJidHFPdnAxcEFZN3V1bnlEVmNyRzdXRkhGVUVVNWNIZEkyQXVuazViVHp5S0ZVY01udUtGZ3hpV081ejN0YlNmYldJQ0Y2SytMbTkwUDlwTTEzMFpXb0N1bk1DRWNiU1BZRWJiZ09FNldLaVhKcUpIZ0RFRmVmRWk3UUZ3d3U4cHpMblRYdkJZT0NCdHM4ZzZIZENNc01EOVFSZFAxa0N4VjBxRGkvSk9sb1FGL2FrV2NOcnBaN0t0MWpsY1oyRE80RXh2bHlFczZrNzJGbDdxNUJaeHZiNGJNMnJKcWtHY2l6dW8zRG9nOXd3UytIVGhtTjhVajdEUzJ4NEl4QkJJSWQwL3UyMWh5QkI5eVlUL2hocWtFY2U1aStuRHBNTTI1enJTZGxhQzBPM1pMU1Z1eTFqdms0cVNNWTNnekxpSEVVZUJ0TFhVdGMwaHFiQXVSbUtiTTZESEwzb1pmV2J3R3lJS0U1UnNOc2FBd3MzalVOaEhOZm9VSFRlRGUwRGFNTDdlZGF5bmZTRzY2SVdteUlrUE1hUm4xYXM3Ty9vVW5MbDliRGdrUURnZ2o3REM5d3d1SnBmQUFBcCtUZFhWbWJGVVhTbEFxUzRoaWpSQUhMYnZ6bUtkd0ZLWHo1NFhJNXRDS1VmbURCckN3VGc5R0x0dEtycm1CcTRqRTNnQU1FMWYwVWhhRjMrZkJlRDJQYVNJQ0hsWis1SzU2NXE2K0ErVmNjbFJkSGJzZ3VkendhbFpWL1YxZEtwckgybS9pZnExNi9QVTg4NWlLZjdFZHZRTlBUU05HSXFUT1lRRjk0alZmeE9NbmQ4cWtEcjMzR1NBcVgxSFlHYmNTbnI4cEplV0lZY2VGS093MlJSUExxWlBCcWhJOHNCc3o1aTVqLzZMYkJsRXVtNFA5ZTFKSFdNYTFRamZJMGNkY2lNeFdqMDgrTG5pdWNPSSt3WkE4VTQvc3RVcENWUkUzVlkwZ0FoVW80T2VGQURUaDZHVlBZTGVHWm1wbzZnK2RuckJDWFhrdm80K3crTUkreHBnYWwvVFRRUUp4N2xQK1N4NFBmZkxsMlMrdGJoNzlHWHc0TGtIbzhoR1RKWnhXWGY1bkt6NlVwVS9zLzFud0tvZ3paMzNwZnNJeUl5L0svZFFZZm9Da2lqZzhuRXIreURSK2dXTVc2M3VjLzJvKzBCQVNEYlc3Wk5ZOHFIcTRuSE13eENRTEFLd3VuTTk4Z3NBZHV3QUNCS3dyNDlENXRZZ2VQdXUvWlQ5TWo5a3YrdW4yYXp1ZVM0clNEaERucXpJN2dYdXJnL1RBb3BpZk1DZFpNLzkxSFc2RDhZWU5uU0lJeHZhR2ZMOHdHZ1lQVE1KelFMTTVqVFkvZi9hT3ZYSVRma0xQNmg1anJrZkYyb1BXZER1K2psemowSHhic09SdHIrcHhzRWlSNzJrQTJjTzJQdDhhUDMvWWNFWFBLRDhZOGJocmdnbmNEbjlFL1VmZzAreVZ6eVlFZW5ubkRKNHQ3bStWakNwMGFzZUdOMy82VXZxaDNDb2l1WEZtWFRwajhyRFlWNHk1bWV2N3M5YWJQa2dTUVpKOFpiMnQ5MVdNckw3UG5WZGdZZ2ZHWXB2TjV3N2d3b1crSGNXdk1BMmVMQkFTNW1ST0RIK1RIdnU1T3N3YmdoSUpPdjJPY2ZCb3JDeXlaSSt3L0FDQVNuTWFWeEZPdjhuQmVma0FFeHZpRENpN3N2cEZXcnd0UDVJZC8xY0xDQXAvVnJEaDMxdnB2UDJFWmJpWi9JbEdMRHZwcEpsN25ya1pZUFJxbU90ZnRraExWT1NrYUs4UjZyMjRlamcvWU9nUk5ZNHNrbGNqMHlNQTl1UkY3YmVGeU1QUG13U2xaR3lCd051NklKOStnS2Q2U2o2NlRIdCtRQlN5U2ZqbTZSSTE2a3d5UlNMSVp5Tk9xWmcxR1h1b3Vna2QvZlAvQUFKWUZiRlN4WVhnU0hwejU3S0dxYytFRzdHRy9mb2syUkppV3ZQczFPVU1lYThOTmI0RUVCenh3N2FaNjNzUHFZVXNLTGlSU21aNUhQdW1GbS9lL0hlaHhHQWp0STBJK1lQQXlSaW1ZWnljZFBjRFVJdFNQZ21uU1c5RFRwTzlSUXZUVlUrVzB5bHh3L2E3cGo3R1JIdStaRStJQ01wOWVSQkFIQk5WZDBpYWVNZzhPVk9UaGx5ZDVzUkhHZEpaMG5CUUkvUlExQnliazkrbWtVT2U3MzdOTFRJbThLMFQwYUN1NENjSlNOTDZzRHNVZldJSVg0ZVJyNzQxZ3U2OUlDVitZeGZteC9RWTNHSkg5QUg4YVZMQzhYQUVGdVMyUEl1cEJTTGNWdUQ2OWhoWTVoMlhVOTJsblNXN0NVbFEyYUtGMTN5OHl2R2lOYjl2VXNWejhxR3VSUEZEZVM2WkcrSEtHUE1lWm1aNWFpWW9udG9yTUdqZ0FRUWgyTGNQTzUrU1JmWGc0T3U5VnVxY2N6UVk3Qko4S0dBSE9FZHZZK2xQUVlmeU1XYXN5akNqMkpwVzRKVE5SQXBqa2NCVU9rMnZaaE9VQWVsTStWZURCVHZPOWdKYVd3VTRRTjZaM3JkNERZcDJHY21PaUQzQWpKSXl3UjR4SS9XSXhyTGxwWnFjK2dNeVJmZUtXTTdaZTduWlF3ZXhkVWtKVjhnemptOWR1NE43ZTkvQUNtMUJrOEVJOHFJRTB1U0ZLNzdlNWZXQXJjbmllWEVMMVVkOEVCdThMakJBNE5uTjVtSG9FVFljVWlFTTNvek1KZUNONUdaaWc1S1o4ckRNREFrd3V1QjZBNUJ4d0lEYmNYV0RsT3lJZ1kvaEg3WUEza0hlbnZWdTFZNHNNWDVPNHlGNzFaWWlkamJOOG5IVTlSY0hUbGFIY21KY0ltRFA5bWtud2hHWGFGVHZHZm1HZjFLem5yT2VzZGlvRy9XSTVONmVoenBCQjN6M1lSS0ljNUpzYnBFSGV4akg4aXZjekQzWkE2eHR1VW1rMk5KeXpwOG1EeUNNYUZiZHdXNTZQNHdLV1V5ZytqM050VTFWR3FIWWxXcnErNjBoKzdISWwyZmRGQitHSlFKMFZFU3MrNVV4cmlXVHg3TFJ6MTVJcHliZFJrL1d1NzZwQVB5dzRDRUNwZEpWd3ZKUFRjNy9uSDZLQUhFZ09UMFV4U2NzZWg2b2V1Rkg4VkFqNyt5MmV4KzZZeXp6SlFodVlSUlkrYmlzSkxhUngvSXIzZFExK1VXK0VyL0tJbFRmVE15cE5aK3FkZWRhWkJ1NUxqNG5rUjgxMldUQWhMYjlJL2JxZHNocHQwcE5HRDFTVjVVci85TTlWQituNWtEM0VoZ0JhamlMUnJhMUNjVHE4aUtiZ0hsekJ2U1ZZOHBWWTlvUUVkUUlyd2QvcmxQL1pKNkFrRm81THRQZmZBQk9hbDB5L2trSWNKRDNvV0FNbUZKQzA0QzFJdWdUc2tTZnErK2NDT2ppUlZyNm44REU2WkF0TnZ1RG5LbW5KZ3Blejh3aWxwRHhGNUhsbHMwaG5YNTdwNTN6S1FkTTJjZHRTcCtwekRUWE40SXl2UUV1eTFHa0NkaU9DQW5KS1dxZkxVWXc3cmFOUkdVdWlNOWtTZXpPcS9YQzNKUVRnaktIZ2M2OFJiRjkyYjFJd2RJbmtTTHFIejJUcG0wVStadTdHU2pPbDFRVnNObDJUeWE0NENjbUpUNlFhbEc5NDZqM0laN0lPOHJuNWN6Y2FjNFUvYUk1bDVQRUkwYjZ6eEhuZW81VzR2KzdsTVBvbDZtVkpVeFdqNDk0UDNtZFlOY2ZFOU1TdHZVdUxZTXlXUHBDU2s0SFpRT3ltbEJXYnczK0Z4aWtNWllha0lHbVRLVHNNRzZsS3BueXR3ZGR3bE4yeWtPY3BzL3lmVXd5NEY1RmxsUUpsVXlVR1BRTzhXQk5DRUc4Qkd3bUNsRVVBWVBVTE5aLzFCQ1RDVjJaOXZEakE3SUNRSFpOSktiYTBEWlRsQzBZTzJBVURjbzYxbXFwZkt2aWJrRlBwMEZEaGVqY1R2S0ZGc3BnTlhVNWJQaUw3dWtheWpNYXB4MnBEanp6TG85TjhWVEY1VGxUOWd1QUtHV28rNEFVaTBpT1VHbTNGTDVkS2FZamlubTNwYnIxUjJzYndVZWJaYXF1dEtDR0xvL0x1TWNDYUMyTG05RWhIdE55bGt6MjlTRENNYU1oaE9Kcy9XZGluQkxpaTBva1dXdS9xTzYvTld1KzhReEIrWkVhaGN3WnR3KzR0MVpkOWd6QWhJcnFrZkt1aWlkd1ZmNTRwMHlVYWRNelR6bmRqOHpSMGY4a3Z4STJISzRIR0M0eUZiSjhLaU9BM0lpVXRxaVJKQXlvVHJPQ1U2alorcnh1R3lxMWIwd1piWFFaZU5mRjNORFp3cEdyc3BYNjR1a1pBNGhSd0EwZ2pCZFVXT0hZaHR4U2RZWThreWhpWmhpM3VDdWlxZXVCRzZCcVBaTGlrZHVkNVJRVEh0a0JmLzFuWGVLaS9DUFkyQjExd0ZsdldKNUlES21FZXM3d0FRSWRTZHJ2RGdvNTgxdVU0aHR2UWUrTG1JTkhhM3lWMVczdzB4cGZVZ0FKT2ZwK0dlVVA4NFNNMmRhNkpNQXBjVVhzQlh3cFVTWVhkSWk2bVNlQzdwOVdzVE1RYVZzZC9TeWVLUVhSLzNna2ZDV2kyeDRNVVZuQjgyazNOVlZVNjhmblMwY21FZGpnRFZQeTU4cXBqWCtUUkxjRkwxVk0xSnNjcHNYMFF0Zi9uVFhrSVB5ZUZBaWtsTklXUllFYWphb0hMMWNOSnZWL1RpbXRLbEZ2Rmh1NkJWOUhaUkhnYklxWGdJanNtNlZSZzY1M0pTL0xGaXp6SWlkMWkzRTdicDhFRUJlM3h6MVVFZnJJUTZDaTJodlpnWmRMeFZYY0tCSHBxd0IyRGJLa3dWbHh5VVV5a3d6YUw1QkhmVGl4WXNUK0VBNWVLRHN1SUlrMjF6WXMzeFhzR1lCcVR0cHBzZG9Ea1MzRWQ4K1o4ZjlsZ2RKdnVLTnJpQVRSbFJ4M1pUWFN3QmNjVGQ2R2NPT2Rma2N3UG5rSDNweXRoek5saXE2MVJYRWp6bFI2dDZHUkorMzBXREVpUXd4YXFwNitIN2UvNU4vdDI3d09DakhnYko0VjFKVDRBbHJCcXNiakpzcERham5EaTdGNng2bVIvRDd6RDd0ZGx5bnpCMjh4VXYwUzJwa01IeklxY0ZjSFlMeVFCK2xJalhlR0FwcmplUU1OM2djbENNRzNNYjRKZVVUeXJDMEYwR1gzRW9iU2xLR1ltMzBNaG8rVUV5WmZsVDhFbkNPZUxDRGxHSy8zK1dBdlhpbnFHNTF5V2Qxa29zS3lMN2VXbS9QYUVDbUovS0d3ZUhwQm84UG90NUJCSXhzNUNNUGpOcHN4UFZEWTdrbHFtY2IwazZ4bHQxV3NhMEhHUmFDZXdpVHl1clZRd1BmWmZzRDdpcnh0aEFNQUpEdzF0RFNEck5oUTN5NzQrZE92Z0dxT0J0YzB2cTJHVVBJN0tBalZPUGdxenRuUzJmTEhXSXl6dkk0djB1cXJTeWk2RVlxMjdwNEhBUmczOEZkdGd4V09JMGVkdy90ZE1qYzJSSldkY3lYcUJaTWVWU1d0QVY0eVpKSWkxeHlMbGdmL2tidEozdTI4M2FlRzZGcUY5MXpCNk8rZnhESm91cFJoRzlsdlZQVVlzdlFkYy9YeDBZQk1UMUpJanZWb3RsNDdVcG55bzc2UXJBQkwwMGQ1dU1vU3pLcFI4OUZWUXdKWDZmWSt0QTIwUzhPMGQvZU1kcllzMTV1NlNZazJDU2JuRlkzcGFwaHlWRGdTdDFEUjRGUU00VFRpK2tFQlNqNUFTaDBCaHpxcys2VW1hc3dLNmtKUkJDdXJ1Z2doekhEaVljR0cwenNsUVRmRkZPanR5UDRqQldPaS9salRHVkRyaVYwaCtKZFhFVU96QmtPemkyOU1vajJJV0tEZnhTd2tHQkxXOSswS2w2SW5RUkxvOEZvVDRUODU4MU1SanEzcVRmUVp5bXVJVVo3WUpFN01HZlZCckMySlEyTmlidzZ4WUhHREJONGlJZlc0SmtFbE9xWk56ZFRWeEdOSFFtdXkvZDJQTjl5Ym1MOFFZeVc0bGFrSjRNcjJ3Qk13UVNpT1ZwNG9MeU90U2t0OFgxb1BZSVJ1Z0wwQjR3U2pvWTEyUEl0aUhIL0lOUThwQVVLVmkxb2FZTXBpWWZ5alNCbEFrWmdTSWFsWWZ4QXRFL2dsMHdSak5Hd3M0L2h4dUtSWVVlT2l1Q2Zta2ZIekkwWjVYM1J6OVFaNGRwQmhDOFFsRWI4eEZHK0pTYTRUMll2cE5qNTFHMWEzM1FIb0hBL1B1Qnp2ZlFRNUFYcjFncEVlRjNnaGFGN0VMa1FzTUlwd2h1SjdJQkpwVnJ2cHdJd2QvUHdJRElmZ3c4R053QWNxQmZjTWJOOU53Wk5NTC9tVi9SWGt6VWhub05PYVhSSTdqTnp2blA0K1pSOUhDbUk4TkRRNFVNL041aWY0VkdmU3hQdld3RVo1bXdWdCtoakFFcjgxU0FoWUtENExTeFozS3FJL3hUUTdic3BsRmg1T0RCa0tLNE93d2ZLcnp2V0x3V1l3YTJ6dW85aU9tYU9GYmVpVjhMU3ByT2NSUVlFd0o5ZzNPd0RwQjRYdlFJNlJQRVNGVnhZNWpHanlFWDUyYW96TVVrM1dOdm9VOGtHdWhmZ3FkaW1uL29CQlFhVXFCUWZYN0lraGRQQVFSZ0oweWp4VCsrK0dENnRJL1ZTbUdNKzc2RTZJMWtReHN3U3VaSDhHbTFJOW9hbERaZWdsR2doZzRyMC9CSXcyaC9scU9FTGNPUzBGRjVqVXZycXlpM3lNNVFXWUVWWTF3QWQ3QVN5b0ZhNUFEaERiRHM0eVhtdXFVTnA4ZkZsNnh4QkRNeGo5bU9ZTmtHcnpJRjVkdUliMG82QUxKN0VhSUhZaGs1WkxobkJrZUFKSk1ZV2VpWkFkeEppTzRkK0dqdjE5UTNGTjEwSHlESlduNVV6NWxtQVV3RUpLY2RrYnJJa2tpMStzUy9abjlRaFlUYzhVUkthenlibmNQSGwrNWc5eE5EVEJoWjQvTTR6RFo4WW5qeERjVFlILzZUYUEyQkFnbEJKcFh5SUJxMUU3N1lzTE1BNU9PM1hIcjRjZkgwUFFIcUh2a0ZSVHF1YzZVdzRuNHF5QS9NMERTWG9rQzBMb3JUS1QvYVpSbXZhZnFQSWhoWGVoNEdUM0UrM0FmMldHcEJ2Snd2RkVlZFcrV21BazI0ZmNlV0UrZjN2Q2tpQ0VtQUVXQ1dQbG1DRnlENUo0QTA5bERoVThUTHFYTjE4SjNPR0ZLWm1BOUdPSXBwd0o3Z28vOEkyRU1jNGdDZGlPVElrQVFsalJ3SWhtTk1kQUFrQW55RW80d3RoaE1sSW8xT1ZJTlh2UUlvNFFDelZVOTYrWkdEQ0t4SWttVWd0SkdxTEQ1SnV2T0s3U0xWUWxJcWhSSnpmZnZWNGlKaE85aGhlbWdBbC9TOFgxRGZoejhRTGh1UmhpZno0RE1sL2x5MmxJQUFCSmd6NVNvQ0NHZW1UWEYyRkhBYXBrcVpUSHJBMFNkOG5DN3loQnd1NlNQdzZnSjVMOWx3amlHOTBUcnl3NjVtZnEyZFNmd3dHamVxSWRma2FwQm4wUmlrcWdMNFJseEN6eDhVQXVnQkFSZ0NDSlRQcDhNS1FaU3gySkMvT3REZlJYNzVFcEYyMGZpdHNLS21GTXFkSzUyZWpqeWllNlV1V21RUUFNRmh6WGZ3Ti83UDI1MFV0TGUxVGpJTWxHVFBYZUhrUTlSc2tETE5Za2s5R20ySmdVanpIVkRQTVFtMW8xT2pualJIc2tEQWk0dHFvZm9JWnFtQnM2UHZMdlY5eHVDaVVodENVTUNTbjZ6SlpHTzhvWU9VOElEZUNQZ1pNWVVmcTlEWldYWElpbDJSMVJYZVFrVkFCeE9ldVA0NFpNQjIyVEY2WXVYb1NSWGhxZFUzb25Ddzk2S3g1Q0RnNzdHaXE1R0ZlRll3Wml1dVFRUzZHcDdqbWVOMEY2WTVqUUptZVEvRUFQNWdCS0VHby9reWtRcldONkt3NUJwZ0tQRW5FMVFvbXI1SllFVnc2d1lvV0gyU2NzLzlNTWtCL25GcTJUd3FjejlqdWdwRFJBbHJvQkNBYWs1WTRyUEgxblRXU1dsRi8wUWJKY1JZNDYvWEFVQWxCQzFqUEFtSUJtNGp3V0lZdnpLWENWejllWUhTaW42SHJmMFovbjhVOUNTNWxReGc4QUNMek1XV2REU1NOK0VRcm5lNGpVK0JkeEk4enA0RHVsYm9oMmsvYlVSSnZKUStTa2daVFhlV3pjL1JOR21mNVdRRG0zM3hJaGh1TjZNNzlkbkN1WXpRRG9BU3BuamRiNW9UdVY2MS9SNkFSZU13S3Z3bldzeGc0RU1VNitKbFNHSXlkT2pqUEFlUTk3YTl0UGV1bGl2QzBFWUpmVXcwZXhtejFIQU5PUFg2Y0NCeWpzMzNsT1FDajZvd0FJdjRCTEVvWkF1NVZNc1NoTzZxTGplSTg2SmJJa1R5ejdCN3Q1SzlZRWxqYWtDSDFQdmNjQnB4Yk9IYnRPUlJmTXIzM2NzQkpWc1RVMXZhcnJ4VEJGVExCcVRkQ0wzelQ0eEdNVEVWVFpvUU9YanlHOXVrWWxyYjlmTDJuQmFUQnhmakJlczlwM3pyZ1RDYTlrMEhZS2V2ZnhobDhadXk1L3NPQzlsWFZHb0VBSXQwMndkQURheUxqeXRUcVlidTBJVVM4ODVaTUdyd2NLcTdaUmk2NisrQzF1NThqbW5IeDRyZUF0SDhPY1FlY0NJbVpEc0tkeWNEb3ZOT1BxLzhqb2I2S0U3YjQ3QkRQOEVDc0VlSGlGR1pFVzZSV2ozSGJFR0QwV0VUM2pneEFGZlVoNjJlM3BYM1BRUzFBTUdGMDB3cVhXdGtLT094TGJ5WTVtaUdwQTJHemhBWFljZjlsYlBmckFTcHM5MG9RTXBTM1hQRDVNQkJwdENCcGdpQU0zNmJoZTczUzBBdkdDYytqTHJuRG5xSjNjbENIK3pGZjBuWEpGRE1mMmtZSDRBWUsxTGhPd0pyME9JQTQram4xczlCNUZjQ0FHSzZsZnpwaXNXUE1yUDhjbDFhRzYzanRxNGhoc3JXVVBRR3JJVkpGVUlVd0gwUXp4ZTc2ajRUL3hGaVJjNnlyRE5PWUkydTJLb2tBL1ZsQTNWWTdjOFBtUTlBNy9tSjJoQUkzWlVnWVRXQk9BaUg0Uk1uQW9kTnBWQVZnTXduQnBtMUZKejFtN3Iyd3Nod05qelUrUlBBYVFQZExzbWxDVFIwNHNTWDFDL1YxNE1xQzVSc01MK3FKVXJDQnowTVhGL1Jlc0hlbzlSaks2NW4zWWVTRms3cXM0UktmTFFBVHFZQ2gySlJhNW1IZXpmRXQ2MWQrcUFXVVRlMU4yTkVpNHE0SVhHVEdvS093RHlKTk81NmRDWkVwVG1hSmltQ2RIMDUvRWtBemUrbVova0V3SzBISnBhNi9OalduZC93S09xQVdmVUp1NG1NQTZvdGNqN3FlTXJIZlBpL1crWngxZWNON0NmdjFleEp3WFBWR0FERzhFOS9EWFQ5cDAzN2VkbDljTm1XSjlBbkVTdVdjSVlEbDF0NUhya1VSQmNtZTBXdmxtdXJLZ0RJNm00Vzk1RDRFQTVnT2h0Wm0vVU44aFdDdGFzSHp3TXpCTU5HQmdOOUkxemtJQklpdFdPNm9FcEVkd2RKUmIrYnZrLzBsektqUDc4c1RhZ0VCMllERlRqY0tRQmpLR0VvbUV2UTlDV3Vpd3luS3dheGlaT1ZlTDRJdXpGc2hBQmw3cnNSZ1VTYmViT0owVk9xOEFCQitvNVBoSFFHWEJ5VEJTaEV0SDBpZ1FTVFBwc3lmZTBiZmQ4SXRJUDY3UFVBRkVLc3ExbGZrdWdBVW92bTVRUUl5amhQTW1EcXcvdEZzVmorYXFvU1JBb3Y1VmtSK0VQczBYbFFGUUYxd3ExK09BQ0ZDaVJEUHhuR09KbGJ4ck9MNmhKdmRIMjFNQ3dpYkFVaVY2Sm5HTUtJK3AxRWxNQkVzZVRLbEFpNkFUa0FKWStjZk1YYU90ZEIzZ0NsdUlvQWJ2NjFNaTJlQUhvd0JFbGg1ekx2Nk9TZmFBdHF4ZUx3b2J0VW9FQWU5TUJ4MU11cVZOM29OQVV6ckhBeEpWOHhqdE9RRm1HSmR3N2tkTGUwWStrTWgyVCtzY0N2ellrSnA1dkRCQXJBZzZ5M0I4b2JodFFsVFdxR0xocEo3WkY2Wlo1Mnk1WWsydHovVzJCWlFrTm56c1E4Z3hUNkNBRVlKOXVGZkFSb3NkNzFPZEZYTVpVZG9Ed1pRTzQ4bGJtTy9IT2Y5NVA0c2tSaUIxOTVQbmVWd1QySHlGb3FEVWR6SHFJNmU2OHVadEVBME9pd2dyVGlIQ0ZXcmRpQU9iNXRMZ1kxOUJQdEE0cXdBVVFvQTJIdjR1cmRBYkFFQ2lucmtya0VrYmg4V1RSRGREaXhwNHMrNENhNlBOeHRZR1h2ZXdDMzhrTGRBZnd0WVp1dy95NC9zYTRIL0FlNVBkRXF3eXNvSUFBQUFBRWxGVGtTdVFtQ0MiLz4KPC9kZWZzPgo8L3N2Zz4K");
        transition: all ease 0.4s;
    }

.feature--layout5 {
    padding-top: 155px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .feature--layout5 {
        padding-top: 90px;
    }
}

.brand__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 40px;
    text-align: center;
    position: relative;
    /* Medium devices */
    /* Extra small devices */
}

@media (max-width: 991px) {
    .brand__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .brand__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.brand__list .line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    /* Small devices */
}

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

.brand__list .line.one, .brand__list .line.three {
    width: 1px;
    height: 100%;
    left: 33%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.one, .brand__list .line.three {
        left: 40%;
    }
}

.brand__list .line.two {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.two {
        display: none;
    }
}

.brand__list .line.three {
    right: 33%;
    left: auto;
    /* Medium devices */
}

@media (max-width: 991px) {
    .brand__list .line.three {
        right: 40%;
    }
}

.video--layout5 {
    padding: 120px 0 280px;
    position: relative;
    z-index: 1;
    /* Medium devices */
}

@media (max-width: 991px) {
    .video--layout5 {
        padding: 100px 0 200px;
    }
}

.video--layout5 .bg-overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #000000 1.32%, #000000 100%);
    opacity: 0.4;
}

.video-content {
    text-align: center;
}

    .video-content .sec-title {
        font-size: 64px;
        /* Medium devices */
    }

@media (max-width: 991px) {
    .video-content .sec-title {
        font-size: 24px;
    }
}

.video-content .play-btn {
    margin-bottom: 50px;
}

    .video-content .play-btn::before, .video-content .play-btn::after {
        background-color: rgba(255, 255, 255, 0.2);
        animation-name: ripple2;
        animation-duration: 3s;
    }

    .video-content .play-btn::after {
        animation-duration: 3.2s;
    }

    .video-content .play-btn > i {
        color: var(--white-color);
        background-color: var(--theme-color2);
        width: var(--icon-size, 100px);
        height: var(--icon-size, 100px);
        line-height: var(--icon-size, 100px);
    }

.cate--layout5 {
    margin-top: -162px;
    position: relative;
    z-index: 1;
}

    .cate--layout5 .cate__box {
        background-color: var(--theme-color);
        padding: 100px 80px 90px;
        background-size: contain;
        border-radius: 30px;
        /* Medium devices */
    }

@media (max-width: 991px) {
    .cate--layout5 .cate__box {
        padding: 20px;
        background-position: top;
    }
}

.cate__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .cate__list {
        gap: 15px;
    }
}

.cate-block {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    min-width: 180px;
    min-height: 180px;
    justify-content: center;
    background: var(--white-color);
    border-radius: 11px;
    transition: all ease 0.4s;
    /* Medium devices */
}

@media (max-width: 991px) {
    .cate-block {
        min-width: 160px;
        min-height: 160px;
    }
}

.cate-block > i {
    color: var(--theme-color);
    transition: all ease 0.4s;
    margin-bottom: 25px;
}

.cate-block > span {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: all ease 0.4s;
}

.cate-block:hover {
    background-color: var(--theme-color2);
}

    .cate-block:hover > i {
        color: var(--white-color);
    }

    .cate-block:hover > span {
        color: var(--white-color);
    }

.testimonial-slider5 {
    margin: -30px -10px;
}

.testi-style5 {
    background-color: var(--theme-color);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px 154px 15px 15px;
    padding: 40px 30px 40px 35px;
    margin: 30px 10px;
    position: relative;
}

    .testi-style5::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--white-color);
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 10px 180.5px 10px 10px;
    }

    .testi-style5 .testi-header {
        display: flex;
        align-items: flex-end;
        gap: 30px;
        margin-bottom: 45px;
        /* Small devices */
    }

@media (max-width: 767px) {
    .testi-style5 .testi-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
}

.testi-style5 .testi-avater {
    min-width: 120px;
    min-height: 120px;
    border-radius: 75px 75px 15px 61px;
}

    .testi-style5 .testi-avater > img {
        width: 100%;
        border-radius: 75px 75px 15px 61px;
    }

.testi-style5 .testi-rating {
    display: inline-flex;
    align-items: center;
}

    .testi-style5 .testi-rating > i {
        font-size: 16px;
        color: var(--theme-color);
    }

.testi-style5 .testi-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.testi-style5 .testi-text {
    margin-bottom: 0;
    line-height: 2.25;
}

.testi-style5 .testi-body {
    position: relative;
    z-index: 1;
}

.offer-block.style2 {
    margin-top: -67px;
    margin-bottom: 0;
    /* Medium devices */
}

@media (max-width: 991px) {
    .offer-block.style2 {
        margin-top: -40px;
    }
}

.blog-style6,
.blog-style7 {
    background-color: var(--white-color);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .blog-style6 .blog-img,
    .blog-style7 .blog-img {
        overflow: hidden;
    }

        .blog-style6 .blog-img img,
        .blog-style7 .blog-img img {
            width: 100%;
            max-height: 285px;
            object-fit: cover;
            transition: all 1s ease-in-out 0s;
            /* Medium devices */
        }

@media (max-width: 991px) {
    .blog-style6 .blog-img img,
    .blog-style7 .blog-img img {
        max-height: 100%;
        height: 100%;
    }
}

.blog-style6 .blog-top,
.blog-style7 .blog-top {
    margin-bottom: 15px;
}

.blog-style6 .blog-content,
.blog-style7 .blog-content {
    padding: 30px 30px 40px;
}

.blog-style6 .blog-meta,
.blog-style7 .blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

    .blog-style6 .blog-meta::after,
    .blog-style7 .blog-meta::after {
        position: absolute;
        content: "";
        height: 16px;
        width: 1px;
        background-color: #505050;
        right: 0;
    }

    .blog-style6 .blog-meta:last-child,
    .blog-style7 .blog-meta:last-child {
        padding-right: 0;
        margin-right: 0;
    }

        .blog-style6 .blog-meta:last-child::after,
        .blog-style7 .blog-meta:last-child::after {
            display: none;
        }

.blog-style6 .blog-bottom,
.blog-style7 .blog-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffccb1;
}

    .blog-style6 .blog-bottom .blog-link,
    .blog-style7 .blog-bottom .blog-link {
        font-weight: 600;
        color: var(--theme-color);
    }

        .blog-style6 .blog-bottom .blog-link:hover,
        .blog-style7 .blog-bottom .blog-link:hover {
            color: var(--theme-color2);
        }

.blog-style6 .blog-date,
.blog-style7 .blog-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--theme-color);
    text-align: center;
    color: var(--white-color);
    min-width: 50px;
    min-height: 50px;
    font-size: 14px;
    line-height: 1;
}

    .blog-style6 .blog-date > span,
    .blog-style7 .blog-date > span {
        font-size: 24px;
        line-height: 1;
        font-weight: 700;
    }

.blog-style6:hover .blog-img img,
.blog-style7:hover .blog-img img {
    transform: scale(1.2) rotate(5deg);
    transition: all 1s ease-in-out 0s;
}

.blog-style7 {
    display: flex;
    /* Small devices */
}

@media (max-width: 767px) {
    .blog-style7 {
        flex-wrap: wrap;
    }
}

.blog-style7 .blog-img {
    min-width: 388px;
    /* Small devices */
}

@media (max-width: 767px) {
    .blog-style7 .blog-img {
        min-width: 100%;
    }
}

.blog-style7 .blog-top {
    margin-bottom: 5px;
}

.blog-style7 .blog-content {
    min-height: 285px;
    padding: 30px;
}

.blog-style7 .blog-title {
    margin-bottom: 5px;
}

.blog-style7 .blog-text {
    margin-bottom: 15px;
}

.footer-layout5 {
    /* Large devices */
}

@media (max-width: 1199px) {
    .footer-layout5 {
        padding-top: 60px;
    }
}

.footer-layout5 .vs-widget-about .footer-text {
    text-transform: capitalize;
    max-width: 100%;
    padding-right: 15px;
    margin-bottom: 35px;
}

.footer-layout5 .widget_nav_menu .menu li {
    float: left;
    width: 50%;
}

    .footer-layout5 .widget_nav_menu .menu li > a {
        padding-left: 0;
    }

.vs-card.style2 {
    border-radius: 20px;
    flex-direction: column;
    position: absolute;
    min-width: 270px;
    bottom: 55px;
    right: 0;
    background-color: var(--white-color);
    gap: 0;
    padding: 0 0 20px 0;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    z-index: 9;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-card.style2 {
        position: relative;
    }
}

.vs-card.style2 .vs-card__icon {
    min-width: 99px;
    min-height: 109px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    margin-bottom: 15px;
}

.vs-card.style2 > a {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
    display: block;
    margin-bottom: 10px;
}

.vs-card.style2 > p {
    font-size: 20px;
    color: var(--theme-color2);
    max-width: 80%;
    margin: 0 auto 0;
    text-align: center;
}

.destination-list {
    display: flex;
    /* Medium devices */
}

@media (max-width: 991px) {
    .destination-list {
        flex-direction: column;
    }
}

.destination-style3 {
    min-height: 404px;
    border-radius: 0;
    flex: 1;
    transition: all ease 0.4s;
    margin-bottom: 0;
}

    .destination-style3::before {
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0;
        visibility: hidden;
        transition: all ease 0.4s;
        bottom: -15px;
    }

    .destination-style3 .destination-info {
        right: 0;
        min-width: 370px;
        opacity: 1;
        visibility: visible;
        transition: all ease 0.4s;
    }

    .destination-style3:hover {
        flex: 1.5;
    }

        .destination-style3:hover::before,
        .destination-style3:hover .destination-info {
            opacity: 1;
            visibility: visible;
            transition: all ease 0.4s;
        }

.package-style3 .package-content {
    /* Large devices */
}

@media (max-width: 1199px) {
    .package-style3 .package-content {
        padding: 25px 15px 15px;
    }
}

.header-layout6 {
    position: absolute;
    width: 100%;
    top: 60px;
}

    .header-layout6 .sticky-wrapper {
        background-color: transparent;
    }

    .header-layout6 .menu-style1 > ul > li {
        padding: 26px 0;
    }

    .header-layout6 .vs-logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -22%;
        background-color: var(--theme-color);
        padding: 20px 30px;
        border-radius: 15px;
    }

    .header-layout6 .container::before {
        background-color: var(--white-color);
        position: absolute;
        content: "";
        width: 999%;
        height: 100%;
        border: none;
        left: unset;
        right: 0;
        border-radius: 15px;
    }

    .header-layout6 .header-right ul li:first-child {
        margin-right: 40px;
    }

    .header-layout6 .header-right .header-btns .searchBoxTggler {
        background-color: var(--theme-color2);
    }

        .header-layout6 .header-right .header-btns .searchBoxTggler:hover {
            color: var(--white-color);
            background-color: var(--theme-color);
        }

    .header-layout6 .header-right .header-btns .sideCartToggler {
        color: var(--theme-color);
        background-color: transparent;
        border: 1px solid var(--theme-color2);
    }

        .header-layout6 .header-right .header-btns .sideCartToggler:hover {
            color: var(--white-color);
            background-color: var(--theme-color2);
        }

    .header-layout6 .main-menu {
        text-align: left;
    }

    .header-layout6 .vs-btn:hover i {
        background-color: var(--theme-color);
    }

.hero-layout3 {
    position: relative;
}

    .hero-layout3::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5607843137);
    }

    .hero-layout3 .hero-mask {
        padding-top: 240px;
        padding-bottom: 125px;
    }

    .hero-layout3 .hero-img {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        border: 5px solid var(--white-color);
    }

        .hero-layout3 .hero-img img {
            width: 100%;
            border-radius: 12px;
        }

    .hero-layout3 .hero-content {
        position: relative;
        margin-top: 40px;
    }

        .hero-layout3 .hero-content .hero-subtitle {
            display: inline-block;
            color: var(--white-color);
            margin-bottom: 20px;
        }

        .hero-layout3 .hero-content .hero-title {
            font-size: 70px;
            color: var(--white-color);
        }

    .hero-layout3 .hero-bottom {
        position: absolute;
        width: 100%;
        top: 75%;
        left: 35px;
    }

        .hero-layout3 .hero-bottom .hero-form {
            padding: 20px 35px 20px 20px;
            box-shadow: 0px 6px 30px rgba(255, 104, 26, 0.15);
            border-radius: 20px;
            margin: 0 -35px;
            background-color: var(--white-color);
            /* Medium devices */
            /* Small devices */
        }

@media (max-width: 991px) {
    .hero-layout3 .hero-bottom .hero-form {
        margin: 0 0;
    }
}

@media (max-width: 767px) {
    .hero-layout3 .hero-bottom .hero-form {
        padding: 15px;
    }
}

.hero-layout3 .hero-bottom .hero-form .vs-btn {
    padding: 22px 48px;
}

.hero-layout3 .hero-bottom .hero-form input,
.hero-layout3 .hero-bottom .hero-form .form-select {
    height: 60px;
    padding: 0 30px 0 55px;
    border: none;
    border-radius: 0;
    font-size: 18px;
}

.hero-layout3 .hero-bottom .hero-form .form-group {
    margin-bottom: 0;
}

    .hero-layout3 .hero-bottom .hero-form .form-group > i {
        font-size: 26px;
        max-width: 20px;
        top: 17px;
        left: calc(var(--bs-gutter-x) / 2 + 10px);
        color: var(--theme-color2);
    }

.package-layout1 {
    background-color: var(--white-color);
}

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

        .package-layout1 .package-top .title-area {
            margin-bottom: 0;
        }

            .package-layout1 .package-top .title-area .sec-title {
                margin-bottom: 20px;
            }

        .package-layout1 .package-top .title-btn .vs-btn {
            padding: 22px 30px;
        }

    .package-layout1 .package-style2 {
        padding: 40px 0;
        border-top: 1px solid #EEEEEE;
    }

        .package-layout1 .package-style2 .package-img {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
        }

            .package-layout1 .package-style2 .package-img::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0.5606617647) 3%, rgba(255, 255, 255, 0) 100%);
            }

            .package-layout1 .package-style2 .package-img img {
                width: 100%;
            }

            .package-layout1 .package-style2 .package-img .price-box {
                position: absolute;
                bottom: 25px;
                display: inline-block;
                left: 25px;
            }

                .package-layout1 .package-style2 .package-img .price-box .price-text {
                    color: var(--white-color);
                    margin-bottom: 0;
                }

                .package-layout1 .package-style2 .package-img .price-box .package-price {
                    font-size: 24px;
                    color: var(--white-color);
                }

            .package-layout1 .package-style2 .package-img .package-icon {
                width: 40px;
                height: 40px;
                line-height: 40px;
                border-radius: 100%;
                text-align: center;
                background-color: var(--white-color);
                display: inline-block;
                position: absolute;
                right: 25px;
                top: 25px;
                transition: all 0.5s ease;
                cursor: pointer;
            }

                .package-layout1 .package-style2 .package-img .package-icon i {
                    color: var(--theme-color);
                    transform: rotate(-45deg);
                }

                .package-layout1 .package-style2 .package-img .package-icon:hover {
                    background-color: var(--theme-color);
                }

                    .package-layout1 .package-style2 .package-img .package-icon:hover i {
                        color: var(--white-color);
                    }

    .package-layout1 .package-review i {
        color: var(--theme-color);
    }

    .package-layout1 .package-review span {
        margin-left: 5px;
    }

    .package-layout1 .package-text {
        margin-bottom: 0;
    }

    .package-layout1 .package-title {
        margin-bottom: 5px;
    }

        .package-layout1 .package-title a {
            color: var(--title-color);
        }

            .package-layout1 .package-title a:hover {
                color: var(--theme-color);
            }

    .package-layout1 .package-meta ul {
        padding-left: 0;
    }

        .package-layout1 .package-meta ul li {
            list-style: none;
        }

            .package-layout1 .package-meta ul li:not(:last-child) {
                margin-bottom: 15px;
            }

            .package-layout1 .package-meta ul li a {
                padding-left: 50px;
                display: inline-block;
            }

                .package-layout1 .package-meta ul li a i {
                    position: absolute;
                    left: 0;
                    width: 100%;
                    max-width: 30px;
                    font-size: 22px;
                    margin-right: 0;
                    text-align: center;
                    color: var(--theme-color2);
                }

                .package-layout1 .package-meta ul li a strong {
                    margin-right: 5px;
                }

.about-layout1 {
    padding-bottom: 250px;
}

    .about-layout1 .about-list3 {
        padding-left: 0;
        margin-bottom: 60px;
    }

        .about-layout1 .about-list3 .list-item {
            display: flex;
            align-items: center;
        }

            .about-layout1 .about-list3 .list-item:first-child {
                margin-bottom: 40px;
            }

            .about-layout1 .about-list3 .list-item .about-icon {
                width: 100%;
                max-width: 70PX;
                height: 70px;
                line-height: 70px;
                background-color: var(--theme-color2);
                border-radius: 100%;
                text-align: center;
                margin-right: 30px;
            }

            .about-layout1 .about-list3 .list-item .icon-content .title {
                font-size: 28px;
                margin-bottom: 0;
            }

            .about-layout1 .about-list3 .list-item .icon-content .text {
                margin-bottom: 0;
            }

    .about-layout1 .about-content .title-area {
        margin-bottom: 40px;
    }

    .about-layout1 .about-content .sec-title {
        margin-bottom: 30px;
    }

    .about-layout1 .about-bottom {
        display: flex;
        align-items: center;
    }

        .about-layout1 .about-bottom .vs-btn {
            margin-top: 0;
            margin-right: 46px;
        }

        .about-layout1 .about-bottom .item2 {
            padding: 0;
            margin-right: 0;
            border-right: 0;
        }

            .about-layout1 .about-bottom .item2 .item2__icon {
                width: 60px;
                height: 60px;
                line-height: 60px;
                text-align: center;
                border-radius: 50%;
                background-color: var(--theme-color2);
            }

                .about-layout1 .about-bottom .item2 .item2__icon img {
                    max-width: 30px;
                }

    .about-layout1 .img-box3 {
        text-align: right;
        position: relative;
    }

        .about-layout1 .img-box3 .box1 {
            position: absolute;
            top: 22%;
            left: 80px;
        }

        .about-layout1 .img-box3 .img1 {
            border-radius: 40px;
        }

        .about-layout1 .img-box3 .img3 {
            max-width: 100%;
            border-radius: 40px;
            border: none;
            margin-left: 0;
        }

        .about-layout1 .img-box3 .media-box1 {
            width: 100px;
            height: 242px;
            background-color: var(--theme-color2);
            text-align: center;
            position: relative;
            border-radius: 0px 50px 50px 50px;
            border: 3px solid var(--white-color);
        }

            .about-layout1 .img-box3 .media-box1 .media-text {
                left: 50%;
                top: 50px;
                position: absolute;
                font-size: 24px;
                color: var(--white-color);
                font-weight: 600;
                transform: translateX(-50%) rotate(-90deg);
                margin-bottom: 0;
                line-height: 125%;
                text-align: left;
            }

            .about-layout1 .img-box3 .media-box1 .media-info {
                display: block;
                width: 78px;
                height: 78px;
                line-height: 78px;
                background-color: var(--theme-color);
                text-align: center;
                border-radius: 100%;
                color: var(--white-color);
                font-size: 40px;
                font-weight: 600;
                position: absolute;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
            }

        .about-layout1 .img-box3 .bottom-img {
            margin-top: -127px;
            display: flex;
            align-items: baseline;
        }

.offer-layout1 {
    border-radius: 20px;
    transform: translateY(-25%);
}

    .offer-layout1 .title-area {
        margin-left: 100px;
    }

    .offer-layout1 .img-box1 {
        text-align: right;
        margin-right: 30px;
    }

.destiniation-layout1 .destination-style3 {
    min-height: 590px;
}

    .destiniation-layout1 .destination-style3::before {
        height: 100%;
    }

    .destiniation-layout1 .destination-style3 .destination-info {
        visibility: hidden;
        opacity: 0;
        padding-right: 100px;
    }

        .destiniation-layout1 .destination-style3 .destination-info .destination-price {
            display: block;
            margin-bottom: 30px;
        }

        .destiniation-layout1 .destination-style3 .destination-info .vs-btn {
            display: inline-block;
        }

.destiniation-layout1 .slick-current {
    position: relative;
    z-index: 9;
}

    .destiniation-layout1 .slick-current .destination-style3 {
        width: 500px !important;
    }

        .destiniation-layout1 .slick-current .destination-style3::before,
        .destiniation-layout1 .slick-current .destination-style3 .destination-info {
            opacity: 1;
            visibility: visible;
            transition: all ease 0.4s;
        }

            .destiniation-layout1 .slick-current .destination-style3::before .destination-text,
            .destiniation-layout1 .slick-current .destination-style3 .destination-info .destination-text {
                visibility: visible;
                opacity: 1;
            }

.destiniation-layout1 .slick-dots {
    margin: 100px 0 0px 0;
    z-index: 9;
}

    .destiniation-layout1 .slick-dots button {
        font-size: 0;
        padding: 0;
        width: 20px;
        height: 20px;
        line-height: 0;
        background-color: #D9D9D9;
        border: none;
        transition: all ease 0.4s;
        position: relative;
        display: inline-block;
        border-radius: 50%;
    }

    .destiniation-layout1 .slick-dots .slick-active button {
        border-radius: 10px;
        width: 50px;
        background-color: var(--theme-color);
    }

.destiniation-layout1 .destination-list li {
    list-style: none;
    padding-top: 10px;
    padding-left: 0;
    position: relative;
}

.testimonial-style6 {
    padding-bottom: 240px;
}

    .testimonial-style6 .title-area {
        margin-bottom: 75px;
    }

        .testimonial-style6 .title-area .sec-title {
            color: var(--white-color);
        }

    .testimonial-style6 .slick-arrow {
        background-color: transparent;
        color: var(--theme-color);
    }

        .testimonial-style6 .slick-arrow:hover {
            color: var(--theme-color2);
            border-color: var(--theme-color2);
        }

    .testimonial-style6 .testi-content {
        text-align: right;
        padding-left: 100px;
    }

        .testimonial-style6 .testi-content .testi-text {
            color: var(--white-color);
        }

        .testimonial-style6 .testi-content .testi-degi {
            color: var(--theme-color2);
        }

        .testimonial-style6 .testi-content .testi-name {
            color: var(--white-color);
        }

    .testimonial-style6 .testi-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .testimonial-style6 .testi-style6 {
        border: 1px solid var(--white-color);
        background-color: var(--black-color);
        padding: 30px;
        border-radius: 30px 0;
        position: relative;
    }

    .testimonial-style6 .testi-avater {
        position: absolute;
        bottom: 0;
        left: 0;
    }

        .testimonial-style6 .testi-avater .img {
            position: relative;
        }

            .testimonial-style6 .testi-avater .img::after {
                content: "";
                position: absolute;
                top: -3px;
                left: 0px;
                width: 104%;
                height: 104%;
                background-color: var(--theme-color2);
                border-radius: 100%;
            }

        .testimonial-style6 .testi-avater img {
            width: 100%;
            border-radius: 70px 70px 70px 0px;
            position: relative;
            z-index: 1;
        }

.blog-layout1 .blog-style3 {
    padding: 0;
    box-shadow: 0px 0px 15px rgba(50, 36, 29, 0.15);
}

    .blog-layout1 .blog-style3 .blog-top {
        margin-bottom: 10px;
    }

        .blog-layout1 .blog-style3 .blog-top .blog-link svg {
            margin-right: 5px;
        }

        .blog-layout1 .blog-style3 .blog-top .blog-link:first-child {
            border-right: 1px solid #505050;
            line-height: 60%;
            display: inline-block;
            padding-right: 20px;
            margin-right: 10px;
        }

    .blog-layout1 .blog-style3 .blog-title {
        margin-bottom: 15px;
    }

    .blog-layout1 .blog-style3 .blog-text {
        margin-bottom: 25px;
    }

    .blog-layout1 .blog-style3 .blog-date {
        font-size: 24px;
        margin-right: 0;
        color: var(--white-color);
        background-color: var(--theme-color);
        padding: 10px;
        line-height: 60%;
        border-radius: 0 0 5px 5px;
        text-transform: uppercase;
    }

        .blog-layout1 .blog-style3 .blog-date span {
            margin-top: 5px;
            font-size: 14px;
            display: block;
        }

    .blog-layout1 .blog-style3 .blog-bottom {
        padding-top: 0;
    }

        .blog-layout1 .blog-style3 .blog-bottom .link-btn {
            color: var(--theme-color);
            margin-top: 16px;
        }

            .blog-layout1 .blog-style3 .blog-bottom .link-btn:hover {
                color: var(--theme-color2);
            }

            .blog-layout1 .blog-style3 .blog-bottom .link-btn::before {
                content: none;
            }

    .blog-layout1 .blog-style3 .blog-content {
        padding: 0px 35px 35px 35px;
    }

    .blog-layout1 .blog-style3 .blog-img {
        border-radius: 10px 10px 0px 0px;
    }

        .blog-layout1 .blog-style3 .blog-img img {
            width: 100%;
        }

.blog-layout1 .slick-arrow i {
    color: var(--theme-color);
}

.blog-layout1 .slick-arrow:hover i {
    color: var(--white-color);
}

.benefits--layout1 .accordion-style1 .number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-family: var(--body-font);
    background-color: var(--secondary-color);
    border-radius: 100%;
    color: var(--title-color);
    text-align: center;
    margin-right: 15px;
    font-size: 14px;
}

.benefits--layout1 .accordion-style1 .accordion-button {
    padding: 18px 80px;
    line-height: 32px;
    position: relative;
    max-width: 100%;
    color: var(--black-color);
    background-color: #F5F5F5;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: none;
    box-shadow: none;
    text-transform: capitalize;
}

    .benefits--layout1 .accordion-style1 .accordion-button.collapsed .number {
        background-color: #315557;
        color: var(--white-color);
    }

    .benefits--layout1 .accordion-style1 .accordion-button::after {
        content: none;
    }

    .benefits--layout1 .accordion-style1 .accordion-button::before {
        content: "\f067";
        font-family: var(--icon-font);
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        font-size: 16px;
        border-radius: 50%;
        font-weight: 300;
        transition: all ease 0.4s;
        width: 40px;
        height: 40px;
        display: block;
        background: var(--theme-color2);
        line-height: 40px;
        color: var(--white-color);
    }

    .benefits--layout1 .accordion-style1 .accordion-button:not(.collapsed):before {
        content: "\f068";
        color: var(--white-color);
    }

.benefits--layout1 .accordion-style1 .accordion-body {
    padding: 3px 5px 0px 80px;
    background-color: var(--smoke-color);
}

.benefits--layout1 .accordion-style1 .accordion-item {
    padding: 0;
    margin: 0 0 15px 0;
    border: none;
    background-color: #F5F5F5;
    border-radius: 30px;
    overflow: hidden;
}

.benefits--layout1 .accordion-style1 .accordion-collapse {
    border: none;
}

.benefits--layout1 .img1 {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 46%;
    min-width: unset;
    max-height: 670px;
    min-height: unset;
    top: 0;
    left: 0;
    border-radius: 0 50px 50px 0;
}

.benefits--layout1 .meta-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    background-color: var(--theme-color);
    border-radius: 60px;
    padding: 28px;
    margin-top: 120px;
    border: 2px solid var(--white-color);
    box-shadow: 0px 0px 15px rgba(50, 36, 29, 0.15);
}

    .benefits--layout1 .meta-inner .img {
        margin-right: 28px;
    }

    .benefits--layout1 .meta-inner .content .content-title {
        color: var(--white-color);
        font-size: 28px;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .benefits--layout1 .meta-inner .content .content-text {
        color: var(--white-color);
        margin-bottom: 0;
    }

@media only screen and (max-width: 1820px) {
    .header-layout6 .main-menu {
        text-align: right !important;
    }

    .header-layout6 .vs-logo {
        left: 0;
    }

    .header-layout6 .header-btns {
        display: none;
    }
}
/* Extra large devices */
@media (max-width: 1500px) {
    .header-layout6 .main-menu {
        text-align: right;
    }

    .header-layout6 .vs-logo {
        left: 0;
    }

    .header-layout6 .header-btns {
        display: none;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .package-layout1 .package-content {
        margin-top: 20px;
    }

        .package-layout1 .package-content .package-text {
            margin-bottom: 15px;
        }

    .testimonial-style6 {
        padding-bottom: 120px;
    }

    .package-layout1 .package-title {
        font-size: 24px;
    }

    .about-layout1 {
        padding-bottom: 210px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .header-layout6 .sticky-wrapper {
        background-color: var(--white-color);
    }

    .header-layout6 .container::before {
        display: none;
    }

    .header-layout6 .vs-logo {
        position: relative;
        top: 0;
        transform: unset;
        left: 0;
        background-color: var(--theme-color);
        padding: 0px 20px;
        border-radius: 0;
    }

    .hero-layout3 .hero-bottom {
        display: none;
    }

    .hero-layout3 .hero-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-layout3 .hero-mask {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .hero-layout3 .hero-content .hero-title {
        font-size: 62px;
    }

    .offer-layout1 .title-area {
        margin: 30px 15px;
    }

    .offer-layout1 .sec-subtitle {
        font-size: 16px;
    }

    .offer-layout1 .sec-title {
        font-size: 24px;
    }

    .benefits--layout1 .meta-inner {
        display: none;
    }

    .benefits--layout1 .img1 {
        display: none;
    }

    .benefits--layout1 .accordion-button {
        padding: 18px 60px;
    }

    .testimonial-style6 {
        padding-bottom: 80px;
    }

        .testimonial-style6 .testi-content .testi-text {
            padding: 20px 0;
        }

    .about-layout1 {
        padding-bottom: 175px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .testimonial-style6 .testimonial-slider5 {
        padding-bottom: 30px;
    }

    .testimonial-style6 .testi-content {
        padding-left: 0;
    }

        .testimonial-style6 .testi-content .testi-name {
            font-size: 20px;
        }

    .hero-layout3 .hero-bottom {
        display: none;
    }

    .hero-layout3 .hero-content .hero-title {
        font-size: 40px;
    }

    .about-layout1 .img-box3 .box1 {
        position: absolute;
        top: 20%;
        left: 0;
    }

    .offer-layout1 {
        transform: translateY(-15%);
    }

    .about-layout1 .about-list3 .list-item .icon-content .title {
        font-size: 20px;
    }
}

/*# sourceMappingURL=style.css.map */

