@font-face{
    font-family: Circular Sense;
    src: url(/wp-content/themes/gridlove-child/assets/fonts/CircularSenseWeb-Book.woff2) format("woff2");
    font-weight: 450;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family: Circular Sense;
    src: url(/wp-content/themes/gridlove-child/assets/fonts/CircularSenseWeb-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family: Circular Sense;
    src: url(/wp-content/themes/gridlove-child/assets/fonts/CircularSenseWeb-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style:normal;
    font-display:swap;
}
html {
    margin-top: 0px !important;
}
img{
    max-width:100%;
}
:root{
    --font-family:Circular Sense, Ciruclar, Arial;
    --main-midnight:#021940;
    --secondary-clouds: #ECF8FA;
    --neutral-inactive: #707070;
    --Dusk:#042866;
}
@media (min-width: 1980px){
    :root {
        --container-padding: 50px;
    }
}
body{
    color:#707070;
    font-family:Circular Sense, Ciruclar, Arial;
    font-weight: 450;
}
.brown-wrap{
    background: right 0px top 29% / 26% no-repeat url(/wp-content/themes/gridlove-child/assets/img/hero-shape.svg) var(--primary-color);
    margin-bottom: -240px;
    padding-bottom: 238px;
}
.mob{
    display:none;
}
.hero {
    padding-top: 32px;
    padding-bottom: 115px;
    overflow:hidden;
}
.centered{
    max-width: 1176px;
}
.hero .centered{
    max-width: 1398px;
}
.hero-content {
    margin-top: 48px;
    max-width: 530px;
    color: white;
}
body .h1{
    font-size: 64px;
    line-height: 74px;
}
body .hero-heading{
    /*font-size: 64px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 74px;*/ /* 109.375% */
    letter-spacing: -2px;
    margin-bottom: 31px;
    font-family: Circular Sense, Ciruclar, Arial;
    color: inherit;
}
.hero-wrap{

    display: flex;
    padding-left: 38px;
    padding-right: 38px;
    justify-content: space-between;
    /*overflow: hidden;*/
}
.hero__img {
    max-width: 330px;
    margin-top: 89px;
}
.hero-image video{
    width: 130%;
    margin-right: -120px;
    margin-top: 71px;
}
.hero-carousel-wrap {
    display: grid;
    grid-template: 1fr / 1fr;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateX(90deg);
}
.hero-app-btn{
    display: inline-block;
    border-radius: 50px;
    padding: 17px 21px 17px 16px;
    min-width: 219px;
    width: 100%;
    max-width: 316px;
    box-sizing: border-box;
    text-align: center;
    color: white !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 450;
    margin-bottom: 24px;
    background: var(--main-midnight);
    z-index: 2;
}
.hero-app-btn::before{
    content:"";
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 27px;
    background: center center / contain no-repeat url(/wp-content/themes/gridlove-child/assets/img/app-store-white.svg);
    margin-right: 16px;
}
.hero-app-btn.google-play::before{
    background-image:url(/wp-content/themes/gridlove-child/assets/img/google-play-white.svg)
}
.sticky-button-wrap{
    border-radius:10px 10px 0 0;
    padding-top:15px;
    padding-bottom:15px;
    max-width: 100vw;
    
}

.sticky-button-wrap.sticky{
    position:fixed;
    bottom:0;
}
.sticky-button-wrap .hero-app-btn:last-child{
    margin-bottom:0;
}
.hero-carousel-wrap,
.rotating-image img {
    animation-name: rotate;
    animation-duration: var(--time);
    animation-fill-mode: none;
    animation-iteration-count: infinite;
}
.rotating-image{
    --radius:min(208px, 14vw);
    --rad:0.0174533;
}

.rotating-image.image1 img{
    animation-delay:0s, calc(var(--time)/3*2);
}


.rotating-image.image3 img{
    animation-delay:0s, calc(var(--time)/3);
}
.rotating-image img {
    animation-name: rotate_img, shadow_img;
}

.hero-carousel {
    perspective: 140vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53%;
    flex-shrink: 0;
    margin-top: 48px;
    --time:15s;
}
.rotating-image {
    max-width: min(252px, 16vw);
    grid-column: 1/ 1;
    grid-row: 1 /1;
    transform-style: preserve-3d;
}
.rotating-image img{
    border-radius: 22.196px;
    transition:box-shadow 1s ease;

}
.carousel-shadow{
    box-shadow: 0 0 100px 0px #00000042;
}
@keyframes rotate {
  0%   {transform: rotateX(90deg) rotateZ(0deg)}
  24%  {transform: rotateX(90deg) rotateZ(0deg)}
  33%  {transform: rotateX(90deg) rotateZ(120deg)}
  57%  {transform: rotateX(90deg) rotateZ(120deg)}
  66%  {transform: rotateX(90deg) rotateZ(240deg)}
  93% {transform: rotateX(90deg) rotateZ(240deg)}
  100% {transform: rotateX(90deg) rotateZ(360deg)}
}
@keyframes rotate_img {
  0%   {transform: rotateY(0deg)}
  24%  {transform: rotateY(0deg)}
  33%  {transform: rotateY(120deg)}
  57%  {transform: rotateY(120deg)}
  66%  {transform: rotateY(240deg)}
  93% {transform: rotateY(240deg)}
  100% {transform: rotateY(360deg)}
}
@keyframes shadow_img {
  0%   {box-shadow: none;}
  3%   {box-shadow: 0 0 100px 0px #00000042;}
  24%  {box-shadow: 0 0 100px 0px #00000042;}
  33%  {box-shadow: none;}
  93% {box-shadow: none;}
}
.qr_code_text{
    font-weight: 700;
    margin-bottom:17px;
    border-top: 2px solid white;
    max-width: 426px;
    padding-top: 10px;
}
.qr {
    width: 128px;
    border-radius: 15px;
}
.below_qr {
    margin-top: 23px;
}
.hero-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin-bottom: 47px;
}
.under-hero {
    padding-bottom: 120px;
}

.under-hero-wrap {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    padding: 58px 41px 56px 55px;
    column-gap: 87px;
    align-items: flex-start;
    box-shadow: 6px 6px 30px 4px rgba(0, 0, 0, 0.16);
}
.under-hero__img{
    max-width: min(426px, 50%);
}
body .h2{
    font-size: 40px;
    font-style: normal;
    font-weight: 450;
    line-height: 48px;
    letter-spacing: -1.5px;
    color: var(--main-midnight);
    font-family: Circular Sense, Ciruclar, Arial;
}
@media(min-width:800px){
    .appearing-text{
        opacity:0;
        transform: translateY(30vh);
    }
    .appeared-text{
        transition:opacity 1s cubic-bezier(0, 0, 0.21, 0.97), transform 0.7s cubic-bezier(0, 0, 0.21, 0.97);
        transform: translateY(0);
        opacity:1;
    }
}

.under-hero-heading {
    max-width: 68%;
    margin-bottom: 31px;
    font-family: Circular Sense, Ciruclar, Arial;
}
.under-hero-content {
    margin-top: 23px;
}
.under-hero-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
    white-space: pre-line;
}
.benefits .centered{
    display:flex;
    padding-left: 23px;
    padding-top: 0;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: 0;
    padding-right: 0;
    margin-left: calc((100% - 1246px)/2);
    max-width: unset;
    overflow: hidden;
}
.benefits-texts {
    max-width: 500px;
    margin-top: min(145px, 15vh);
    position: relative;
    height: 730px;
}

.benefits-text {
    padding-bottom: 48px;
    position:relative;
    background-repeat: no-repeat;
    padding-left: 50px;
    /*display:none;*/
    overflow:hidden;
    min-height: 70vh;
}

.benefits-text.active{
    opacity:1;
}

.benefits-text .gray-line {
    content: "";
    position: absolute;
    width: 1px;
    background: #B7B7B7;
    top: 56px;
    height:0;
    left: 15px;
    opacity:1;
    transition:height 1.3s 2s ease;
    height:calc(100% - 56px - 16px);
}
.benefits-text:last-child .gray-line{
    display: none;
}
.benefits-text.active::before {
    /*height:0;*/
}

.benefits-text .white-overlay{
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(2deg, #fff 0%, #FFF 30.21%, rgba(255, 255, 255, 0) 100.92%);
}
.benefits-text:first-child .white-overlay{
    display:none;
}
.benefits-text .benefits-marker{
    content:"";
    width: 16px;
    height: 16px;
    position: absolute;
    border-radius:50%;
    background:var(--neutral-inactive);
    top: 17.5px;
    left: 6.5px;
    /*transition:all 0.3s ease, opacity 0.3s 0.5s ease, background 0.5s 0.2s ease;*/
}

.benefit-content,
.benefit-title{
    transition:all 0.3s ease;
}
.benefits-text.animate .benefit-content,
.benefits-text.animate .benefit-title,
.benefits-text.animate .benefits-marker{
    opacity: 0;
}


/*
.benefits-text.active .benefits-marker, .benefits-text.active~.benefits-text .benefits-marker{
    
    width:32px;
    height:32px;
    left: -5.7px;
    top: 5.5px;
    background-image: radial-gradient(white 55%, transparent 55%), conic-gradient(var(--primary-color) 0%, #D8D8D8 0%, #D8D8D8 100%);

    
} */
.benefits-text.active .benefits-marker{
    width: 24px;
    height: 24px;
    left: 4.3px;
    top: 15.5px;
    background:var(--primary-color);
}
.benefits-text.active, .benefits-text.active+.benefits-text{
    display:block !important;
}
.benefits-text.active+.benefits-text:not(.active) .benefit-text{
    /*display:none;*/
}
.benefit-title {
    margin-bottom: 0;
    font-size: 40px;
    font-style: normal;
    font-weight: 450;
    line-height: 48px; /* 120% */
    letter-spacing: -1px;
    color: var(--main-midnight);
    transition:all 0.3s ease;
} 
.benefits-text.active .benefit-title{
    font-size: 40px;
    font-style: normal;
    font-weight: 450;
    line-height: 48px; /* 100% */
    letter-spacing: -2px;
} 
.benefit-text {
    margin-top: 32px;
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
    overflow: hidden;
}
.benefits-text.active .benefit-text{
    /*display:block;*/
}
.benefits-images{
    display:grid;
    grid-template-columns:1fr;
    flex-shrink: 0;
    width: 57%;
    margin-right: -9%;
    align-self: end;
}

.benefits__img-wrap{
    grid-column:1 / 1;
    grid-row:1 / 1;
    position: relative;
    height:100%;
}
.benefits__big-img-wrap {
    overflow: hidden;
    border-radius: 500px 500px 0 0;
    height: max-content;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    max-height: 700px;
    padding-right: 16%;
}
@media(min-width: 1980px){
    .benefits-images{
        margin-right: 0%;
    }
    .benefits__big-img-wrap{
        padding-right: 0;
    }
}
.benefits__img-anim {
    height:100%;
    overflow: hidden;
}
.benefits__img-wrap.animate .benefits__img-anim {
    /*transition:height 1s linear;*/
    height:0;
}
.benefits__img-wrap.active{
    z-index:2;
}
.benefits__img-wrap.active+.benefits__img-wrap{
    z-index:1;
}

.benefits__img{
    width:100%;
    height:700px;
    object-fit: cover;
    object-position: right bottom;
}
.benefits__img.animate{
    /*transition: transform 9s linear;*/
    transform:scale(1.25);
    z-index:1;
}

.benefits__card {
    position: absolute;
    top: 14%;
    left: -18%;
    opacity:1;
    /*transition:opacity 0.8s ease, transform 1s ease;*/
    transform:translateY(100px);
    opacity:0;
}

.benefits__img-wrap0 .benefits__card{
    max-width: 320px;
}

.benefits__img-wrap2 .benefits__card{
    max-width: 360px;
}

.benefits__img-wrap1 .benefits__card{
    max-width: 200px;
    left: -8%;
}
.benefits__img-wrap3 .benefits__card{
    max-width: 320px;
    left: -20%;
}
.benefits__card.pre-animate {

    
    
}
.benefits__card.post-animate {

    transition:opacity 0.4s ease, transform 0.5s ease;
    transform:translateY(-100px);
    opacity:0 !important;
}
.benefits__img-wrap.active .benefits__card {
    z-index:2;
    /*opacity:1;*/
}
.benefits__img.active{
    opacity:1;
}

@media(min-width: 800px){
    .benefits{
        height:900vh;
    }
    .benefits .centered{
        position:sticky;
        top:0px;
        max-height: 100vh;
        max-width: 100%;
    }
    .benefits__img{
        max-height: 100vh;
    }
    .benefits-text {
        opacity:0;
    }
}
.why-sense{
    margin-top: 125px;
}
.why-sense-picture {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 104px 45px 96px;
    margin-bottom: 48px;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: white;
}
.why-sense__img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.why-sense-content {
    position: relative;
    display: flex;
    column-gap: 32px;
}
.h1.why-sense-heading {
    /*font-size: 64px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 104px;*/
    letter-spacing: -3px;
    margin-bottom: 34px;
    width: 48%;
    flex-shrink: 0;
    color:var(--main-midnight);
}
.why-sense-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
}
.why-sense-stats {
    padding: 0 40px;
    margin-top: 47px;
}
.why-sense-stat {
    max-width: 284px;
    z-index:1;
}
.why-sense-stat-title {
    font-size: 64px;
    font-style: normal;
    font-weight: 450;
    line-height: 70px;
    letter-spacing: -2px;
    margin-bottom: 18px;
}
.why-sense-stat-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 24px;
}
.how-sense-works-wrap {
    display: flex;
    gap: 27px;
}
.how-sense-works {
    margin-top: 126px;
    margin-bottom: 126px;
}
.how-sense-works-block {
    color: var(--main-midnight);
    width: 280px !important;
    height: auto !important;
    flex-shrink: 0;
    border-radius: 24px;
    padding: 19px 21px 24px;
    background:var(--secondary-clouds);
}
.h1.how-sense-works-title {
    /*font-size: 64px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 64px;*/
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    color:var(--main-midnight);
}
.how-sense-works-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
}
@media(min-width:1300px){

    .how-works-items,
    .swiper-wrapper,
    .swiper-pagination{
        display:contents !important;
    }
}
.how-sense-works-headers {
    margin-top: -3px;
    max-width: 279px;
    margin-right: auto;
    flex-shrink: 0;
}
.how-sense-works-block-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 450;
    line-height: 40px;
    letter-spacing: -1px;
    margin-bottom: 17px;
    margin-top: 99px;
    font-family: Circular Sense, Ciruclar, Arial;
}
.how-sense-works-block-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 24px;

}

