:root{
    --h1TextSize: 2.4em;
    --h2TextSize: 1.8em;
    --h3TextSize: 1.4em;
    --h4TextSize: 1.2em;
    --h5TextSize: 1em;
    --h6TextSize: 0.8em;
    --pTextSize: 1em;

    --globalFontSize : 18px;


    --globalSectionWidth : 1300px;
    --globalSectionSpacing : 120px;

    --color-bg-A1 : #fff7f1;
    --color-bg-A2 : #f3eaea;
    --color-txt-A1 : #474747;
    --color-txt-A2 : #303030;
    --color-usr-A : #1aaf96;
    
    --color-bg-B1 : #b5cac0;
    --color-bg-B2 : #fff7f1;
    --color-txt-B : #ffffff;
    --color-usr-B : #0c1e21;

    --hint-of-gradient: #3071531f;

    --shadow: 0px 4px 10px #00000030;


    --gradient: linear-gradient(330deg, var(--color-bg-B1) -50%, var(--color-bg-B2) 50%, var(--color-bg-B1) 150%);

}

.loader{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(0deg, var(--hint-of-gradient), var(--color-bg-A1) 50%) no-repeat;
    background-color: var(--color-bg-A1);
}
.loader > div{
    text-align: center;
    transition: opacity 1s;
}
.loader .blob > span{
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: var(--color-bg-B1);
    opacity: 0.5;
    animation: loaderblob2 2s infinite linear;
}
.loader .blob :first-child{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: loaderblob1 2s infinite linear;
}
@keyframes loaderblob1 {
    0%{
        border-radius: 25px;
        transform: scale(0.9);
    }
    25%{
        border-radius: 15px 25px 15px;
    }
    50%{
        border-radius: 25px 15px;
        transform: scale(1.2);
    }
    75%{
        border-radius: 15px 25px 15px;
    }
    100%{
        border-radius: 25px;
        transform: scale(0.9);
    }
}
@keyframes loaderblob2 {
    0%{
        border-radius: 15px 25px;
        transform: scale(1.2);
    }
    25%{
        border-radius: 25px 15px 25px;
    }
    50%{
        border-radius: 25px;
        transform: scale(0.9);
    }
    75%{
        border-radius: 25px 15px 25px;
    }
    100%{
        border-radius: 15px 25px;
        transform: scale(1.2);
    }
}
.loader.loaded{
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 1s;
}
.loader.loaded > div{
    opacity: 0;
}

*{
    position: relative;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Figtree-VariableFont_wght.ttf');
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf');
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Inter-Italic-VariableFont_opsz\,wght.ttf');
    font-style: italic;
}
.ff-Oswald{
    font-family: "Oswald";
}

html,
body{
    margin: 0;
    font-size: var(--globalFontSize);
    background-color: var(--color-bg-A1);
    color: var(--color-txt-A1);
    font-family: 'Jost';
    scroll-behavior: smooth;
}

h1 { font-size: var(--h1TextSize); font-weight: 600; }
h2 { font-size: var(--h2TextSize); font-weight: 600; }
h3 { font-size: var(--h3TextSize); font-weight: 600; }
h4 { font-size: var(--h4TextSize); font-weight: 600; }
h5 { font-size: var(--h5TextSize); font-weight: 600; }
h6, .h6-fs { font-size: var(--h6TextSize); font-weight: 600; }
p { font-size: var(--pTextSize); }
small { font-size: calc(var(--pTextSize) / 1.5); }


h1,h2,h3,h4,h5,h6{
    color: var(--color-txt-A2);
}
.highlight-1{
    font-weight: bold;
    text-transform: uppercase;
}
.highlight-2{
    color: var(--color-usr-A) !important;
}

/* Global Reuse START*/
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.list-none{
    padding: 0;
    list-style: none;
}
/* Global Reuse END */

::selection{
    background-color: var(--color-usr-A);
    color: var(--color-txt-A2);
}

hr{
    border: none;
    border-color: var(--color-txt-A1);
    opacity: 0.3;
    border-top: 1px solid;
    margin: 20px 0;
}

