﻿:root {
    --black: #232323;
    --orange: #FF8E01;
    --blue: #257DFF;
    --gutter: 30%;
}
.fw-1 {
    font-weight: 300;
}
.fw-2 {
    font-weight: 400;
}
.fw-3 {
    font-weight: 500;
}
.fw-4 {
    font-weight: 700;
}
.fw-5{font-weight:900;}
@media screen and (max-width: 1800px) {
    :root {
        --gutter: 20%
    }
}
@media screen and (max-width: 1600px) {
    :root {
        --gutter: 10%
    }
}
@media screen and (max-width: 1440px){
    :root{
        --gutter: 20px;
    }
}
header:first-of-type .navbar{
    background-image: url("../../images/header.jpg");
    background-size: cover;
    background-position: center center;
}
.navbar-nav li a.nav-link{
  text-transform: capitalize;
    font-size: 19px;
    font-weight: 600;
    font-family: "Inter", sans-serif!important;
}
.navbar-nav .dropdown-menu a.nav-link{
    font-size: 17px;
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-family: "Inter", sans-serif!important;
}
body {
    font-family: Inter, sans-serif;
}
.nav-item.try{
    display: none;
}
/* Global(ish) styles */
h1, h2 , h3, h4{
    font-weight: 800;
}

h2 {
    font-size: 38px;
}
@media screen and (max-width: 1023px){
    h2{
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    h2 {
        font-size: 28px;
    }
}
.pre-heading {
    color: var(--orange);
    font-weight: bold;
    display: inline-block;
    margin: 0;
}

p.callout {
    font-size: 17px;
    font-weight: 500;
}
/* Page dots */
/* position dots up a bit */
.flickity-page-dots {
    bottom: -22px;
}
    /* dots are lines */
    .flickity-page-dots .dot {
        height: 4px;
        width: 40px;
        margin: 0;
        border-radius: 0;
    }
/* Buttons */
.banner .cta-button{
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3)
}
.cta-button {
    display: inline-block;
    border-radius: 12px;
    background: var(--family);
    color: white;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    transition: ease-in 0.1s;
    transform: scale(1.0);
}

.cta-button:hover {
    text-decoration: none;
    color: white;
    transform:scale(1.02);
}
.hover-scale {
    transition: ease 0.25s;
    transform: scale(1.0);
}
.hover-scale:hover {
    transform: scale(1.03);
}
.stickyButton{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 200;
    padding: 1em;
    background-color: var(--black);
    box-shadow: -3px 0px 5px rgba(0,0,0,0.4);
    display: none;
    transition: transform 0.2s ease, border-radius 0.3s ease, padding 0.1s ease;
    border-radius: 12px 12px 0 0;
    transform: translateY(100%)
}
.stickyButton.show{
    transform: translateY(0%)
}
.stickyButton .cta-button {
    width: 100%;
    background-color: #64b914;
    color: white
}
.stickyButton:hover{
    padding: 1em 2em;
}
@media screen and (max-width: 768px){
    .stickyButton{
        display: block;
    }
}
/* Main Banner */
.banner {
    background-color: var(--backgroundColor);
    background: -webkit-linear-gradient(90deg, var(--bs-primary), var(--bs-secondary))!important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top:240px;
    padding-bottom: 4.5em;
}

@media screen and (max-width: 1100px) {
    .banner {
        background-color: var(--backgroundColor);
        background: -webkit-linear-gradient(90deg, var(--bs-primary), var(--bs-secondary)) !important;
        position: relative;
        overflow: hidden;
        z-index: 1;
        padding-top: 140px;
        padding-bottom: 2em;
    }
}
.banner:after{
    content: '';
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    background: white;
    width: 100%;
    opacity:0.6;
    background: -webkit-linear-gradient(-90deg, transparent, black)!important;
}

.banner h1 {
    color: var(--textColor);
    font-size: 3rem;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.3);
    line-height: 110%;
    font-weight: 800;
}

@media screen and (max-width: 1100px) {
    .banner h1 {
        font-size: 2rem;
    }
}

.banner .banner-text p {
    color: var(--textColor)!important;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
}

@media screen and (max-width: 1100px) {
    .banner p {
        font-size: 16px;
    }
}

.featured-image {
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
    top:0;
    left:0;
    opacity:0.6;
}
.why-box{
    position: relative;
    z-index:1;
    overflow:hidden;
}
.why-box::after{
    position:absolute;
    content:" ";
    inset:0;
    width:100%;
    height:100%;
    background:black;
    z-index:-1;
    opacity:0.5;
}
.why-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.info-bar {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--black);
    padding: 12px 0;
}
@media screen and (max-width: 992px){
    .info-bar{
        position: static
    }
}
.info-bar img{
    height: 36px;
    width: auto;
}
.banner .info-bar .info-text{
    color: var(--orange);
    margin: 0;
    font-size: 14px;
    position: relative;
    z-index: 100000;
    font-weight: bold;
    color: white;
    text-shadow: 0px 0px 5px var(--black);
}
.banner .info-bar p i{
    background-color: var(--orange);
    text-shadow: none;
    color: black;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 0 10px;
}
.banner-text{
    top: 30px;
    z-index: 100;
}