.download {
    display: flex;
    justify-content: center;
    align-items:center;
    column-gap: 131px;
    padding-left: 107px;
    padding-right: 109px;
    padding-top: 126px;
    padding-bottom: 121px;
    border-radius: 32px;
    background: var(--primary-color);
    color: white;
    max-width: 1320px;
    background: right -50px top -301px / 100% no-repeat url(/wp-content/themes/gridlove-child/assets/img/how-works-left.svg) var(--primary-color);
}
.centered.download-wrap {
    max-width: 1400px;
    overflow: hidden;
}
.download__img {
    max-width: 300px;
}
.download-content {
    margin-top:34px;
    max-width: 316px;
}
.h1.download-title {
    margin-bottom: 18px;
    /*font-size: 64px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 64px;*/
    letter-spacing: -3px;
    margin-bottom: 0;
    color:white;
}
.download-text {
    font-size: 32px;
    font-style: normal;
    font-weight: 450;
    line-height: 40px;
    margin-bottom: 22px;
}
.download-carousel {
    width: 222px;
    margin-top: 0;
    perspective: 100vw;
}
.download-carousel .rotating-image {
    max-width: min(165px, 16vw);
    --radius: min(122px, 14vw);
}
.app-button {
    display: inline-block;
    border: 2px solid #181818;
    border-radius: 50px;
    padding: 12px 11px 12px 52px;
    min-width: 256px;
    color: #222;
    font-size: 15px;
    font-style: normal;
    font-weight: 450;
    margin-bottom: 24px;
    background:left 16px center / auto no-repeat url(/wp-content/themes/gridlove-child/assets/img/app-store.svg);
}
@media(min-width:800px){
    .app-button {
        display:none;
    }
}
/*.google-play{
    background-image:url(/wp-content/themes/gridlove-child/assets/img/google-play.svg);
}*/
.download-qr {
    margin-top: 8px;
    border-radius: 11.266px;
    max-width: 96px;
}

