@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Quincy-reg';
  src: url('/static/fonts/QuincyCF-Regular.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

:root{
    --bs-primary: rgba(204, 0, 51, 1);
    --bs-primary-hover: #E8003A;
    --bs-gray: rgba(248, 248, 248, 1);
    --bs-dark-gray: rgba(243, 243, 243, 1);
    --bs-light-gray: rgba(234, 234, 234, 1);
    --bs-dark: rgba(0, 0, 0, 1);
    --red-gradient-bg:linear-gradient(to bottom, rgba(204, 0, 51, 1), rgba(102, 0, 26, 1));
    --red-gradient-bg-short:linear-gradient(to bottom, rgba(204, 0, 51, 1), rgba(184, 0, 46, 1));
    --bs-gutter-x:1.2rem;
    --border-radius-10:10px;
    --border-radius-20:20px;
    --border-radius-40:40px;
    --border-light-gray: rgba(234, 234, 234, 1);
    --bs-gutter-x:1rem;
}

::selection {
    background: #AD1D45;
    color: #fff;
}

::-moz-selection {
    background: #AD1D45;
    color: #fff;
}

html{
    font-size:20px;
}

body{
    line-height: 1.2em;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: normal;
}

p{
    font-size: 1rem;
    line-height: 1.35rem;
}

a {
    color: #CC0033;
}

a:hover {
    color: #990033;
}

p:last-child{
    margin-bottom: 0;
}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}

/* GLOBAL */
.bg-black{
    background-color: var(--bs-dark);
}

.bg-gray{
    background-color: var(--bs-gray);
}

.bg-light-gray{
    background-color: var(--bs-light-gray);
}

.bg-dark-gray{
    background-color: var(--bs-dark-gray);
}

.bg-red{
    background-color: var(--bs-primary);
}

.bg-dark{
    background-color: var(--bs-dark);
}

.btn{
    font-size: 0.8rem;
}

.btn-primary{
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
    color:#fff;
}

.btn-primary:hover{
    border-color: var(--bs-primary-hover);
    background-color: var(--bs-primary-hover);
    color:#fff;
}

/* typography */

h1,
h2.section-title-large{
    font-size:1.6rem !important;
    line-height: 1.1em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

h1.page-title{
    font-size:2.2rem !important;
    line-height: 1.05em;
    font-weight: 300;
    font-family: 'Quincy-reg', 'Georgia', serif;
    color:#fff;
}

h2{
    font-size: 1.4rem;
    line-height: 1.15em;
    font-weight: 600;
    margin-bottom: 0.55em;
}

h3{
    font-size: 1.2rem;
    line-height: 1.35em;
    font-weight: 500;
    margin-bottom: 0.35em;
}

h4{
    font-size: 1.1rem;
    line-height: 1.35em;
    font-weight: 700;
    margin-bottom: 0.4em;
}

h5{
    font-size: 0.9rem;
    line-height: 1.25em;
    font-weight: 600;
}

.font-14{
    font-size: 0.7rem;
    line-height: 1.55em;
}

.font-16{
    font-size: 0.8rem;
    line-height: 1.55em;
}


.font-18{
    font-size: 0.9rem;
    line-height: 1.25em;
}

.page-title{
    font-size: 2.2rem;
    line-height: 0.95em;
    font-weight: 400;
}

.text-red{
    color:var(--bs-primary);
}

.text-margin-top{
    margin-top: 0px;
}

.fw-medium{
    font-weight: 500;
}
/* FORM */

.footer-newsletter-form{
    max-width: 460px;
}

.form-control{
    border: 1px solid #000;
    border-radius: var(--border-radius-20);
    padding: 10px 15px;
    font-size: 0.8rem;
    line-height: 1.35em;
    color:#000;
}

.form-control::placeholder{
    columns: #666;
}

.btn[type='submit']{
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-secondary{
    color:#000;
    background-color: #FF9900;
    border-color: #FF9900;
    line-height: 1.3em;
}

.btn-secondary:hover{
    background-color: #EC8D00;
    border-color: #EC8D00;
    color:#000;
}

.btn-rounded{
    border-radius: 100px;
}

.btn-download{
    height: 50px;
    width: auto;
}

.img-footer {
    height: 50px;
    width: auto;
}

#header{
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0;
    z-index: 9999;
    margin-bottom: -1px;
    background: transparent;
    transition-duration:0s;
}

#header:before{
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    background: var(--red-gradient-bg-short);
    transition-duration:0s;
    z-index: -1;
}

#header{
   /* backdrop-filter: blur(100px); */
   
}

