* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #3e3e3e;
}

/* ----------------------------------------
   HOST CARD ANIMATIONS
---------------------------------------- */


.host-card.animate{
    opacity: 0;
    transform: translateY(var(--startPosition, 60px));
}

.host-card.animate.visible{
    animation: opacityDownTranslate 500ms forwards;
    animation-delay: var(--delay, 0s);
}


/* ----------------------------------------
   BUTTON & LINK ANIMATIONS
---------------------------------------- */

.button-wrapper.animate {
    opacity: 0;
    transform: translateY(12px);
}

/* When wrapper becomes visible */
.button-wrapper.animate.visible {
    animation: buttonFadeIn 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.button-wrapper.animate a {
    opacity: 0;
}

.button-wrapper.animate.visible a {
    opacity: 1;
    transition: opacity 0.4s ease-out;
    transition: transform 0.35s ease-out;
}

/* Button fade-in animation */
@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------
   KEYFRAMES
---------------------------------------- */

/* Fade in word with upward translation */
@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: var(--targetOpacity);
        transform: translateY(0);
    }
}

/* Header video scaling and fading */
@keyframes scaleDownFade {
    0% {
        opacity: 0;
        margin-top: 270px;
        padding: 150px 120px 100px 120px;
    }

    30% {
        opacity: 0.3;
        margin-top: 70px;
        padding: 150px 120px 100px 120px;
    }

    100% {
        opacity: 1;
        margin-top: 70px;
        padding: 8px;
    }
}