@media screen and (max-width: 992px) {
    .banner-text {
        top: 0;
        padding: 30px 5rem 0 5rem;
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .banner-text {
        padding: 30px 2rem 0 2rem;
    }
}
/* Orbs */
.orb {
    z-index: -1;
    position: absolute;
    border-radius: 100vh;
    opacity: 0.2;
    mix-blend-mode: overlay;
    background-color: white;
}

    .orb.big {
        width: 400px;
        height: 400px;
    }

    .orb.small {
        width: 200px;
        height: 200px;
    }

    .orb.left.small {
        top: 40%;
        left: 10%;
        animation: blobs 15s ease-in-out infinite alternate;
    }

    .orb.left.big {
        top: 10%;
        left: -10%;
        animation: blobs 10s ease-in-out infinite alternate;
    }

    .orb.right.small {
        top: 40%;
        right: 10%;
        animation: blobs 15s ease-in-out infinite alternate;
    }

    .orb.right.big {
        top: 10%;
        right: -10%;
        animation: blobs 10s ease-in-out infinite alternate;
    }

@keyframes blobs {
    0% {
        border-radius: 30% 70% 50% 50% / 30% 44% 56% 70%;
        transform: scale(1.2) translateX(-20%);
    }

    50% {
        border-radius: 42% 58% 71% 29% / 63% 63% 37% 37%;
        transform: scale(0.9) translateX(10%);
    }

    100% {
        border-radius: 66% 34% 51% 49% / 44% 52% 48% 56%;
        transform: scale(1.4);
    }
}
@media screen and (max-width: 992px){
    .orb.right{
        display: none;
    }
}
/* Features Section */
.featuresCarousel:after{
    content: '';
}
@media screen and (max-width: 1190px) {
    .featuresCarousel {
        display: block;
    }
    .featuresCarousel:after {
        content: 'flickity';
        display: none;
    }
}
.features {
    padding: 20px 0 30px 0;
    text-align: center;
    overflow: hidden;
}

.features span {
    color: var(--backgroundColor);
    font-weight: bold;
    display: block;
    font-size: 17px;
    line-height: 100%;
}

.features p {
    font-weight: 900;
    color: black;
    margin: 0;
    line-height: 100%;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.features img{
    width: 80px;
}
@media screen and (max-width: 992px){
    .features p{
        font-size: 22px;
    }
    .features span{
        font-size: 15px;
    }

}
/* Carousel of Logos */

.logo-carousel {
    position: relative;
    overflow: hidden;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}
.logos-inner {
    width: fit-content;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 150s linear infinite;
    animation-play-state: running;
    display: flex;
}
.all-logos {
    display: flex;
}


.logos:hover .logos-inner {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}
.logo-carousel {
    background-color: #111111;
    padding: 1.65rem 0;
}
.logo-carousel img {
    max-height: 60px;
    padding: 0 1.5em;
}
@media screen and (max-width: 960px){
    .logo-carousel img{
        max-height: 32px;
    }
}

/* FAQs */
.faqs {
    position: relative;
    z-index: 1;
}

.faq {
    background: var(--backgroundColor);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 2px 3px 6px rgba(0,0,0,0.1)
}

.faqs h3 {
    font-size: 22px;
    font-weight: bold;
}

.faq h4 {
    color: var(--textColor);
    font-weight: 400;
    font-size: 20px;
    padding: 0.85em 50px 0.85em 0.85em;
    position: relative;
    margin: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .faq h4 {
        font-size: 16px;
    }
}

.faq h4:after {
    content: '+';
    position: absolute;
    right: 0;
    width: 50px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.faq.visible h4:after {
    content: '-';
}

.faq p {
    display: none;
    margin: 0;
    font-size: 16px;
    color: white;
    font-weight: 500;
    padding: 1.5em 0.85em;
    background-color: rgba(0,0,0,0.8)
}


@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0px 500px;
    }
}

.pricing-boxes ul{
    list-style:none;
    padding:0;
    margin:0;
}
.pricing-boxes ul li {
    position: relative;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    padding-left: 1.25rem;
    display: inline-block;
    width: 100%;
    font-weight: 400;
}

.pricing-boxes ul li::before {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    content: " ";
    background-color: white;
    -webkit-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
    transform: scale(1.5);
}