﻿
html, body{
    scroll-padding-top: 60px;
}
@media screen and (max-width: 768px){
    html, body{
        scroll-padding-top: 40px;
    }
}
/* Utilities */
.fadeTop{
    mask: linear-gradient(180deg, transparent, white 20%);
    -webkit-mask: linear-gradient(180deg, transparent, white 20%);
}
.fadeBottom{
    mask: linear-gradient(0deg, transparent, white 20%);
    -webkit-mask: linear-gradient(0deg, transparent, white 20%);
}
.btn-semi-transparent{
    background: rgba(255,255,255,0.4);
}
@media screen and (max-width: 768px){
    .img-fluid-sm{
        max-width: 100%;
    }
}
.sticky-card{
    position: sticky;
}
.text-off-white{
    color: rgba(255,255,255,0.76);
}
.bg-blue-gradient {
  background: var(--bs-primary);
  background: linear-gradient(117deg, var(--bs-success) 0%, var(--bs-dark-primary) 100%);
}
/* Header */
header{
    transition: box-shadow 0.5s ease 0s, background-color 0.3s ease 0.2s;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
header.stuck{
    transition: background-color 0.5s ease, box-shadow 0.3s ease 0.5s;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}


/* Logo */
.header-logo{
    height: 50px;
}
@media screen and (max-width: 1200px){
    .header-logo{
        max-height: 40px;
    }
}
@media screen and (max-width: 992px){
    .header-logo{
        max-height: 36px;
    }
}
@media screen and (max-width: 370px){
    .header-logo{
        max-height: 25px;
    }
}
.header-logo path, .header-logo circle{
    fill: white;
    position: relative;
    transform-origin: 50% 100%;
    transition: fill 0.2s linear;
}
.header-logo :nth-child(1){transition-delay: 0.1s; animation-delay: 0.1s!important;}
.header-logo :nth-child(2){transition-delay: 0.15s; animation-delay: 0.2s!important;}
.header-logo :nth-child(3){transition-delay: 0.2s; animation-delay: 0.3s!important;}
.header-logo :nth-child(4){transition-delay: 0.25s; animation-delay: 0.4s!important;}
.header-logo :nth-child(5){transition-delay: 0.3s; animation-delay: 0.5s!important;}
.header-logo :nth-child(6){transition-delay: 0.35s; animation-delay: 0.6s!important;}
.header-logo :nth-child(7){transition-delay: 0.4s; animation-delay: 0.7s!important;}
.header-logo :nth-child(8){transition-delay: 0.45s; animation-delay: 0.8s!important;}
.header-logo :nth-child(9){transition-delay: 0.5s; animation-delay: 0.8s!important;}
.header-logo :nth-child(10){transition-delay: 0.55s; animation-delay: 0.8s!important;}
.header-logo :nth-child(11){transition-delay: 0.6s; animation-delay: 0.8s!important;}
header.stuck .header-logo > *{
    fill: var(--bs-primary);
    animation: bop 0.4s forwards
}
.header-logo:hover :nth-child(1){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(2){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(3){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(4){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(5){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(6){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(7){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(8){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(9){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(10){animation: bop 0.5s forwards}
.header-logo:hover :nth-child(11){animation: bop 0.5s forwards}
header.stuck .header-logo:hover > *{
    fill: var(--bs-dark-primary);
    animation: bop 0.4s forwards
}
@keyframes bop{
    0%{
        transform: translateY(0px) rotate(0);
    }
    50%{
        transform: translateY(-2px) rotate(1deg);
    }
    100%{
        transform: translateY(0px) rotate(0);
    }
}



/* Top level Menu */
header .primary-menu{
    display: flex;
    list-style: none;
    margin: 0;
}
header .primary-menu li{
    margin: 0 0.25em;
    position: relative;
}
header .primary-menu li:hover .sub-menu{
    display: block
}
header .primary-menu > li > a i{
    transform: scale(0.7);
}
header .primary-menu  li a{
    padding: 0.4em .75em;
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    display: block;
    line-height: 2em;
    transition: color 0.5s ease;
}
header .primary-menu > li a.nav-link:hover {
    color: white;
}
header.stuck .primary-menu li a{
    color: var(--bs-dark);
}
header .sub-menu li a i{
    font-size: 15px!important;
    width: 20px;
}
@media screen and (max-width: 1200px){
    header .primary-menu  li a{
        padding: 0.4em .5em;
        text-decoration: none;
        color: var(--bs-light);
        font-size: 1em;
    }
}

/* Sub Menu */
header .sub-menu{
    display: none;
    box-shadow: 1px 1px rgba(0,0,0,0.06), 
    0 2px 2px rgba(0,0,0,0.06), 
    0 4px 4px rgba(0,0,0,0.06), 
    0 8px 8px rgba(0,0,0,0.06),
    0 16px 16px rgba(0,0,0,0.06);
    margin: 0;
    border-radius: 10px;
    padding: 1em 0.6em;
    list-style: none;
    background: var(--bs-info);
    top: 100%;
    left: 0;
    position: absolute;
}
header .sub-menu li a{
    white-space: nowrap;
    color: var(--bs-dark);
    font-size: 1em;
    line-height: 1.2em;
}
header .sub-menu li a i{
    width: 1.2em;
    margin-right: 0.6em;
    text-align: center;
}

/* Primary Nav Buttons */
.action-button{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background-color: white;
    font-weight: 700;
    justify-content: center;
    font-size: 1em;
    gap: .5em;
    padding: 0.5em 0.75em;
    border: 0;
    outline: 0;
    border-radius: 10px;
    transition: background-color 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 600px){
    .action-button span{
        display: none;
    }
    .action-button{
        gap: 0;
        width: 46px;
        height: 46px;
        
    }
}

header.stuck .sign-in{
    background: var(--bs-success);
    border-color: var(--bs-success);
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}
.btn-menu{
    color: var(--bs-primary);
}
.btn-log-in{
    color: var(--bs-success)
}
header.stuck .btn-menu{
    background: var(--bs-primary);
    color: white;
}
header.stuck .btn-log-in{
    background: var(--bs-success);
    color: white;
}

@media screen and (max-width: 992px){
    .nav-logo{
        max-width: 140px;
    }
    .nav-logo path, .nav-logo circle{
        fill: var(--bs-primary);
    }
    nav{
        background-image: url("../images/nav-background-top.html"), url("../images/nav-background-bottom.html");
        background-size: 100% auto;
        background-position: top center, bottom center;
        background-repeat: no-repeat;
        position: fixed;
        overflow-y: scroll;
        padding: 0 1.5em 1em 1.5em;
        margin: 0;
        max-width: 340px;
        height: 100vh;
        top: 0;
        right: 0;
        z-index: 1;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        align-items: start;
        box-shadow: 1px 1px rgba(0,0,0,0.06), 
        0 2px 2px rgba(0,0,0,0.06), 
        0 4px 4px rgba(0,0,0,0.06), 
        0 8px 8px rgba(0,0,0,0.06),
        0 16px 16px rgba(0,0,0,0.06);
        background-color: var(--bs-info);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }
    nav.expanded{
        transform: translateX(0%);
        opacity: 1;
    }
    header .sub-menu{
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0.65em 0;
        margin: 0.65em 0;
        display: block;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        border-radius: 0;;
    }
    header .primary-menu{
        padding: 0;
        margin: 0;
        flex-direction: column;
        width: 100%;
    }
    header .primary-menu li{
        margin: 0;
        position: relative;
    }
    header .primary-menu > li > a:hover{
        color: var(--bs-success)!important;
    }
    header .primary-menu > li > a{
        font-size: 1.3em;
        font-weight: 800;
        line-height: 1.2;
    }
    header.stuck .primary-menu li a{
        color: var(--bs-dark);
    }
    header .primary-menu li a{
        padding: 0.4em 0em;
        text-decoration: none;
        color: var(--bs-dark);
        font-weight: 600;
        transition: color 0.5s ease;
    }
    header .sub-menu li a{
        display: block;
    }

    /* Overlay */
    .menu-overlay{
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0);
        backdrop-filter: blur(0px);
        top: 0;
        right: 0;
        pointer-events: none;
        z-index: 1;
    }
    .menu-overlay.visible{
        backdrop-filter: blur(3px);
        background-color: rgba(0,0,0,0.5);
        pointer-events: initial
    }
}


/* Generic Hero Section */
.hero{
    position: relative;
    z-index: 1;
    border-bottom: 1px solid white;
    box-shadow: 2px 2px 0 white;
}
@media screen and (max-width: 991px){
    .hero{
        padding-top: 100px;
    }
}
@media screen and (max-width: 768px){
    .hero{
        padding-top: 60px;
    }
}
.filler-img{
    width: 100%;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 10;
}
@media screen and (max-width: 991px){
    .filler-img{
        bottom: -60px;
    }
}



/* Footer */
.footer-logo, footer img{
    height: 40px;
}
.footer-logo path, .footer-logo circle{
    fill: var(--bs-primary);
    background: red
}
footer{
    position: relative;
    z-index: 0;
}
footer:before{
    content: '';
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1011.57 20.61'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23F2FBFF; stroke-width: 0px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m927.27,8.46c-42.15,0-42.15-8.46-84.3-8.46s-42.15,8.46-84.3,8.46S716.53,0,674.38,0s-42.15,8.46-84.3,8.46S547.93,0,505.79,0c-42.15,0-42.15,8.46-84.3,8.46S379.34,0,337.19,0s-42.15,8.46-84.3,8.46S210.74,0,168.59,0s-42.15,8.46-84.3,8.46S42.15,0,0,0v20.61h1011.57V0c-42.15,0-42.15,8.46-84.3,8.46Z'/%3E%3C/svg%3E");
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 100%;
}
@media screen and (max-width: 768px){
    footer:before{
        height: 20px;
    }
}
footer ul{
    list-style: none;
    margin: 1em 0;
    padding: 0;
}
footer ul li{
    margin-bottom: 0.65em;
}
footer ul li:before{
    content: '•';
    margin-right: 0.65em;
    width: 20px;
    color: currentColor;
}
footer ul li a{
    color: var(--bs-dark);
    text-decoration: none;
}


/* FAQs */
.questionHeading .icon{
    transition: all 0.4s ease-in;
    color: white;
}
.questionHeading[aria-expanded="true"] .icon{
    transform: rotate(45deg);
    background-color: var(--bs-warning)!important;
}
.faq-question{
    position: relative;
    color: currentColor;
    z-index: 1;
}
.faq-question:before{
    content:'';
    height: 100%;
    width: 50px;
    border-radius: 10vh 0 0 10vh;
    opacity: 0.3;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    background: currentColor
}
.wave{
    position: relative;
    z-index: 1;
}
/* Swipers */
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    pointer-events: initial;
}
.logo-carousel{
    overflow: hidden;
}
.swiper-wrapper{
    height: auto!important;
}
.logo-carousel .swiper-wrapper{
    padding: 2em 0;
}
.logo-carousel .swiper-slide{
    width: auto;
}
.logo-carousel .swiper-slide img{
    height: 90px;
    pointer-events: none;
    user-select: none;
}
.logo-dots{
    top: 100%!important;
}
.swiper-pagination-bullet{
    background-color: white;
}
.swiper-pagination-bullet-active{
    background-color: var(--bs-success)
}
.copy p{
    font-size: 1.1em;
}
.copy h2{
    font-size: calc(1rem + 1.5vw) !important;
}
.copy h2, .copy h3, .copy h4{
    color: var(--bs-dark);
}
.copy ul, .copy ol{
    font-weight: 500;
    font-size: 1em;
    padding:0;
    line-height: 1.5em;
    margin-bottom: 1rem;
}

.copy ul{
     list-style:none 
}
.copy ul li{
    margin-bottom: 1rem;
    color: var(--black200);
}
.copy ul li:before{
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    content: "\f111";
    margin-right: 10px;
    margin-left: 4px;
    line-height: 1em!important;
    font-size: 0.4em;
    vertical-align: middle;
}
.copy ol li:nth-of-type(1n):before{transform: rotate(4deg)}
.copy ol li:nth-of-type(2n):before{transform: rotate(-3deg)}
.copy ol li:nth-of-type(3n):before{transform: rotate(1deg)}
.copy ol li:nth-of-type(4n):before{transform: rotate(-5deg)}
.copy ol li:nth-of-type(5n):before{transform: rotate(0deg)}

.copy ol li{
    margin-bottom: 1rem;
    color:var(--black200);
    display:inline-block;
    width:100%;
    padding: 0 0 0 2.5em;
    counter-increment:step-counter;
    position: relative
}
.copy ol li:before{
    content: counter(step-counter);
    position: absolute;
    text-align: center;
    height: 26px;
    top: 0;
    left: 0;
    line-height: 26px;
    font-weight: 700;
    border-radius: 6px;
    width: 26px;
    color: white;
    background-color: var(--bs-primary);
    display: inline-block;
    margin-right: 10px;
}

/*Shapes*/
.shape-container{position: relative;z-index: 1;overflow: hidden;}
.shape{
    position: absolute;
    z-index: -1;
    width: auto;
    height: auto;
}
.shape-sm{font-size: 32px;}
.shape-md{font-size: 64px;}
.shape-lg{font-size: 128px;}
.shape-xl{font-size: 256px;}
.shape.top-left{top: 0;left: 0;transform: translate(-33%, -33%)}
.shape.top-right{top: 0;right: 0;transform: translate(33%, -33%)}
.shape.bottom-left{bottom: 0;left: 0;transform: translate(-33%, 33%)}
.shape.bottom-right{bottom: 0;right: 0;transform: translate(33%, 33%)}




.icon{
    --icon-size: 1em;
    display: inline-block!important;
    text-align: center;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    width: var(--icon-size)!important;
    height: var(--icon-size)!important;
    line-height: var(--icon-size)!important;
    font-size: calc(var(--icon-size) / 2)!important;
    border-radius: calc(var(--icon-size) / 8);
}

.icon-xs{--icon-size: 1.5em;}
.icon-sm{--icon-size: 2em;}
.icon-md{--icon-size: 2.5em;}
.icon-lg{--icon-size: 3em;}
.icon-xl{--icon-size: 4em;}

.backgroundImage{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    mask: linear-gradient(180deg, transparent, white 50%);
    -webkit-mask: linear-gradient(180deg, transparent, white 50%);
    top: 0;
    right: 0;
    z-index: -1;
    mix-blend-mode: overlay;
    opacity: 0.75;
}
.openGallery{
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6643032212885154) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    border-radius: 10px;
    left: -3px;
    transform: rotate(2deg);
    padding: 150px 1em 1em 1em;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s ease;
}
.galleryStack:hover .openGallery{
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    left: 0;
    bottom: -6px;
}
.galleryStack{
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 0;
    cursor: pointer;
    z-index: 1;
}
.galleryStack img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transform: rotate(2deg);
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}
.galleryStack:hover img{
    transform: rotate(0deg) translateY(-20px) scale(1.05);
}
.galleryStack .shape{
    transition: all 0.5s ease;
}
.galleryStack:hover .shape{
    top: -60px;
    right: -70px;
    transform: scale(1.1)
}
.galleryStack:before, .galleryStack:after{
    content: '';
    width: 100%;
    transition: all 0.5s ease;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    box-shadow: 0px 1px 7px rgba(0,0,0,0);
}
.galleryStack:before{
    z-index: -1;
    background-color: var(--bs-success);
}
.galleryStack:after{
    z-index: -2;
    transform: rotate(-3deg);
    background: var(--bs-dark);
}
.galleryStack:hover::after, .galleryStack:hover::before{
    transform: rotate(0deg);
    box-shadow: 0px 1px 7px rgba(0,0,0,0.4);
}
.galleryStack:hover::after{
    transform: rotate(0deg) translateY(20px) scale(0.95);
}
.primary-offer-image{
    min-height: 300px;
}
/* Offer Cards */
.sm-offer-logo{
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    background: white;
    padding: 6px;
    height: 50px;
    border-radius: 6px;
}

.logo-trio{
    display: flex;
    justify-content: center;
    gap: 14px;
}
.logo-trio img{
    width: 56px;
    height: 56px;
    object-fit: scale-down;
    background: white;
    border-radius: 100vh;
    padding: 6px;
    outline: 5px solid rgba(0,0,0,0.2);
}
/* Carousel of Logos */
@keyframes slide {
  from {
    transform: translateX(0);

  }
  to {
    transform: translateX(-100%);
  }
}
.masked-sides{
	mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent 100%);
	-webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent 100%);
}
.logoCarousel {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}
.logoSlide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.homeLogos .logoSlide img{
    background: white;
    padding: 10px;
    height: 70px!important;
    border-radius: 10px;
    margin: 0 10px!important;
}
.join-carousel .logoSlide img{
    background: white;
    padding: 8px;
    border-radius: 10px;
    height: 60px;
    margin: 0 6px;
}
.lpCarousel .logoSlide img{
    background: white;
    border-radius: 10px;
    padding: 8px;
    height: 80px;
}
.logoSlide img {
  height: 50px;
  pointer-events: none;
  margin: 0 16px;
}
@media screen and (max-width: 768px){
	.logoSlide img{
		height: 60px;
		margin: 0 6px;
	}
}
/* Help Page */
#filterQuestions{
    max-width: 400px!important;
    width: 100%;
    background: transparent!important;
    border: none!important;
    outline: none!important;
}
#showAllButton{
        font-size: 12px!important;
    border-radius: 100vh!important;
    padding: 4px 8px!important;
}
#showAllButton.disabled{
    display: none
}
.filterButton{
    font-size: 12px;
    border-radius: 100vh;
    padding: 4px 8px!important;
}
.filterButton.active{
    color: white;
    background: var(--bs-primary)!important;
    border-color: var(--bs-primary)!important;
}
.help-section{
    overflow: hidden;
}
.help-section .card-body:nth-of-type(odd){
    background: rgba(0,0,0,0.03)!important;
}
.help-section p{
    margin-bottom: 0;
}
.help-hero img{
    width: 400px;
}
@media screen and (max-width: 992px){
    .help-hero img{
        width: 50%;
    }
}
/* forms */
.input-container{
    background-color: var(--bs-info)!important;
    padding: 0.5em 1em 0.5em 1.5em;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 1em;
}
.input-container .row .col-auto{
    border-right: 1px solid rgba(0,0,0,0.1)!important;
    padding-right: 20px;
}
.input-container i{
    display: block;
    color: var(--bs-success);
    line-height: 46px;
}
.input-container input, .input-container textarea, .input-container select{
    width: 100%;
    border: 0!important;
    min-height: 46px;
    outline: 0!important;
    background-color: transparent!important;
}
.input-container textarea{
    padding-top: 10px;
}
.input-container input, .input-container textarea, .input-container select {
}

/* Reviews */
.swiper-slide{
	height: auto!important;
}
.reviews-scrollbar, .partnerships-scrollbar, .offers-scrollbar, .landingpage-scrollbar{
	background: #FFFFFF;
	border-radius: 10px;
	height: 8px!important;
	margin-bottom: 20px;
}
.swiper-scrollbar-drag{
	background-color: var(--bs-light-primary)!important;
}
.reviews-container{
	padding-top: 80px;
}

.reviews-carousel, .partnerships-carousel, .offers-carousel, .landingpage-carousel{
	overflow: visible!important
}
@media screen and (min-width: 992px){
    .offers-carousel{
        overflow: hidden!important;
    }
}
.do-review p:first-of-type{
    font-size: 18px;
    margin-top: 1em;
    font-weight: bold;
}
.do-review p{
	margin: 0 0 2em 0;
	font-size: 15px;
}
.do-review h3{
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -1px;
	color: #222222;
	margin: 0;
}
.do-review .fa-star{
	color: #00b67a;
}
.reviews-badge{
	width: 100%;
	max-width: 240px;
	margin: 0 auto;
	display: block
}
.do-review{
	background-color: white;
	display: block;
	overflow: auto;
	height: 100%;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 1em 1em 2em 1em;
	border-radius: 16px;
	background-size: 60% auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.review-bottom{
	position: absolute;
	bottom: 1em;
	left: 1em;
	width: 100%;
}
@media screen and (max-width: 768px){
	.do-review{
		margin: 0 0 20px 0!important;
	}
}
.dpic{
	width: 70px;
	border-radius: 50%;
}
.tmarker{
	height: 60px;
}
.tplogo{
	height: 30px;
}
.do-review span{
	font-size: 14px;
	font-weight: 500;
	color: #777777;
}

.section-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    pointer-events: none;
}
.multiply{mix-blend-mode: multiply;}
.overlay{mix-blend-mode: overlay;}


/*Override Orchard form look and feel*/
.form-container .widget{
    margin-bottom: 1em;
}
.form-container .widget input{
    height: 50px;
}
.form-container .widget textarea{
    height: 120px;
}
.form-container .widget input,
.form-container .widget textarea,
.form-container .widget select,
.form-container .widget .btn{
    width: 100%;
    border-radius: 6px;
}