/* Rightward movement and return (e.g. for SVG icons) */
@keyframes rightAndBack {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Scale up animation (e.g. image) */
@keyframes scaleUp {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

/* Simple fade-in */
@keyframes opacityAnim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Fade + translate from top */
@keyframes opacityDownTranslate {
    0% {
        opacity: 0;
        transform: translateY(var(--startPosition, -150px));
    }

    100% {
        opacity: 1;
        transform: translateY(var(--endPosition, 0px));
    }
}

/* Fade + translate from left */
@keyframes opacityLeftTranslate {
    0% {
        opacity: 0;
        transform: translateX(var(--startPosition, 150px));
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Fade + translate + scale with padding (platform image) */
@keyframes opacityLeftTranslatePadding {
    0% {
        opacity: 0;
        transform: translateX(250px) scale(1);
        padding: 0;
    }

    70% {
        opacity: 1;
        transform: translateX(-50px) scale(1.05);
        padding: 0;
    }

    100% {
        opacity: 1;
        transform: translateX(-50px) scale(1);
        padding: 8px;
    }
}

.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: #169ff2;
    border-radius: 8px;
    box-sizing: border-box;
    align-self: stretch;
    margin: 12px 0;
    text-decoration: none;
    color: #ffffff;
    padding: 0 24px;
    font-weight: 600;
    align-self: center;
    border: 1px solid #fff;
    transition: background 0.25s, color 0.25s, opacity 1s,
        transform 0.35s ease-out;
}

.button.outline {
    color: #169ff2;
    border-color: #169ff2;
    background-color: transparent;
}

.button.outline:hover {
    background-color: #169ff2;
    color: #ffffff;
}




.one-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 0 0px 0;
}

.one-place .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 0 32px;
    margin-top: 100px;
}

.one-place .inner .heading-subtext{
    margin-bottom: 50px;
}


.one-place .host-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.one-place .host-card {
    max-width: 650px;
    border: 2px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one-place .host-card .host-card-content {
    display: flex;
    gap: 34px;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.one-place .host-card .host-card-content img {
    height: auto;
    display: block;
}

.one-place .host-card .host-card-content .host-card-content-text {
    max-width: 255;
    display: flex;
    align-self: center;
}

.one-place .host-card .host-card-content .host-card-content-text h3 {
    font-size: 21px;
    font-weight: 600;
}

.one-place .host-card .host-card-content .host-card-content-text h4 {
    font-size: 15px;
    font-weight: 400;
}

.one-place .host-card .host-card-content .host-card-content-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.one-place h3 {
    font-size: 15px;
    font-weight: 600;
}



.gradient-heading {
    background: linear-gradient(90deg, #169ff2 0%, #5c0dce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    font-weight: 600;
    align-self: center;
    text-align: center;
}

.heading-subtext{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-heading {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
    margin: 0;
    font-family: "Open Sans";
    font-weight: bold;
    line-height: 40px;
    max-width: 740px;
    word-wrap: break-word;
    align-self: center;
    text-align: center;
    padding: 0 clamp(16px, 5vw, 64px);
}

.section-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #3e3e3e;
    max-width: 657px;
    text-align: center;
    margin: 0 auto;
    align-self: center;
    padding: 0 10px;
    font-weight: 400;
}


.nutshell{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nutshell .inner {
    width: 90%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    background-image: url("/assets/images/video-background.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    margin: 50px auto 0;
    padding: 32px 5vw;
    flex-wrap: wrap;
    padding-bottom: 100px;
    margin-top: 100px;
}

.nutshell .inner h3 {
    margin-top: 20px;
}



.nutshell .yt-container {
    display: flex;
    background-color: #861ffc;
    position: relative;
    height: 0;
    padding-top: 51.25%;
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 40px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    margin-top: 60px;
}

.nutshell iframe.yt {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    height: 100%;
    width: 100%
}


.nutshell .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0px 0 0 0;
    margin-top: 25px;
  

    .button {
        border: none;
        transform: scale(1);
        transition: transform 0.35s ease-out;
        width: 240px;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        width: 232px;
        height: 55px;
        color: #ffffff;

        &:hover {
            transform: scale(1.08);
        }

        &.outline {
            background: #ffffff;
            color: #3e3e3e;
            border: 1px solid transparent;
        }
    }
}

.section-subtitle{
    margin-bottom: 0;
}

.section-description{
    align-self: center;
    text-align: center;
}



.swiper-pagination-bullet {
    background: none;
    opacity: 1;
    border: 1px solid #169ff2;
}

.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.swiper-pagination-bullet-active {
    background-color: #169ff2;
}

.trusted {
    position: relative;
    width: 100%;
    padding: 32px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(134.71deg,
            rgba(0, 176, 255, 0.977355) -0.5%,
            #861ffc 76.33%,
            #861ffc 98.45%);
}

.trusted h3 {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #ffffff;
}

.create .inner .content     h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 29px;
        line-height: 39px;
        text-align: center;
        color: #3E3E3E;
        max-width: 556px;
    }
.create .inner .content span{
        
    font-weight: 600;
        
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-rewind {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.logos {
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 0 !important;
}

.logos::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos .logo-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: 25s slide infinite linear;
}

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

.logos .logo-slide img {
    height: 80px;
    margin: 0 50px;
}

.logos .logo-slide #low-logos {
    height: 40px;
}









.pluxmarket {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.pluxmarket .inner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}



.pluxmarket .pluxins {
    position: relative;
    width: 100%;
    padding: 32px 0 4px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 56px;
    margin: 0;
    padding-bottom: 25px;
}

.pluxmarket .pluxins::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    transform: rotate(180deg);
    z-index: 5;
}

.pluxmarket .pluxins::after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 5;
}

.pluxmarket .pluxins .row {
    align-items: center;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    position: relative;
}

.pluxmarket .pluxins .row::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.pluxmarket .pluxins .row .pluxin-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: 60s slide infinite linear;
}

.pluxmarket .pluxins .row .pluxin-slide.rewind {
    animation: 60s slide-rewind infinite linear;
}

.pluxins a.pluxin {
    width: 108px;
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 96px;
    margin: 0 32px;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease-in-out;
}

.pluxmarket a.pluxin:hover {
    transform: scale(1.2);
}

.pluxmarket .pluxins a.pluxin img {
    max-width: 72px;
    max-height: 72px;
}

.pluxmarket .pluxins .row:hover .pluxin-slide {
    animation-play-state: paused;
}

.pluxmarket .button-white:hover{
    transform: scale(1.08);
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
}

.contact>div {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin-top: 100px;
}

.contact>div .left {
    flex: 0 0 50%;
}

.contact .left h2 {
    position: relative;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    margin: 100px 0 60px 0;
    box-sizing: border-box;
    padding: 0;
}

.contact h2 b,
.contact p b {
    font-weight: 700;
}

.contact h2 b {
    display: block;
}

.contact .left h2:after {
    content: " ";
    position: absolute;
    width: 32px;
    height: 4px;
    left: 0;
    bottom: -20px;
    background: #169ff2;
    border-radius: 2px;
}

.contact p {
    padding: 0 28px 0 0;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    box-sizing: border-box;
}

.contact .card {
    background: #ffffff;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    margin: 40px 0 0 28px;
    box-sizing: border-box;
    padding: 44px 60px;
    position: relative;
}

.contact .card .sent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    display: none;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 44px;
    border-radius: 8px;
}

.contact .card .sent.show {
    display: flex;
}

.contact .card .sent .button {
    width: 320px;
}

.contact .card .sent h2 {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
}

.contact .card .sent h2:first-child {
    margin-top: 56px;
}

.contact .card .sent p {
    padding: 0;
    text-align: center;
    max-width: 320px;
}

.contact .card .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-decoration: none;
    height: 48px;
    background: linear-gradient(134.71deg,
            rgba(0, 176, 255, 0.977355) -0.5%,
            #861ffc 76.33%,
            #861ffc 98.45%);
    border-radius: 8px;
    border: none;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
}

.contact .card form {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact .card form .element {
    position: relative;
    align-self: stretch;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #169ff2;
    margin-bottom: 32px;
}

.contact .card form input[type="text"],
.contact .card form textarea {
    font-family: "Open Sans";
    font-size: 17px;
    position: absolute;
    content: "";
    background-color: #fff;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    padding: 0 12px;
    outline: none;
}

.contact .card form .element.text {
    height: 96px;
}

.contact .card form textarea {
    resize: none;
    padding: 8px 12px;
}

.contact .card form input[type="text"]::placeholder,
.contact .card form textarea::placeholder {
    color: rgba(107, 107, 107, 0.45);
    font-family: "Open sans";
}

.contact .card form .terms {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 32px;
}

.contact .card form .terms .checkbox {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 4px 0 0 0;
}

.contact .card form .terms .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 16px;
    width: 16px;
    left: -3px;
    top: -2px;
    z-index: 1;
}

.contact .card form .terms .checkbox input~.checkmark {
    border-radius: 4px;
    background-color: #169ff2;
}

.contact .card form .terms .checkbox input:checked~.checkmark::before {
    display: none;
}

.quote-wrapper {
    margin-bottom: 100px;
}

.checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    overflow: hidden;
}