/* Link Buttons START */
a{
    color: var(--color-usr-A);
}

[class*="btn-"]{
    font-size: var(--h6TextSize);
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    border: unset;
    font-family: inherit;
    cursor: pointer;
    border-radius: 50px;
    font-weight: bold;
    transition: filter 0.5s, transform 0.5s;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.btn-1{
    background: transparent;
    color: var(--color-txt-A1);
    padding: 0;
    padding-left: 25px;
    background-color: var(--color-bg-B2);
    color: var(--color-usr-A);
}
.btn-1 > i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h4TextSize);
    width: calc(var(--h6TextSize) * 3);
    height: calc(var(--h6TextSize) * 3);
    background-color: var(--color-usr-A);
    color: var(--color-txt-B);
    border-radius: 50%;
    margin-left: 5px;
    transition: transform 0.5s, background 0.5s, color 0.5s;
}
.btn-1:hover > i{
    background-color: transparent;
    color: inherit;
    transform: translateX(-10px);
}
.btn-2{
    padding: 12px 20px;
    background: var(--color-usr-A);
    color: var(--color-txt-B);
}
.btn-2:hover{
    filter: brightness(1.4);
}
[class*="btn-"]:hover{
    transform: translateY(-2px);
}
[class*="btn-"]:focus{
    transform: scale(0.95);
    transition-duration: 0.2s;
}
.btn-1 .stats{
    position: static;
    padding: 10px 30px;
    padding-left: 0;
    align-items: center;
    transition: background 0.5s, color 0.5s;
}
.btn-1 .stats::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-usr-A);
    opacity: 0;
    transition: opacity 0.5s;
}
[class*="btn-"] .stats *{
    color: inherit;
}
.btn-1:hover .stats *{
    color: var(--color-txt-B);
}
.btn-1:hover .stats::before{
    opacity: 1;
}
/* Link Buttons END */

img,
video{
    width: 100%;
}



header{
    min-height: 900px;
    background: url('../media/tbar-squares.png') var(--color-usr-B) repeat-y bottom;
    background-size: cover;
    z-index: 1;
}
header *{
    color: var(--color-txt-B);
}
header .svgclip{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    fill: var(--color-bg-A1);
    z-index: -1;
}
header h1{
    font-size: var(--h1TextSize) !important;
}

header section{
    margin: auto;
    margin-top: 50px;
    max-width: var(--globalSectionWidth);
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s, opacity 1s;
    transition-delay: 1.5s, 1.5s;
}

header section.seen{
    opacity: 1;
    transform: none;
}

header .section-title{
    margin-top: 80px;
}

nav{
    padding: 20px;
    display: flex;
    align-items: center;
}
.logo-container{
    max-width: 200px;
}
.nav-links{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    display: inherit;
    list-style: none;
    padding: 0;
}
.nav-links ul{
    position: absolute;
    width: max-content;
    bottom: 0;
    list-style: none;
    padding: 0;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.5s;
    background: var(--color-bg-A1);
    z-index: 10;
}
.nav-links ul *{
    color: var(--color-txt-A1);
}
.nav-links> li:hover> ul,
.nav-links> li:hover> ul > li:hover > ul{
    opacity: 1;
    pointer-events: all;
}
.nav-links li > ul > li > ul{
    position: absolute;
    width: max-content;
    height: max-content;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}
.nav-links ul li:hover > a{
    color: var(--color-usr-B);
}
.nav-links a{
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    overflow: hidden;
}
.nav-links a::before{
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: calc(100% - 30px);
    height: 2px;
    transform: translateX(-200%);
    background-color: var(--color-txt-B);
    transition: transform 0.5s;
    opacity: 0.8;
}
.nav-links a:hover::before{
    transform: translateX(-50%);
}

.hamburger-menu {
    display: none;
    width: 60px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hamburger-menu.active {
    transform: rotate(45deg);
}
.hamburger-menu [class*="burger-"] {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--color-bg-A1);
    stroke-width:5.5;
    stroke-linecap:round;
}