#header.scrolled{
    background-color: transparent;
}

#header.scrolled:before{
    opacity: 1;
    transition-duration:0.45s;
   /* backdrop-filter: blur(0); */
}

.header__logo img{
    max-width: 100%;
    width:170px;
}

.z-index-9999{
    z-index: 9999;
}

.navbar-toggler{
    z-index: 99999;
}


@media(max-width:768px){
    #header .navbar-dropdown{
        background: var(--red-gradient-bg);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
        min-height: 100% !important ;
        transition-duration: 0.4s;
        transform: translateX(-100%);
        z-index: 99;
        padding-top: 100px;
    }
}

#header .navbar-dropdown.show{
    transform: translateX(0%);
    transition-duration: 0.4s;
}

#header .nav-link{
    font-size: 1rem;
    line-height: 1.4em;
    color: #fff;
}

#header .nav-link:hover{
    text-decoration: underline;
}

#header .nav-link.active{
    text-decoration: underline;
}

.navbar-toggler-line{
    display: block;
    height: 3px;
    width: 22px;
    background-color: #fff;
    
}

.navbar-toggler:focus{
    outline: none !Important;
    box-shadow: none !important;
}

.navbar-toggler-line:not(:last-child){
    margin-bottom: 5px;
}
/* HERO SECTION */

.hero-section{
    background: var(--red-gradient-bg);
    margin:0 !important;
}

.hero-section--home{
    padding-top: 230px;
    overflow: hidden;
    margin-top: -80px !important;
}

.have-bg-overlay{
    position: relative;
}

.have-bg-overlay picture,
.have-bg-overlay img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.background-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner-hero-section{
    min-height: 350px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    background: var(--red-gradient-bg);
}

.hero-section__img{
    margin-bottom: -30%;
}

.hero-section--home .page-title{
    margin-bottom: 45px;
}

.hero-img-wrapper{
    padding-bottom: 60%;
}

.hero-img-wrapper img{
    width: 45%;
}

.hero-img-wrapper .hero-img-1{
    left: 0;
    top: 20%;
}

.hero-img-wrapper .hero-img-1,
.hero-img-wrapper .hero-img-3{
    z-index: 1;
}