.blog {
    margin-top: 122px;
    margin-bottom:100px;
    overflow:hidden;
    /*max-width: 100%;*/
}

.h1.blog-title {
    /*font-size: 64px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 56px;*/
    letter-spacing: -1.5px;
    margin-bottom: 65px;
    color:var(--main-midnight);
}
.blog-content {
    display: flex;
    position: relative;
    gap: 33px;
    z-index: 1;
}
.blog-post.swiper-slide{
    width: 0;
    flex-grow: 1;
}
.blog-image {
    border-radius: 24px;
    overflow: hidden;
    max-height: 197px;
    object-fit: cover;
    object-position: center;
}
.blog-article-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 450;
    line-height: 40px;
    letter-spacing: -1px;
    margin-top: 16px;
    color: var(--main-midnight);
    padding-right: 13px;
}
.blog-post-date{
    color: var(--neutral-inactive);
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 24px;
    margin-top: 29px;
}
.blog-post-date::before{
    content:"";
    display:inline-block;
    width: 14.769px;
    height: 16px;
    background: center / contain no-repeat url(/wp-content/themes/gridlove-child/assets/img/calendar.svg);
    margin-right: 5px;
    margin-bottom: -2px;
}
.blog-learn-more{
    color: var(--Dusk);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 31px;
}
.blog-learn-more::after{
    content:"";
    display:inline-block;
    width: 12px;
    height: 11px;
    background: center / contain no-repeat url(/wp-content/themes/gridlove-child/assets/img/learn-more-arrow.svg);
}
.faq-content {
    max-width: 1181px;
}
.faq {
    background-color: var(--main-midnight);
    color: white;
    margin-top: 124px;
    padding-top: 123px;
    padding-bottom: 120px;
}
.faq a{
    color:inherit;
    text-decoration:underline;
}
.h2.faq-heading {
    /*font-size: 48px;*/
    font-style: normal;
    font-weight: 450;
    /*line-height: 56px;*/
    letter-spacing: -1.5px;
    color: white;
    margin-bottom: 123px;
}
.faq-question {
    border-top: 1px solid white;
    padding: 24px 0px 6px;
    position: relative;
    cursor:pointer;
    margin-bottom: 49px;
}
.faq-question-button{
    width: 56px;
    height: 56px;
    top: 24px;
    right: 3px;
    border-radius:50%;
    border:1.4px solid #FFFFFF88;
    position: absolute;
}
.faq-question-button::before,
.faq-question-button::after{
    content:"";
    position:absolute;
    width: 17px;
    height:3px;
    background:white;
    top:0px;
    right: 0px;
    left:0;
    bottom:0;
    margin:auto;
}
.faq-question-button::before{
    transform:rotate(90deg);
    transition:transform 0.3s ease;
}
.faq-question.opened .faq-question-button::before{
    transform:rotate(0deg);
}
.question-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 450;
    line-height: 40px;
    letter-spacing: -1px;
    max-width: 87%;
    margin-bottom: 18px;
}
.question-text {
    padding-top: 21px;
    font-size: 20px;
    font-style: normal;
    font-weight: 450;
    line-height: 32px;
    white-space: pre-line;
    display:none;
    max-width: 89%;
}
@media(max-width:1300px){

    .how-sense-works-wrap{
        display:block;
    }
    .benefits__big-img-wrap{
        padding-right: 10vw;
    }
    .benefits-images{
        margin-right:-10vw;
    }
    .benefits .centered{
        margin-left:0;
    }
}
@media(max-width:1300px) and (min-width:1100px){

    .how-works-items{
        display:flex !important;
        gap: 20px;
        margin-top: 30px;
    }

}
@media(max-width:1100px){
    .benefits .centered{
        padding-left: 34px;
        gap:10vw;
    }
    .benefits__card {
        max-width: 30vw !important;
    }
    .how-works-items,
    .swiper-wrapper,
    .swiper-pagination{
        display:block;
    }
    .how-sense-works {
        margin-top: 11px;
        margin-bottom: 88px;
        overflow: hidden;
        padding-bottom: 41px;
    }
    .how-sense-works-block{
        box-sizing: border-box;
        width: 251px !important;
        height:auto !important;
    }
    .how-sense-works-headers{
        max-width: unset;
    }
    .h2.how-sense-works-title{
    }
    .how-sense-works-title br{
        display: none;
    }
    .how-sense-works-text{
        margin: 0 auto;
    }
    .how-sense-works-block-title{
        font-size: 24px;
        line-height: 120%; /* 28.8px */
        letter-spacing: -0.805px;
        margin-bottom: 23px;
    }
    .how-sense-works-block-text{
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px; 
        color: var(--main-font-color);
    }
    .how-works-items {
        margin-top: 41px;
        overflow: visible !important;
    }
    .how-works-items .swiper-wrapper,
    .blog-content .swiper-wrapper{
        height:auto;
    }
    .swiper-pagination {
        top: unset !important;
        bottom: -40px !important;
    }
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        background: #D9D9D9 !important;
        opacity: 1 !important;
        border-radius: 50px !important;
        margin: 0 1px !important;
        transition: all 0.4s ease;
    }
    .swiper-pagination-bullet-active {
        background: var(--primary-color) !important;
        width: 35px !important;
        margin: 0 4px !important;
    }

    .blog-post{
        display: block;
        width: 314px !important;
        max-width: 100%;
    }
    .blog {
        padding-bottom: 40px;
    }
    .download{
        flex-direction: column;
        align-items:center;
    }
    .download-carousel {
        margin-top: 50px;
    }
}
@media(max-width:950px){

    .blog {
        margin-top: 89px;
        margin-bottom: 87px;
    }
    .blog-image {
        border-radius: 16px;
        overflow: hidden;
        height: 48vw;
        object-fit: cover;
        width: 100%;
        max-width: 83vw;
    }
    .blog-article-title {
        margin-bottom: 40px;
    }

    .h1.blog-title {
        margin-bottom: 54px;
    }
    .blog-content {
        display: block;
    }
}
@media(max-width:800px){
    body .h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .desk{
        display:none;
    }
    .mob{
        display:block;
    }
    .logo {
        max-width: 111px;
    }
    .hero {
        padding-top: 22px;
        margin-bottom: 26px;
    }
    .brown-wrap {
        background: right 0px top -21% / 66% no-repeat url(/wp-content/themes/gridlove-child/assets/img/hero-shape.svg) var(--primary-color);
        margin-bottom: -393px;
        padding-bottom: 348px;
    }

    body .hero-heading {
        margin-bottom: 28px;
        font-size: 48px;
        font-style: normal;
        font-weight: 450;
        line-height: 56px;
        letter-spacing: -2px;
        max-width: 90%;
    }
    .hero-wrap {
        padding-left: 22px;
        padding-right: 21px;
        display: block;
    }
    .hero-content {
        margin-top: 45px;
    }
    .hero-text{
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
    }
    .qr_code_text, .qr{
        display:none;
    }
    .sticky-button-wrap{
        box-shadow: 0 0 15px 0px #00000045;
        background:white;
        width: 100vw;
        padding-left: 22px;
        padding-right: 21px;
        margin-left:-22px;
        margin-right:-21px;
        z-index: 2;
        margin-top: 21px;
    }
    
    .rotating-image{
        --radius: min(208px, 32vw);
        max-width: min(252px, 37vw);
        animation-name: unset;
        /*animation-play-state: paused;*/
    }
    .rotating-image img{
        border-radius: 2.5vw;
        animation-name: unset;
        /*animation-play-state: paused;*/
    }
    .rotating-image.image2 img{
        box-shadow: 0 0 100px 0px #00000042;
        animation-name: unset;
    }
    .hero-carousel-wrap{
       animation-play-state: paused;
    }

    .hero-carousel {
        margin: 8.5vw auto 10px;
        perspective: 300vw;
    }
    .hero-image video {
        width: 121vw;
        margin-right: 0;
        margin-left: -57px;
        margin-top: -9px;
    }
    .under-hero {
        padding-bottom: 65px;
    }
    .under-hero__img{
        max-width: 89%;
        order: 0;
    }
    .under-hero-wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 34px 34px 47px;
        border-radius: 24px;
        text-align: center;
    }
    body .h2 {
        color: var(--main-midnight);
        font-size: 40px;
        font-style: normal;
        font-weight: 450;
        line-height: 48px; /* 120% */
        letter-spacing: -2px;
    }
    .h2.under-hero-heading{
        margin-top: 26px;
        max-width: 100%;
        text-align: left;
        order: 1;
        margin-bottom: 2px;

    }
    .under-hero-content {
        margin-top: 21px;
        order: 3;
    }
    .under-hero-text{
        text-align: left;
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
    }
    .benefits-text.active .benefit-title, .benefit-title{
        margin-bottom: 16px;
        margin-right: 20px;
        margin-top: 24px;
        position: relative;
        color: var(--main-midnight);
        font-size: 24px;
        font-style: normal;
        font-weight: 450;
        line-height: 108%; /* 25.92px */
        letter-spacing: -0.805px;
        padding-right: 60px;
    }
    .benefits .centered {
        display: block;
        padding-left: 0px;
        padding-top: 10px;
        margin: 0;
    }
    .benefits__img{
        width: 100vw;
        max-width: unset;
        opacity: 1;
        height: unset;
        margin-left: -20px;
        margin-right: -20px;
    }
    .benefits-texts{
        padding-left: 20px;
        padding-right: 20px;
        max-width: unset;
        height: unset;
        margin-top: 0px;
    }
    .benefits-text{
        padding-left: 0px;
        border-bottom: 1px solid var(--hairlines);
        margin-bottom: 32px;
        padding-bottom: 0;
        display:block;
        overflow: visible;
        min-height: unset !important;
    }
    .benefits-text .benefits-marker{
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        background: unset !important;
        border:0.7px solid #B7B7B7;
        right: -14px !important;
        left: unset !important;
        top: 0px !important;
        bottom: 0;
        margin: auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        //display: none;
    }
    .benefits-text .benefits-marker.desk{
        display:none;
    }
    .benefits-text .white-overlay{
        display:none;
    }
    .benefits-text .benefits-marker::before{
        content:"";
        width:20px;
        height: 20px;
        display:block;
        background: center / contain no-repeat url(/wp-content/themes/gridlove-child/assets/img/benefit-arrow.svg);
        transition: transform 0.3s ease;
    }
    .benefits-text .gray-line{
        display:none;
    }
    .benefits-text.active .benefits-marker::before{
        transform: rotate(180deg);
    }
    .benefit-text{
        margin-top: 10px;
        padding-bottom: 30px;
        display: block;
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
    }
    .benefit-content{
        display:none;
    }
    .why-sense {
        margin-top: 40px;
    }
    .h1.why-sense-heading{
        font-size: 40px;
        line-height: 108%; /* 43.2px */
        letter-spacing: -2px;
        width: unset;
        margin-bottom: 23px;
        color:var(--main-midnight);
    }
    .why-sense-content {
        display: block;
    }
    .why-sense-picture{
        padding: 79px 32px 6px;
        margin-bottom: 92px;
        border-radius: 24px;
    }
    .why-sense-stat-title{
        font-size: 64px;
        line-height: 104%; /* 58.24px */
        letter-spacing: -2px;
    }
    .why-sense-text {
        font-size: 16px;
        font-weight: 450;
        line-height: 24px;
    }
    .why-sense-stat-text {
        
    }
    .why-sense-stat {
        max-width: 330px;
        margin-bottom: 47px;
    }
    .why-sense-stats{
        padding: 0 20px;
        margin-top: 57px;
    }
    .how-sense-works-block{
        padding: 29px 25px 24px;
    }
    .how-sense-works-block-title{
        max-width: 95%;
        margin-top: 64px;
        margin-bottom: 8px;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.5px;
    }
    .h1.how-sense-works-title{

        margin-bottom: 26px;
        font-size: 40px;
        font-style: normal;
        font-weight: 450;
        line-height: 48px; /* 120% */
        letter-spacing: -2px;
    }
    .how-sense-works-title br:last-child {
        display: block;
    }
    .how-sense-works-text{
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
    }
    .download{
        padding-left: 22px;
        padding-right: 22px;
        padding-top: 46px;
        padding-bottom: 23px;
        flex-direction: column;
        align-items:flex-start;
        border-radius: 24px;
        background: right 80% bottom 0px / auto 100% no-repeat url(/wp-content/themes/gridlove-child/assets/img/how-works-left.svg) var(--primary-color);
    }
    .download__img {
        order: 1;
    }
    .download-title {
        
        max-width: 200px;
        font-size: 40px;
        font-style: normal;
        font-weight: 450;
        line-height: 48px;
        letter-spacing: -2px;
    }
    .download-content {
        max-width: unset;
        width: 100%;
        margin-top: 43px;
    }
    /*.download-content .hero-app-btn {
        padding: 23px 16px 23px 16px;
    }*/
    .hero-app-btn{
        max-width: unset;
    }
    .download-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
        margin: 17px 0 33px;
        max-width: 260px;
    }
    .download-carousel .rotating-image {
        max-width: min(165px, 36vw);
        --radius: min(122px, 29vw);
    }
    .download-carousel{
        perspective: 302vw;
    }
    .blog-article-title {
        margin-top: 9px;
        font-size: 24px;
        font-style: normal;
        font-weight: 450;
        line-height: 32px;
        letter-spacing: -0.5px;
        max-width: 80%;
        margin-bottom: 11px;
    }
    .blog-learn-more{
        margin-top: 15px;
    }
    .h1.blog-title {
        text-align: left;
        font-size: 40px;
        font-style: normal;
        font-weight: 450;
        line-height: 108%;
        letter-spacing: -2px;
    }
    .faq {
        margin-top: 60px;
        padding-top: 49px;
        padding-bottom: 70px;
    }
    .h2.faq-heading {
        font-size: 32px;
        line-height: 108%;
        letter-spacing: -1px;
        margin-bottom: 56px;
    }
    .question-title {
        font-size: 24px;
        line-height: 108%;
        letter-spacing: -0.805px;
    }
    .faq-question {
        padding: 16px 0;
        margin-bottom: 20px;
    }
    .faq-question-button{
        width: 41px;
        height: 41px;
        top: 15px;
        right: 0px;
    }
    .faq-question-button::before, .faq-question-button::after{
        width: 13px;
        height: 2px;
    }
    .question-text{
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
        padding-top: 4px;
    }
    .faq-question::before, .faq-question::after{
        width: 17px;
        top: 35px;
        right: 36px;
    }
}
@media(max-width:800px) and (min-width: 600px){
    .download{
        align-items: center;
    }
}