.hamburger-menu .burger-bun-top {
    stroke-dasharray: 40 160;
}
.hamburger-menu .burger-patty {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
}
.hamburger-menu .burger-bun-bot {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
}
.hamburger-menu.active .burger-bun-top {
    stroke-dashoffset: -64px;
}
.hamburger-menu.active .burger-patty {
    transform: rotate(90deg);
}
.hamburger-menu.active .burger-bun-bot {
    stroke-dashoffset: -64px;
}

.imgtext{
    max-width: 150px;
}

section{
    padding-bottom: var(--globalSectionSpacing);
}
section.no-spaced{
    padding-bottom: 0;
    padding-top: 0;
}
.section-container{
    max-width: var(--globalSectionWidth);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-bg1{
    background-color: var(--color-bg-A1);
}

.gradient-begin{
    background: linear-gradient(180deg, var(--color-bg-A1), transparent 50%);
}
.gradient-end{
    background: linear-gradient(0deg, var(--color-bg-A1), transparent 50%);
}

.section-gradient{
    color: var(--color-txt-B);
    padding-top: calc(var(--globalSectionSpacing) / 2);
    padding-bottom: calc(var(--globalSectionSpacing) / 2);
    padding: 0 40px;
    overflow: hidden;
}
.section-gradient::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    height: 100%;
    background: url('../media/tbar-squares.png') var(--color-usr-B) repeat-y;
    background-size: 100%;
    border-radius: 25px;
}
.section-gradient + section{
    padding-top: calc(var(--globalSectionSpacing));
}

.section-gradient h1,
.section-gradient h2,
.section-gradient h3,
.section-gradient h4,
.section-gradient h5,
.section-gradient h6{
    color: var(--color-txt-B);
}

main::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, var(--hint-of-gradient), var(--color-bg-A1) 50%) no-repeat;
    background-attachment: fixed;
}

.section-eyebrow{
    display: inline-block;
    font-family: "Oswald";
    font-size: var(--h5TextSize);
    color: var(--color-usr-B);
    text-transform: uppercase;
    font-weight: 900;
    background-color: var(--hint-of-gradient);
    padding: 3px 15px;
    border-radius: 50px;
}
.section-eyebrow+h2{
    margin-top: 15px;
}



.div-slider-frames{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
[class*="div-slider"] .slide-left,
[class*="div-slider"] .slide-right{
    cursor: pointer;
}

.div-slider-frames > div{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
}

.div-slider-frames > div.deactive{
    z-index: 4;
    opacity: opacity 0;
    animation: divSliderFramesDeactivate 1s;
}

.div-slider-frames > div.active{
    position: relative;
    z-index: 5;
    pointer-events: all;
    opacity: 1;
    animation: divSliderFramesActivate 1s;
}

@keyframes divSliderFramesDeactivate {
    0%{
        opacity: 1;
        transform: none;
    }
    100%{
        opacity: 1;
        transform: translateX(-100%);
    }
}
@keyframes divSliderFramesActivate {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: none;
    }
}

.div-slider-frames.reversed > div.deactive{
    animation: divSliderFramesDeactivateReversed 1s;
}
.div-slider-frames.reversed > div.active{
    animation: divSliderFramesActivateReversed 1s;
}

@keyframes divSliderFramesDeactivateReversed {
    0%{
        opacity: 1;
        transform: none;
    }
    100%{
        opacity: 1;
        transform: translateX(100%);
    }
}
@keyframes divSliderFramesActivateReversed {
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: none;
    }
}


.div-slider-2 .div-slider-frames > div.deactive{
    z-index: 4;
    opacity: opacity 0;
    animation: divSliderFramesDeactivate2 1s;
}

.div-slider-2 .div-slider-frames > div.active{
    position: relative;
    z-index: 5;
    pointer-events: all;
    opacity: 1;
    animation: divSliderFramesActivate2 1s;
}


.div-slider-2 .div-slider-frames.reversed > div.deactive{
    animation: divSliderFramesDeactivate2 1s;
}
.div-slider-2 .div-slider-frames.reversed > div.active{
    animation: divSliderFramesActivate2 1s;
}

