.home-section.home-banner {
    padding: 22px 0;
    position: relative;
    z-index: 3;
}
.banner-image {
    padding-bottom: 49.47%;
    min-height: 653px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.banner-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.banner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-align: center;
    padding: 0 30px 67px;
}
.banner-content-inner {
    width: 100%;
}
.banner-main {
    position: relative;
}
.banner-content .h1 {
    color: #ffffff;
    margin: 0 0 20px;
}

.banner-content .h1 span {
    background: transparent;
    padding: 0;
    border-radius: 0;
    background: transparent;
    /* line-height: 1.1; */
    display: inline;
}
.banner-content .h1 .type-wrapper {
    background: transparent;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 6px;
    position: relative;
    text-decoration-thickness: 2px;
}
.banner-content .typed-cursor.typed-cursor--blink {
    font-weight: 300;
    opacity: 1;
}

.banner-content .h1 #heading-type {
    padding: 0;
}
.banner-content span.typed-cursor {
    font-size: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 5px;
}
.banner-content span.typed-cursor:after {
    animation: typing .5s linear infinite;
    background: #ffffff;
    content: "";
    position: absolute;
    right: 0;
    height: 80%;
    top: 10%;
    width: 2px;
}

@keyframes typing {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.banner-content .content {
    color: #ffffff;
}

.search-form-wrapper form.destination-search input[type="text"] {
    border: 1.33px solid #D9D9D9;
    border-radius: 40px;
    padding: 12px 55px 12px 19px;
    color: #000000;
}
.search-popup.active form.destination-search input[type="text"] {
    border-color: transparent !important;
}
.search-form-wrapper form.destination-search button[type="submit"] {
    position: absolute;
    top: 6px;
    right: 10px;
    background-image: url(../images/ri_search-line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #5F7935;
    background-size: 19px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    outline: none;
    border: none;
    padding: 0;
}
.search-form-wrapper form.destination-search button:hover {
    /* background-image: url(../images/ri_search-line-blue.svg);
    background-color: #ffffff; */
}
.search-form-wrapper form.destination-search .search-popup-clear.active {
    display: block;
}

.search-form-wrapper form.destination-search .search-popup-clear {
    display: none;
    position: absolute;
    background: transparent;
    border: none;
    padding: 0;
    height: 24px;
    width: 24px;
    right: 50px;
    top: 15px;
    cursor: pointer;
}
.search-wrapper {
    max-width: 526px;
    margin: 32px auto 0;
}
.search-form-wrapper form.destination-search {
    position: relative;
}
.search-popup-content {
    display: none;
    position: absolute;
    top: 0;
    background-color: #ffffff;
    width: 100%;
    border-radius: 28px 28px 40px 40px;
    z-index: -1;
    box-shadow: 0px 0px 30px 0px rgba(168, 168, 168, 0.1);
    text-align: left;
    padding: 52px 0 43px;
}

.search-popup {
    position: relative;
}

.search-popup.active .search-popup-content {
    display: block;
}

.search-popup-content .h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20.27px;
    padding: 14.5px 20px;
    color: #959595;
    margin: 0;
}
.popular-destinations-list .popular-destination-item {
    margin: 0;
    padding: 7px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
/* .popular-destinations-list .popular-destination-item strong{
    font-weight: 800;
} */
.popular-destinations-list .popular-destination-item:hover {
    background-color: #F5F5F5;
}
.popular-destination-item.no-item {
    pointer-events: none;
}
.search-popup-content .quick-search-links {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 0 20px;
    gap: 16px 0;
}
.search-popup-content .quick-search {
    border-top: 1px solid #F5F5F5;
}
.search-popup-content .quick-search-links .quick-search-item {
    width: calc(50% - 8px);
    padding: 13.5px 30px 13.5px 15px;
    background-size: 12px;
    background-position: right 14px center;
}
.search-popup-content .quick-search-links .quick-search-item:hover {
    background-size: 12px;
}
.search-popup-content .quick-search-links .quick-search-item:nth-child(2n) {
    margin-left: auto;
}
.search-wrapper.visible-mobile {
    display: none;
}

@keyframes marquee {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}
@-moz-keyframes marquee {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}
  
@-webkit-keyframes marquee {
	from { -webkit-transform: translate(0, 0); }
	to { -webkit-transform: translate(-100%, 0); }
}
.marquee-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
}
.marquee-container {
    -webkit-animation: marquee calc(var(--marquee-count) * 3s) linear infinite;
    -moz-animation: marquee calc(var(--marquee-count) * 3s) linear infinite;
    animation: marquee calc(var(--marquee-count) * 3s) linear infinite;
	margin: 0;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
	justify-content: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
}
.home-slide {
    margin-top: 93px;
    position: relative;
    z-index: 0;
}
.home-section {
    padding: 100px 0;
}
.home-section .btn {
    width: 246px;
    max-width: 100%;
}
.home-section .section-heading {
    margin: 0 auto 40px;
    max-width: 790px;
}
.home-section .section-heading .content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 78px;
    color: #000000;
}
.home-section h2 {
    margin: 0 0 20px;
}
.trending-categories {
    margin-top: -3px;
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.trending-categories.visible-mobile {
    display: none;
}
.trending-categories button.btn {
    width: auto;
    height: auto;
    padding: 10px 19px;
}
.trending-categories .btn.btn-secondary {
    color: #000000;
}
.trending-tab-content {
    display: none;
}

.trending-tab-content.active {
    display: block;
}
.home-trending-workcamps .btn-wrapper {
    margin-top: 36px;
}
.product-grid .swiper {
    width: 100%;
}
.home-about-us {
    background-color: #F3F5FC;
}
.home-about-us .container {
    max-width: 1230px;
}
.about-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 0px;
}
.about-boxes .box {
    width: 50%;
    display: flex;
    align-items: center;
}
.about-boxes .box .box-content {
    width: 186px;
    height: 186px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 13px;
    border-radius: 100%;
    color: #ffffff;
}
.about-boxes .box:nth-child(4n + 3) .box-content,
.about-boxes .box:nth-child(4n) .box-content {
    order: 2;
}
.about-boxes .box .box-image {
    width: calc(100% - 186px);
}
.about-boxes .box .box-image img {
    height: 184px;
    width: 100%;
    object-fit: cover;
    border-radius: 100px;
}
.about-boxes .box .box-content .number {
    font-size: 32px;
    font-weight: 700;
    line-height: 46.34px;
}
.about-boxes .box .box-content .content {
    font-size: 14px;
    font-weight: 500;
    line-height: 20.27px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.home-about-us .btn-wrapper {
    margin-top: 60px;
}

.home-workcamp-reflections {
    padding: 120px 0 90px;
}
.home-workcamp-reflections .section-heading {
    margin-bottom: 40px;
}
.featured-articles .blog .blog-info .read-more .btn {
    width: auto;
}
.home-ifyouwant {
    padding: 0;
}
.home-ifyouwant .section-content {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 80px 0;
}
.if-you-want-items {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 0 20px;
    max-width: 1160px;
    margin: 0 auto;
}
.if-you-want-items .item {
    padding: 0 20px;
    display: flex;
    width: 25%;
    flex-direction: column;
}
.if-you-want-items .item .item-inner {
    margin: 0 15px;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.if-you-want-items .item .background {
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.if-you-want-items .item .item-content {
    position: absolute;
    z-index: 1;
    padding: 0 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.if-you-want-items .item .item-image {
    width: 68px;
    height: 68px;
    border-radius: 100%;
    background-color: #ffffff;
    overflow: hidden;
    margin: 0 auto 8px;
}
.if-you-want-items .item .item-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    vertical-align: bottom;
}

.if-you-want-items .item .item-content .h6 {
    margin: 0;
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.if-you-want-items .item .btn {
    margin-top: 10px;
    width: 100%;
}
.home-section.home-media-reports {
    padding: 134px 0 46px;
}
.home-section.home-media-reports .section-heading {
    max-width: 785px;
}

.featured-articles.featured-media .blog .blog-image {
    order: -1;
    margin-left: 0;
}

.featured-articles.featured-media .blog .blog-info {
    margin-left: auto;
    padding: 29px 0 0;
    width: 39.4%;
}

.featured-articles.featured-media {
    padding: 27px 0;
}

.featured-articles.featured-media .blog .blog-info .author-avatar {
    border: 1px solid #5F7935;
    border-radius: 100%;
    background-color: #FCFAFA;
}

.featured-articles.featured-media .swiper-buttons {
    right: 38px;
}
.featured-articles.featured-media .blog .blog-info::before {
    display: none;
}


.home-strusted {
    padding: 60px 0;
}

.home-strusted .section-heading {
    margin: 0 auto 60px;
}

.home-strusted .section-heading h3 {
    margin: 0;
}
.trusted-images img {
    max-height: 51px;
}

.trusted-images .item {
    display: flex;
    align-items: center;
    width: 224px;
    padding: 0 12px;
    justify-content: center;
    margin: 16px 0;
}
.home-subscribe {
    padding: 138px 0 118px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.home-subscribe form.wpcf7-form {
    max-width: 526px;
    margin: 0 auto;
    position: relative;
}

.home-subscribe form.wpcf7-form input[type="email"] {
    border-radius: 40px;
    border-color: #D9D9D9;
    padding: 12px 19px 12px 59px;
    background-image: url(../images/ic_outline-email.svg);
    background-position: left 20px center;
    background-repeat: no-repeat;
}

.home-subscribe form.wpcf7-form input.wpcf7-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    padding: 13.5px 20px;
    height: auto;
    appearance: none;
    -webkit-appearance: none;
}

.home-subscribe form.wpcf7-form p {
    margin: 0;
}
.home-subscribe form.wpcf7-form label {
    margin: 0;
}
.home-subscribe form.wpcf7-form .wpcf7-spinner {
    display: none;
}
.home-subscribe form.wpcf7-form .wpcf7-not-valid-tip {
  display: none;
}

.home-section.home-media-reports .section-heading {
    max-width: 592px;
}
.featured-articles.featured-media {
    padding: 20px 0;
}
.featured-articles.featured-media .blog .blog-info {
    padding: 19px 0 0;
}
.home-section.home-media-reports {
    padding: 118px 0 76px;
}    
.home-subscribe {
    margin-top: 0;
    padding: 245px 0 210px;
}
.search-popup-heading {
    display: none;
}

@media (min-width: 1024px) { 
    .home .home-slide .swiper-pagination {
        margin-top: 66px;
    }
}
@media (max-width: 1199.98px) {
    .home-trending-workcamps {
        overflow: hidden;
    }
    .trending-products .swiper {overflow: visible;}
    .trending-products .product-grid {
        /* padding-right: 38px; */
    }
}
@media (max-width: 1023.98px) {
    .about-boxes .box {
        width: 100%;
    }
    .if-you-want-items .item {
        width: 50%;
    }
    
    .if-you-want-items {
        gap: 44px 0;
    }
    .trending-categories.visible-desktop {
        display: none;
    }
    .trending-categories.visible-mobile {
        display: flex;
        margin-top: 0;
    }
    .trending-categories.trending-categories-dropdown {
        max-width: 290px;
        margin: 0px auto 36px;
        width: 100%;
        padding-top: 1px;
        position: relative;
        z-index: 3;
    }
    
    .trending-categories.trending-categories-dropdown .btn {
        color: #000000;
        background-color: #ffffff;
        text-align: left;
        padding: 9.5px 45px 9.5px 23px;
        height: auto;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        position: relative;
        z-index: 1;
    }
    .trending-categories.trending-categories-dropdown > .btn {
        background-image: url(../images/arrow-up.svg);
        background-repeat: no-repeat;
        background-position: right 23px center;
    }
    .trending-categories.trending-categories-dropdown .categories-dropdown button.btn:not(.btn-secondary) {
        background-color: #F5F5F5;
    }
    .categories-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        margin-top: 10px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 1;
        overflow: hidden;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        border: 1px solid #6A6A6A;
        border-radius: 10px;
    }
    
    .trending-categories.trending-categories-dropdown .categories-dropdown button.btn {
        border-radius: 0;
        padding: 15px 20px;
        border: none;
    }
    
    .trending-categories.trending-categories-dropdown .categories-dropdown button.btn:last-child {
        border-width: 0;
    }
    
    .if-you-want-items .item .item-content {
        padding: 11px 20px 50px;
    }
}
@media (max-width: 767.98px) {
    .home-section {
        padding: 60px 0;
    }
    .banner-content .h1 .type-wrapper {
        display: inline-block;
    }
    .home-section.home-banner {
        padding: 20px 0 30px;
    }
    .banner-image {
        min-height: 500px;
        border-radius: 6px;
    }
    .banner-content .h1 {
        margin: 0 0 10px;
    }
    .search-popup-active #wpadminbar,
    .search-popup-active header.site-header {
        z-index: 0;
    }
    .search-popup-active,
    .search-popup-active body {
        overflow: hidden;
        height: 100%;
        touch-action: none;
        -ms-touch-action: none;
        position: fixed;
        max-height: 100dvh;
    }
    .search-popup-active #content {
        position: relative;
        z-index: 999;
    }
    .search-popup-active .back-to-top {
        z-index: 0;
    }
    .search-popup.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        background-color: #ffffff;
        margin: 0;
        max-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 20px;
    }  
    .search-popup.active .search-popup-content {
        display: block;
    }  
    .search-popup-content {
        box-shadow: none;
        padding: 0;
        position: static;
    }
    .search-popup.active .search-popup-heading {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        padding: 22.5px 20px;
        border-bottom: 1px solid #D9D9D9;
    }
    .search-popup-heading button.search-popup-close {
        padding: 24px 20px;
        border-radius: 0;
        background: transparent;
        border: none;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
    }

    .search-popup-heading h6 {
        margin: 0;
    }

    .search-form-wrapper {
        padding: 20px 20px;
    }

    .search-popup.active form.destination-search input[type="text"] {
        border-color: #D9D9D9;
    }
    .popular-destinations-list .popular-destination-item:hover {
        background: transparent;
    }
    .search-popup-content .quick-search {
        margin-top: 20px;
    }
    .search-wrapper {
        margin: 17px auto 0;
    }
    .banner-content .content {
        line-height: 23px;
    }
    .home-slide {
        margin-top: 30px;
    }    
    .home-slide .swiper-pagination {
        margin-top: 31px;
    }
    .home-section .content {
        line-height: 23px;
    }
    .about-boxes .box .box-content {
        width: 117px;
        height: 117px;
        padding: 10px;
    }
    
    .about-boxes .box .box-content .number {
        font-size: 27px;
        line-height: 39px;
    }
    .about-boxes .box:nth-child(3) .box-content .number, 
    .about-boxes .box:nth-child(4) .box-content .number {
        font-size: 23.33px;
        line-height: 33.78px;
    }
    .about-boxes .box .box-content .content {
        font-size: 13.5px;
        font-weight: 600;
        line-height: 19.55px;
        margin: 0;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        max-height: 39px;
    }
    
    .about-boxes .box .box-image img {
        height: 116px;
    }
    
    .about-boxes .box .box-image {
        width: calc(100% - 116px);
    }
    
    .about-boxes .box:nth-child(4n + 3) .box-content {
        order: 0;
    }    
    .about-boxes .box:nth-child(2n) .box-content {
        order: 2;
    }
    .home-about-us .btn-wrapper {
        margin-top: 39px;
    }
    .home-workcamp-reflections .featured-articles {
        padding: 0px;
    }
    .home-workcamp-reflections .featured-articles .blog .blog-image {
        height: 231px;
    }
    .home-workcamp-reflections .featured-articles .blog .blog-info::before {
        width: 33px;
        height: 33px;
    }    
    .home-workcamp-reflections .featured-articles .swiper-button {
        margin: 0;
    }
    .home-workcamp-reflections .featured-articles .blog .blog-info .blog-title {
        font-size: 16px;
        line-height: 23px;
        font-weight: 600;
    }
    .home-workcamp-reflections .featured-articles .blog .blog-info .blog-info {
        display: flex;
        flex-direction: column;
    }
    .home-workcamp-reflections .featured-articles .swiper-buttons {
        position: absolute;
        right: 0;
        margin: 0;
        bottom: 11px;
    }

    .home-section.home-ifyouwant {
        padding: 0 3px;
        margin-top: -10px;
    }

    .home-ifyouwant .section-content {
        padding: 60px 0;
    }

    .home-section.home-ifyouwant .section-heading {
        padding: 0 5px;
    }

    .if-you-want-items .item {
        padding: 0 9px;
    }

    .if-you-want-items .item .item-inner {
        margin: 0 8.5px;
        min-height: 0;
    }

    .if-you-want-items {
        padding: 0;
        margin: -4px 0 0;
    }

    .if-you-want-items .item .item-content .h6 {
        font-size: 14px;
        line-height: 20px;
    }

    .if-you-want-items .item .item-image {
        width: 45.7px;
        height: 45.7px;
    }

    .if-you-want-items .item .btn {
        font-size: 15px;
        line-height: 21px;
        padding: 10.5px 35px 10.5px 16px;
        margin-top: 6px;
        background-size: 17px;
        background-position: right 16px center;
    }
    .home-section.home-media-reports {
        padding: 60px 0 60px;
    }
    .featured-articles.featured-media .blog .blog-info {
        width: 100%;
    }
    .featured-articles.featured-media {
        padding: 0px 0;
    }
    .featured-articles.featured-media .blog .blog-info {
        padding: 0px 0 0;
    }
    .featured-articles .blog .blog-info .read-more {
        margin-top: 28px;
    }
    .featured-articles.featured-media .swiper-buttons {
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .home-section.home-strusted {
        padding: 20px 0;
    }
    
    .home-strusted .section-heading h3 {
        font-size: 24px;
        line-height: 35px;
    }
    .trusted-images .item {
        width: 200px;
        padding: 0;
    }
    .home-section.home-subscribe {
        padding: 60px 0 80px;
        background-image: none !important;
    }
}