.hero-img-wrapper .hero-img-2{
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.hero-img-wrapper .hero-img-3{
    right: 0;
    top: 20%;
}

/* CONTENT SECTION */

.content-section{
    margin-top:40px;
    margin-bottom: 40px;
}

.content-section.with-bg{
    padding-top:40px;
    padding-bottom: 40px;
}

.unique-spin__image{
    margin-bottom: -40%;
}

.tailored__image{
    margin-bottom: -60%;
}

/* ANIMATED IMAGES ONE */

.img-animated-one_1{
    left: -10px;
    top: 60%;
    max-width: 13%;
}

.img-animated-one_2{
    bottom: 0;
    right: 19%;
    z-index: 3;
    max-width: 14%;
}

.img-animated-one_3{
    right: 0;
    bottom: 0;
    max-width: 23%;
}

.img-animated-one_4{
    top: 0;
    right: -10%;
    max-width: 37%;
}

/* features slider */

.swiper-button-next, 
.swiper-button-prev{
    color:var(--bs-primary) !important;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover{
    color:var(--bs-primary-hover) !important;
}

.swiper-features__slide-wrapper{
    height: 100%;
}

.features-slider__container,
.swiper-features__slide-content{
    border-radius: var(--border-radius-10);
}

.features-slider__container{
    padding:20px;
}

.features-slider__container .swiper-slide{
    cursor:pointer;
}

.swiper-features__slide-content{
    padding:10px;
}

.slide-features__title{
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
}

.slide-features__number{
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 5px;
}

.slide-features__text{
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2em;
}

.swiper-features__desktop .swiper-slide:not(.swiper-slide-active){
    opacity: 0 !important;
}

.swiper-features__desktop .swiper-slide:not(.swiper-slide-active){
    opacity: 0 !important;
}

.swiper-features__nav{
    position: absolute;
    width: 100%;
    padding: 10px;
    top: -7px;
}

.swiper-features__desktop .swiper-features--buttons{
    position: relative !important;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    width: 14px !important;
    height: 14px !important;
    margin-top: 0 !important;
}

.swiper-features--buttons:after,
.swiper-features--buttons:before{
    font-size: 11px !important;
    font-weight: 700 !important;
}

/* ICON BOXES */

.card__icons{
    display: grid;
    padding: 40px 50px;
    grid-template-columns: 1fr;
    gap: 55px;
    border:3px solid var(--border-light-gray);
    border-radius: var(--border-radius-10);
}

.card__icons img{
    max-width: 5rem;
    margin-bottom: 15px;
}

.card__icons p{
    font-size: 0.9rem;
}

/* USER CARD */

.card-user{
    padding: 25px;
    border-radius: var(--border-radius-10);
}

.card-user__title{
    font-size: 1.6rem;
    line-height: 1.4em;
    font-weight: 600;
}

.card-user__image{
    width:140px;
    display: block;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 20px;
    border-radius: 50%;
}


/* TESTIMONIAL SLIDER */

.swiper-testimonials{
    width: 100%;
    overflow: visible !important;
    margin-left: 0 !important;
    
}

.swiper-testimonials .swiper-slide{
    height: auto;
    cursor: move;
    cursor: grab;
}

.swiper-testimonials .swiper-slide:active {
    cursor: grabbing;
}

.testimonial-card{
    padding: 30px 15px 15px 15px;
    border:2px solid var(--border-light-gray);
    border-radius: var(--border-radius-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    row-gap:30px;
}

.testimonial-card__rating{
    gap:10px;
}

 .testimonial-card__review{
    font-size: 0.9rem;
    line-height: 1.4em;
 }

 .testimonial-card__name{
    font-size: 0.8rem;
    line-height: 1.5em;
    font-weight: 600;
 }

/* CTA SECTION */

.cta-box{
    border-radius: var(--border-radius-40);
    padding: 40px 25px 30px;
}

.cta-box p{
    font-size: 1.2rem;
    line-height: 1.4em;
    margin:25px 0;
}

/* FOOTER */

.footer-container{
    padding-top: 40px;
    padding-bottom: 40px;
    border-top-left-radius: var(--border-radius-20);
    border-top-right-radius: var(--border-radius-20);   
}

.footer__logo{
    max-width: 210px;
    margin-bottom: 25px;
}

footer p{
    font-size: 0.8rem;
    line-height: 1.6em;
}

.footer_nav{

}

.footer_nav .nav-link{
    font-size: 0.8rem;
    color: #fff;
}

.footer_nav .nav-item:not(:last-child){
    margin-bottom: 8px;
}

.text-copyright{
    margin-top: 40px;
}

.text-copyright p{
    font-size: 0.6rem;
    line-height: 1.7em;
}

@media(max-width:767px){
    
    .swiper-features__slide-wrapper{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media(min-width:768px){

    #header .navbar-dropdown .nav-link{
        font-size: 0.9rem;
        font-weight: bold;
        padding:10px;
        margin-right: 10px;
    }

    .content-section{
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .content-section.with-bg{
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-section--home{
        padding-top: 245px;
    }

    h1.home-hero__page-title{
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    h1.page-title{
        font-size: 3.5rem !important;
        line-height: 0.95em;
    }

    .hero-section--home .page-title {
        margin-bottom: 30px;
    }

    .hero-img-wrapper {
        padding-bottom: 55%;
    }

    .hero-img-wrapper .hero-img-1, 
    .hero-img-wrapper .hero-img-3 {
        top: 10%;
    }    

    .img-animated-one_1 {
        max-width: 18%;
    }
    
    .img-animated-one_3 {
        right: -3%;
        bottom: 5%;    
        max-width: 29%;
    }
    
    .img-animated-one_4 {
        max-width: 48%;
        right: -25%;
    }

    .card__icons{
        grid-template-columns: repeat(2,1fr);
        padding: 70px 40px;
        gap: 80px;
    }

    .card-user__image{
        width: 100%;
    }

    .cta-box p{
        margin-top: 0;
    }
    
    .footer-grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }

    .card-user{
        border-radius: var(--border-radius-20);
    }

    .features-slider__container{
        padding:25px 15px;
        border-radius: 20px;
    }

    .swiper-features__desktop{
        background-color: #fff;
        border-radius: 10px;
    }
    
    .slider-thumbnail{
        width: 35%;
        display: inline-block;
        padding-right: 40px;
        align-self: flex-start;
    }

    .slider-thumbnail .swiper-wrapper{
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows:1fr;
        row-gap: 20px;
    }
    
    .slider-thumbnail .swiper-slide{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        border-radius: 40px;
        background-color: #fff;
        padding:1px 10px;
        font-size: 0.9rem;
        font-weight: 400;
        text-align: center;
        position: relative;
        box-sizing: content-box;
    }

    .slider-thumbnail .swiper-slide:hover{
        color: var(--bs-primary);
    }
    .slider-thumbnail .swiper-slide:before{
        content:'';
        width:100px;
        height: 100%;
        background-color: #fff;
        position: absolute;
        top: 0;
        right: 0px;
        transition: right 0.5s, opacity 0s;
        z-index: -1;
        display: block;
        opacity: 0;
    }

    .slider-thumbnail .swiper-slide.swiper-slide-thumb-active:before{
        right: -50px;
        transition: right 0.5s, opacity 0s;
        opacity: 1;
    }

    .swiper-features__desktop .swiper-slide:not(.swiper-slide-active){
        opacity: 0 !important;
    }

    .slider-thumbnail .swiper-slide-thumb-active{
        font-weight: 700;
        color:var(--bs-primary);
    }

    .swiper-features__desktop{
        width:65%;
        display: inline-block;
    }

    .swiper-features__slide-content{
        padding: 25px 25px;
        height: 100%;
    }

    .swiper-features__desktop .slide-features__number{
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .swiper-features__desktop .slide-features__text{
        font-size: 0.8rem;
        line-height: 1.5em;
    }

   /* .swiper-testimonials {
        max-width: 70vw;
    }*/

    .cta-box{
        border-radius: 20px;
    }

    .footer-content-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 40px !important;
    }

    .icon-box--anim-tablet-3{
        transition-delay:.3s !important;
    }

    .icon-box--anim-tablet-5{
        transition-delay:.5s !important;
    }

}

@media(min-width:1024px){

    .hero-section{
        padding-bottom: 60px;
    }

    .inner-hero-section{
        min-height: 550px;
    }

}

@media(min-width:1200px){

    h1,
    h2.section-title-large{
        font-size: 1.8rem !important;
    }
    

    .section-title{
        margin-bottom: 40px;
    }

    .hero-section--home{
        overflow: visible;
        margin-bottom: 100px;
        padding-top: 250px;
    }

    .hero-img-wrapper{
        padding-bottom: 100%;
        margin-bottom: -200px;
    }

    h1.page-title{
        margin-left: 0;
        margin-right: 0;
        font-size: 4.15rem !important;
    }
    
    .hero-img-wrapper img{
        width: 40%;
    }

    .img-animated-one_4 {
        max-width: 39%;
        right: -13%;
    }

    .swiper-features__desktop{
        border-radius: 20px;
    }

    .features-slider__container{
        border: 40px;
        padding: 25px 20px;
    }

    .swiper-features__desktop .slide-features__number {
        font-size: 5rem;
    }

    .swiper-features__desktop .slide-features__text {
        font-size: 1.2rem;
        line-height: 1.35em;
    }

    .slider-thumbnail .swiper-slide{
        font-size: 1rem;
        height: 50px;
    }

    .cta-box p{
        font-size: 1.4rem;
        line-height: 1.3em;
    }

    .card__icons{
        grid-template-columns: repeat(3,1fr);
        border-radius: 50px;
    }

    .card-user{
        border-radius: 40px;
    }

    .btn-download{
        height: 65px;
    }

    .cta-box{
        padding: 30px 50px;
        border-radius: 40px;
    }

    .footer-nav-grid{
        column-gap: 0 !important;
        row-gap: 40px;
    }

    .footer-content-grid{
        grid-template-columns: 5fr 7fr;
        column-gap: 60px !important;
    }

    .footer__logo{
        max-width: 250px;
    }

    .icon-box--anim-des-25{
        transition-delay: .25s !important;
    }

    .icon-box--anim-des-45{
        transition-delay: .45s !important;
    }

    .icon-box--anim-des-65{
        transition-delay: .65s !important;
    }

    .text-margin-top{
        margin-top:100px;
    }

}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1060px;
    } 
}

/* inner page */


.content-section--inner-page > div:not(:last-child){
    margin-bottom: 40px;
}

.content-section--inner-page .section-title{
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .content-section--inner-page > div:not(:last-child){
        margin-bottom: 55px;
    }
}

@media(max-width:370px){
    .font-xs-12{
        font-size: 12px;
    }
}

@media(max-width:395px){
    .cta-box__button-row .col-auto{
        max-width: calc(50% - 5px) !important;
    }
}

/** Cookie Banner **/
#cc-main {
    --cc-font-family: 'Montserrat', 'Arial', sans-serif;
    --cc-btn-primary-bg: #FF9900;
    --cc-btn-primary-border-color: #FF9900;
    --cc-btn-primary-hover-bg: #ee8800;
    --cc-btn-primary-hover-border-color: #ee8800;
}

#cc-main .cm__desc {
    font-size: 0.7rem;
    line-height: 1.4em;
}