@keyframes divSliderFramesDeactivate2 {
    0%{
        opacity: 1;
        position: relative;
    }
    50%{
        position: relative;
        opacity: 0;
    }
    51%{
        position: absolute;
    }
}
@keyframes divSliderFramesActivate2 {
    0%,50%{
        opacity: 0;
        position: absolute;
    }
    51%{
        position: relative;
    }
    100%{
        opacity: 1;
    }
}



.phone-emulator{
    max-width: 325px;
}
.phone-screen{
    padding: 0 6%;
}
.phone-screen::before{
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../media/phone-emu-body.png');
    background-size: 100%;
    background-repeat: repeat-y;
}
.phone-emulator-btns{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    padding: 0 13%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.phone-emulator-btns *{
    color: var(--color-txt-B);
    opacity: 0.7;
}
.phone-emulator-btns *:hover{
    opacity: 1;
}
.phone-emulator-btns .slide-left{
    margin-right: auto;
    padding: 0 5px;
}
.phone-emulator-btns .slide-right{
    margin-left: auto;
    padding: 0 5px;
}
.phone-emulator img{
    display: block;
}


.stats,
.stats-img{
    display: flex;
}
.stats i{
    font-size: 30px;
    padding-top: 5px;
    color: var(--color-usr-B);
}
.stats-detail{
    padding-left: 10px;
    width: calc(100% - 30px);
}
.stats-detail *{
    margin: 0;
}



.about-media{
    padding: 5%;
    z-index: 1;
}
.about-media::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 100%;
    border-radius: 25px;
    background: var(--color-usr-B);
    z-index: -1;
    transform: scale(0.75) rotate(-10deg);
}
.about-media-stat{
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 1;
    animation:  icoimgpulse 5s infinite;
}
.about-media-stat .stats{
    padding: 15px 30px;
    margin: 30px 0;
    background: var(--color-bg-A2);
    box-shadow: var(--shadow);
    border-radius: 15px;
}
.about-media-photo{
    transform: translateX(-40%);
}
.about-media img{
    display: block;
}

@keyframes icoimgpulse {
    0%{
        transform: none;
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: none;
    }
}

.stats-img{
    flex-direction: column;
    box-shadow: var(--shadow);
    border-radius: 25px;
    height: 100%;
    background-color: var(--color-bg-A2);
}
.stats-img .icoimg{
    display: block;
    width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 10px;
    background-size: contain;
    order: -1;
    box-shadow: 0 5px 17px -10px var(--color-usr-B);
    background: var(--color-usr-B);
    overflow: hidden;
    margin: 30px 40px;
    margin-bottom: 0;
    transform: rotate(10deg);
}
.stats-img .icoimg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background: radial-gradient(var(--color-usr-B), transparent);
    transform: translate(-50%, -40px);
}

.stats-img .icoimg img{
    filter: invert(100%);
    transform: rotate(-10deg);
}
.stats-img .stats-detail{
    padding: 30px 40px;
    width: 100%;
}
.stats-img .stats-detail p{
    margin-top: 20px;
}
.brick-container{
    overflow: hidden;
}
.brick-container > .stats-img:nth-child(odd) .stats-detail{
    order: -1;
    border-radius: 25px;
    margin: 0;
}
.brick-container > div{
    margin-top: 50px;
}
.brick-container > div:first-child{
    margin-top: 0;
}
.sticky{
    position: sticky;
    top: 20vh;
    margin-top: 50px;
    border-radius: 50px;
    margin-bottom: 10vh;
}