.contact .card form .terms .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid transparent;
    transition: background-color 0.25s ease;
    border: 1px solid #169ff2;
}

.contact .card form .terms .checkmark::before {
    position: absolute;
    content: " ";
    background: #fff;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 4px;
}

.contact .card form .terms p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 8.5px;
    line-height: 12px;
    padding: 0 0 0 6px;
    margin: 0;
}

.contact .card form .terms p>a {
    font-family: "Open Sans";
    font-style: normal;
    font-size: 8.5px;
    line-height: 12px;
    text-decoration-line: underline;
    color: #169ff2;
}

.contact .card form input[type="submit"] {
    align-self: stretch;
    height: 48px;
    background: linear-gradient(134.71deg,
            rgba(0, 176, 255, 0.977355) -0.5%,
            #861ffc 76.33%,
            #861ffc 98.45%);
    border-radius: 8px;
    border: none;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}

.create .inner {
    background: url(/assets/solutions/try-for-free-bg.png);
    background-size: cover;
    height: 528px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




.create .inner .buttons{
    display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
}

.create .button {
    display: inline-flex;
  align-self: center;
  width: 240px;
  height: 55px;
  border: none;
  
}

.create .link{
    text-decoration: none;
    color: white;
    font-size: 18px;
}


button:hover{
    transform: scale(1.08);
}





.footer::before {
    top: -96px !important;
}

@media only screen and (max-width: 1248px) {


    .quotes {
        padding: 0 24px;
        box-sizing: border-box;
    }

    .get-inspired .swiper-platform-container {
        width: 70%;
    }

    .features .inner .content {
        
        width: 100%;
        padding: 0 24px;
        
        .left {
            flex: 0 0 40%;
            .bottom-navigation {
                padding: 0 !important;
            }
        }

        .right  {
            top: 175px;
            .video-container {
                height: auto;
            }
        }
    }

    .get-inspired .swiper-platform-container {

        i.swiper-button-next,
        i.swiper-button-prev {
            width: 48px;
            height: 48px;

            &::after,
            &::before {
                top: 3px;
                right: 3px;
                bottom: 3px;
                left: 3px;
            }

            >img {
                width: 15px;
            }
        }
    }
}


@media only screen and (max-width: 1040px) {
  

    .create, .create .inner{
        height: 372px;
    }

    .header .inner,
    .open-system .inner,
    .pluxmarket .inner,
    .contact>div {
        padding: 0 32px 0 32px;
    }


        .header .inner {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

    .ingredient .inner,
    .think .inner {
        padding: 0 32px;
    }

    .ingredient .cards .card {
        flex: 0 1 33%;
    }

    .think video,
    .ingredient video {
        width: 90%;
        height: auto;
    }

    

    .one-place .host-card {
        width: 100%;
        
    }

    .one-place .host-card-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .one-place .host-card-content img {
        object-fit: contain;
    }

    .create .inner .content         h1 {
            
                font-size: 20px;
                line-height: 27px;
            }
    
 
}

@media only screen and (max-width: 732px) {


      .header {
        height: auto;

        .inner {
            align-items: flex-start;
            padding: 0 24px;

            h1 {
                margin-top: 80px;
                font-family: 'Open Sans';
                font-style: normal;
                font-weight: 700;
                font-size: 30px;
                line-height: 120%;
                color: #FFFFFF;
                text-align: left;
            } 

            h2 {
                font-family: 'Open Sans';
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 27px;
                color: rgba(255, 255, 255, 0.71);
                text-align: left;
                max-width: 345px;
                align-self: flex-start;
            }

            .buttons {
                flex-direction: column;
                gap: 0;
                margin-bottom: 60px;
                padding: 0;

                .button {
                    margin: 4px 0;
                }
            }
        }
    }

    .one-place .inner {
        margin-top: 60px;

       
    }
 
 

    .offer .inner {
        padding: 0 24px;
        
        .text {
            margin-top: 60px;
            justify-content: flex-start;
            
            h1{
                align-self: flex-start;
                text-align: left;
                padding: 12px 0;
            }

            h2,
            h3,p {
                align-self: flex-start;
                text-align: left;
            }
        }
        
        .values {
            margin-top: 60px;
            gap: 48px;
            flex-wrap: wrap;

            h1 {
                max-width: unset;
                font-family: 'Open Sans';
                font-style: normal;
                font-weight: 600;
                font-size: 21px;
                line-height: 29px;
                color: #3E3E3E;
            }

            h2 { 
                max-width: unset;
                font-size: 18px;
                line-height: 1.6;
                color: #3e3e3e;
                margin: 0 auto;
                font-weight: 400;
            }
        }
    }


    .quotes {
        margin-top: 60px !important;
        position: relative;

        &::before {
            content: ' ';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 3%, #DFEBFF 32.21%, #DFEBFF 60.58%, rgba(255, 255, 255, 0) 100%);
        }
        .statisticsContainer {
            margin: 45px 0 0 0 !important;
            padding: 0 24px 24px 24px;
            margin-bottom: 24px;

            .statistic {
                margin: 0;

            }
        }
    }



    .pluxmarket {
        padding: 0 24px;
        .inner {
            h1 {
                padding: 0;
            }
        }

        .pluxins {
            padding: 0 0 4px 0;
            gap: 40px;
        }    
    }

   

    .section-heading {
        font-size: 30px;
    }

    .host-options {
        flex-direction: column;
    }

    .host-card-content {
        flex-direction: column-reverse;
    }

    .header .inner {
        flex-direction: column;
        margin: 0;
    }

    .header .left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header .left h1 {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 700;
        font-size: 35px;
        line-height: 48px;
        text-align: center;
        color: #ffffff;
    }

  

    .one-place .host-options {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .one-place .host-card {
        width: 90%;
        max-width: 420px;
    }

    .one-place .host-card-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .one-place .host-card-content img {
        width: 100%;
        height: auto;
        align-self: center;
    }

    .one-place .host-card-content-text h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .one-place .host-card-content-text h4 {
        font-size: 16px;
        line-height: 1.4;
    }



    .nutshell .yt-container {
        padding-top: 56.25%;
        margin-top: 0;
    }

    .nutshell {
        padding-left: 24px;
        padding-right: 24px;
        
        .inner {
            width: 100%;
            padding-bottom: 24px;
        }
    }

    .section-subtext {
        padding: 0;
    }

    .nutshell .buttons {
        gap: 10px;
        width: 100%;
        margin-top: 0;
    }

    .nutshell .buttons .button {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        text-align: center;
        height: 40px;
        width: auto;
        padding-left: 28px;
        padding-right: 28px;
        margin: 32px 0;
        flex: 1 1 auto;
    }

    .nutshell .yt-container {
        padding: 56.25% 0 0 0;
        width: 100%;
    }

    .features {
        margin-top: 60px;
        padding: 0 24px;
        position: relative;

        .section-subtext {
            margin-top: 24px;
        }
    
        .mobile-layout {
            p {
                margin-bottom: 16px !important;
            }

            .card {

                padding: 0;
                .mobile-video-container {
                    margin: 20px 0 0 0;
                    border-radius: 4px;
                    padding: 0;
                    width: 100%;
                    height: auto;
                    padding: 4px;
                    background: linear-gradient(180deg, rgba(62, 62, 62, 0.015) 0%, rgba(143, 143, 143, 0.135) 100%);

                    video {
                        height: auto;
                        border-radius: 3px;
                    }
                }
            }
        }
    }

    .ingredient h2 {
        position: relative;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 34px;
        margin: 40px 0 40px 0;
        box-sizing: border-box;
        padding: 0 48px 16px 48px;
        margin-bottom: 60px;
        opacity: 1;
    }

    .ingredient .cards,
    .think .cards {
        flex-direction: column;
        width: 100%;
    }

    .ingredient,
    .think {
        padding: 0 32px;
    }

    .ingredient .inner,
    .think .inner {
        padding: 0;
    }

    .ingredient video,
    .think video {
        width: 100%;
        border-radius: 4px;
    }

    .think h2 {
        position: relative;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 34px;
        margin: 80px 0 40px 0;
        box-sizing: border-box;
        padding: 0 24px 16px 24px;
        margin-bottom: 60px;
        opacity: 1;
    }

    .ingredient .cards .card,
    .think .cards .card {
        flex: 1 1 auto;
    }

    .ingredient .cards .card p,
    .think .cards .card p {
        display: none;
    }

    .ingredient .cards .card.active p,
    .think .cards .card.active p {
        display: block;
    }

    .single-source h2 {
        position: relative;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 34px;
        margin: 80px 0 40px 0;
        box-sizing: border-box;
        padding: 0 24px 16px 24px;
        margin-bottom: 60px;
        opacity: 1;
    }

    .single-source .card {
        flex: 1 1 auto;
    }

    .get-inspired h2 {
        position: relative;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 34px;
        margin: 80px 0 20px 0;
        box-sizing: border-box;
        padding: 0 32px 16px 32px;
        margin-bottom: 0;
        opacity: 1;
    }

    .get-inspired p {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 23px;
        text-align: center;
        color: #3e3e3e;
        padding: 0 32px 0 32px;
    }

    .get-inspired .inner {
        padding: 0 32px 60px 32px;
    }

    .get-inspired .inner .swiper-platform-container {
        padding: 0 0 2em 0;
        overflow: hidden;
        width: 90%;
    }

    .get-inspired .inner .swiper-platform-container .swiper-button-next,
    .get-inspired .inner .swiper-platform-container .swiper-button-prev {
        display: none;
        visibility: hidden;
    }

    .get-inspired .inner .swiper-platform-container a.cover {
        height: 100%;
        width: 100%;
        max-height: max-content;
    }

    .get-inspired .inner .swiper-platform-container a.cover .thumbnail {
        height: 100%;
        max-height: fit-content;
    }

    .get-inspired .inner .swiper-platform-container a.cover .thumbnail>img {
        object-fit: cover;
    }

    .get-inspired .button {
        margin: 24px 0 72px 0;
    }

    .trusted {
        margin-top: 0 !important;
        padding: 0 0 28px 0;

        .logos {
            margin: 0;
        }
    }

    .logos {
        padding: 0;
        margin-top: 0;
    }

    .logos .logo-slide img {
        height: 40px;
        margin: 0 10px;
    }

    .logos .logo-slide #low-logos {
        height: 20px;
    }

    .pluxmarket .button {
        margin: 24px 0;
    }

   

    .pluxmarket .pluxins::before,
    .pluxmarket .pluxins::after {
        width: 120px;
        bottom: 72px;
    }

    .news-wrapper {
        h2 {
            padding: 0 24px;
        }
    }

   
    .contact {
        padding: 0;
    }

    .contact>div {
        padding: 0;
        margin-top: 0;
        flex-direction: column;
    }

    .contact>div .left {
        flex: 0 0 auto;
    }

    .contact .left h2 {
        position: relative;
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 34px;
        margin: 80px 0 40px 0;
        box-sizing: border-box;
        padding: 0 24px 16px 24px;
        opacity: 1;
    }

    .contact .left h2:after {
        left: 26px;
        bottom: 0;
    }

    .contact .left>p {
        padding: 0 28px;
    }

    .contact .card {
        margin: 40px 28px 0 28px;
        padding: 36px 24px;
    }

    .contact .card .sent {
        padding: 32px;
    }

    .contact .card .sent h2:first-child {
        margin-top: 24px;
    }

    .contact .card .sent .button {
        flex: 0 0 auto;
        width: 200px;
        margin-top: 32px;
    }

    .footer .inner>svg {
        margin: 60px 0 0 28px !important;
    }

        .text-animation {
            display: block;
            max-width: 345px !important;
            width: 100%;
        }
}