.feature-slider-btns{
    display: flex;
    align-items: center;
    font-size: var(--h5TextSize);
    color: var(--color-usr-B);
}
.feature-slider-btns i{
    margin: 0 5px;
    width: calc(var(--h5TextSize) * 2);
    height: calc(var(--h5TextSize) * 2);
    border: 2px solid var(--color-usr-B);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[class*="features-media-"]{
    padding: 20px;
    display: flex;
    z-index: 1;
}
[class*="features-media-"]::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 100%;
    border-radius: 25px;
    background: var(--color-usr-B);
    z-index: -1;
    transform: scale(0.8) rotate(10deg);
}
[class*="features-media-"] img{
    width: 50%;
}
.features-media-left :first-child{
    transform: translateX(25%);
}
.features-media-right :first-child{
    transform: translateX(-25%);
}
.features-media-left :last-child{
    transform: scale(0.8) translateX(-25%);
    z-index: 1;
    height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: auto 0;
}
.features-media-right :last-child{
    transform: scale(0.8) translateX(25%);
    z-index: 1;
    height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: auto 0;
}

.download-media{
    display: flex;
    z-index: 1;
    padding-top: 50%;
    margin: 150px 0;
}
.download-media::before,
.download-media::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    padding-top: 60%;
    border-radius: 40%;
    transform: translate(-50%, -50%);
    animation: blobbefore 5s infinite linear;
    z-index: -1;
    background: radial-gradient(var(--color-bg-B1), transparent);
}
.download-media::after{
    animation: blobafter 20s infinite linear;
}
@keyframes blobbefore {
  0% {
    transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
  }
  50%{
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9) rotate(360deg);
  }
}
@keyframes blobafter {
  0% {
    transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
  }
  50%{
    transform: translate(-50%, -50%) scale(0.9) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2) rotate(-360deg);
  }
}
.download-media > div{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 45%;
}


.pricing-toggle{
    border-radius: 25px;
    font-size: var(--h4TextSize);
    background: var(--color-usr-B);
    padding: 10px 50px;
    display: inline-block;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-txt-B);
}
.pricing-toggle span{
    transition: clip-path 0.5s, transform 0.5s;
}
.pricing-toggle .circle{
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: calc(var(--h4TextSize) * 1.5);
    height: calc(var(--h4TextSize) * 1.5);
    border-radius: 50%;
    background-color: var(--color-bg-A1);
    transform: translate(-250%, -50%);
    z-index: 1;
}
.pricing-toggle .label-monthly{
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.pricing-toggle .label-yearly{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.pricing-table.toggled .pricing-toggle .circle{
    transform: translate(150%, -50%);
}
.pricing-table.toggled  .pricing-toggle .label-yearly{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.pricing-table.toggled  .pricing-toggle .label-monthly{
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.pricing-table .table-monthly,
.pricing-table .table-yearly{
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 1s;
    overflow: hidden;
}
.pricing-table .table-yearly,
.pricing-table.toggled .table-monthly{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pricing-table.toggled .table-yearly{
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.pricing-card{
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pricing-card-price{
    padding: 10px 0;
    font-size: var(--h5TextSize);
    font-weight: bold;
    text-align: center;
    color: var(--color-txt-B);
    background: var(--color-usr-B);
}
.pricing-card-price span{
    font-size: var(--h2TextSize);
}
.pricing-card-detail{
    padding-bottom: 30px;
}
.pricing-card-detail p{
    padding: 18px 30px;
}
.pricing-card-detail p:nth-child(odd){
    background-color: var(--color-bg-A2);
}
.pricing-card-detail hr{
    width: calc(100% - 60px);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}
.pricing-card-detail a{
    width: calc(100% - 60px);
    display: flex;
    margin: auto;
    justify-content: space-between;
    background: var(--color-usr-B);
}
.pricing-card-detail > p{
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.pricing-card-detail > p i{
    color: var(--color-usr-A);
}
.pricing-card-detail > p i.fa-x{
    opacity: 0.5;
}

.flex-between{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.review-card{
    margin: auto;
    margin-top: 30px;
    border-radius: 25px;
    padding: 50px;
    background: var(--color-bg-A2);
    padding-top: calc(var(--h1TextSize) * 1.5);
    box-shadow: var(--shadow);
}

.review-container [class*="col-"] > :first-child{
    margin-top: 0;
}
.review-container [class*="col-"]:last-child{
    display: flex;
}
.review-container [class*="col-"]:last-child > .review-card{
    margin-top: auto;
    margin-bottom: 0;
}

.review-card .fa-quote-left,
.accordion-title .fa-question{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-txt-B);
    font-size: var(--h1TextSize);
    width: calc(var(--h1TextSize) / 1.5);
    height: calc(var(--h1TextSize) / 1.5);
    border-radius: 50%;
    transform: translateY(-20%);
    box-shadow: 0 5px 10px -5px var(--color-usr-B);
    background: var(--color-bg-A1);
    overflow: hidden;
    z-index: 1;
}
.review-card .fa-quote-left::after,
.accordion-title .fa-question::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background: radial-gradient(var(--color-usr-B), transparent);
    transform: translate(-50%, -40px);
    z-index: -1;
}
.review-card .fa-quote-left{
    left: auto;
    right: 0;
}
.review-card img{
    max-width: 150px;
    display: block;
}
.review-card .source{
    display: block;
    font-size: var(--h4TextSize);
    color: var(--color-usr-A);
}
.review-card h3{
    margin: 10px 0;
    color: var(--color-usr-B);
}
.review-card p{
    font-style: italic;
}

.accordion-container > :first-child{
    margin-top: 0;
}

.accordion{
    background-color: var(--color-bg-A2);
    margin: 50px 0;
    border-radius: 50px;
    box-shadow: var(--shadow);
}
.accordion-title{
    padding: 0 30px;
    padding-top: calc(var(--h1TextSize) / 2);
    padding-left: calc(var(--h1TextSize) * 2);
    padding-bottom: calc(var(--h1TextSize) / 2);
    user-select: none;
    cursor: pointer;
    transition: color 0.5s;
}
.accordion-title span{
    font-size: var(--h3TextSize);
}
.accordion-detail{
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
.accordion.active .accordion-title{
    color: var(--color-usr-B);
}
.accordion.active .accordion-detail{
    max-height: 50vh;
    transition: max-height 1s linear;
}
.accordion-detail > :first-child{
    margin-top: 0;
}

.form-news{
    max-width: 400px;
}

input{
    display: block;
    padding: 15px 30px;
    font: inherit;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 50px;
    border: 1px solid gray;
}


.floating-btns{
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: right;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 30px;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 1s, transform 1s;
}
.floating-btns a{
    overflow: unset;
}
.floating-btns.active{
    transform: none;
    opacity: 1;
}
.floating-btns.active a{
    pointer-events: all;
}
.floating-btns .fa-download{
    animation: downloadico 2s infinite;
}
@keyframes downloadico{
    0%, 45%{
        transform: none;
    }
    50%{
        transform: translateY(-5px);
    }
    70%{
        transform: translateY(3px);
    }
    80%{
        transform: translateY(-2px);
    }
    100%{
        transform: none;
    }
}
.floating-btns a{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.floating-btns .scroll-top{
    display: inline-flex;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: calc(var(--h6TextSize) * 3.2);
    height: calc(var(--h6TextSize) * 3.2);
}

.cookie-popup{
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    margin: 10px;
    max-width: 450px;
    background-color: var(--color-bg-A2);
    box-shadow: var(--shadow);
    text-align: center;
    border-radius: 25px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s, transform 0.5s;
}
.cookie-popup.active{
    opacity: 1;
    pointer-events: all;
    transform: none;
}
.cookie-text{
    padding: 0 30px;
}
.cookie-popup svg{
    display: block;
    fill: var(--color-usr-A);
    max-width: 120px;
    height: auto;
    padding: 30px;
    padding-bottom: 0;
    margin: auto;
}
.cookie-btn{
    display: flex;
}
.cookie-btn a{
    width: 50%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--hint-of-gradient);
    color: var(--color-txt-A);
}
.cookie-btn > a:last-child{
    background: var(--color-usr-A);
    color: var(--color-txt-B);
}

footer{
    padding-top: 30vh;
    overflow: hidden;
    background: url('../media/tbar-squares.png') var(--color-usr-B) repeat-y top;
    background-size: cover;
}
footer *{
    color: var(--color-txt-B);
}

footer ul{
    padding: 0;
    list-style: none;
}
footer li a{
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.5s;
}
footer li a:hover{
    color: var(--color-usr-A);
}

footer .svgclip{
    position: absolute;
    top: -1px;
    left: 0;
    fill: var(--color-bg-A1);
    width: 100%;
    height: auto;
}





@media only screen and (max-width: 992px){
    nav{
        justify-content: space-between;
        z-index: 100;
    }
    nav .download{
        display: none;
    }
    .logo-container{
        max-width: 150px;
    }
    header .section-title{
        margin-top: 0;
        margin-bottom: 30%;
    }
    .nav-links{
        display: block;
        position: absolute;
        box-sizing: content-box;
        width: 100%;
        left: 0;
        bottom: 0;
        background-color: var(--color-usr-B);
        transform: translateY(100%);
        padding-bottom: 50px;
        overflow-y: auto;
        max-height: 50vh;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 1s;
    }
    .nav-links.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .hamburger-menu{
        display: block;
    }

    .about-media{
        max-width: 700px;
        margin: auto;
    }

    .sticky{
        padding: 30px 20px;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .text-center-tab{
        text-align: center;
    }

    .download-media{
        max-width: 600px;
        padding-top: 0;
        margin: auto;
    }
    .download-media > div{
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 45%;
        margin: auto;
    }

    .section-gradient{
        padding-top: calc(var(--globalSectionSpacing) / 2);
        padding-bottom: calc(var(--globalSectionSpacing) / 2);
    }

    [class*="features-media-"]{
        max-width: 600px;
        margin: auto;
    }

    
    header,
    footer,
    .section-gradient::before{
        background-size: 150%;
        background-position: center;
    }

}


@media only screen and (max-width: 600px){
    nav{
        padding: 10px 10px;
    }

    header > section{
        margin-top: 0;
    }
    header .section-title{
        margin-bottom: 30px;
    }

    section{
        padding-bottom: calc(var(--globalSectionSpacing) / 2);
    }
    .section-gradient + section{
        padding-top: calc(var(--globalSectionSpacing) / 2);
    }
    .section-gradient{
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-gradient::before{
        width: calc(100% - 30px);
    }
    .section-container{
        padding: 0;
    }
    
    .section-container > .section-eyebrow,
    .section-container > h2,
    .section-container > h3,
    .section-container > h4,
    .section-container > h5,
    .section-container > h6,
    .section-container > p{
        padding: 0 15px;
    }

    .phone-emulator{
        margin: auto;
    }

    
    .feature-slider-btns{
        padding: 10px 0;
        order: -1;
        justify-content: end;
        width: 100%;
    }
    .floating-btns{
        padding: 15px 7px;
    }

    .about-media{
        padding: 0;
    }
    .about-media-stat{
        width: 100%;
        transform: none;
        font-size: 13px;
        padding: 0;
    }
    .about-media-stat > div{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-evenly;
    }
    .about-media-stat .stats{
        margin: 10px 0;
        padding: 10px 20px;
    }
    .about-media-photo{
        padding: 0 20%;
        width: 100%;
        transform: none;
        order: -1;
    }
    
    [class*="btn-"]+[class*="btn-"]{
        margin-top: 10px;
    }
    .brick-container .stats-img:nth-child(odd) .icoimg{
        right: 0;
    }
    .stats-img .stats-detail{
        width: 100%;
        margin: 0;
    }
    .brick-container .stats-img.stats-img:nth-child(odd) .stats-detail > h2{
        padding-right: 50px;
    }
    .brick-container .stats-img.stats-img:nth-child(even) .stats-detail > h2{
        padding-left: 50px;
    }

    
    header,
    footer,
    .section-gradient::before{
        background-size: 300%;
        background-position: center;
    }
}




.template-prev{
    background: var(--color-usr-B);
    padding: 5%;
    color: var(--color-txt-B);
    box-shadow: var(--shadow);
    border-radius: 20px;
}
.template-prev > img{
    border-radius: 10px;
}
.template-prev .flex-between{
    padding-top: 30px;
}
.template-prev .flex-between img{
    width: 150px;
}