.mo-primary-text a {
    color: white;
}

.mo-primary-text-inverted {
    color: black;
}

.mo-secondary-text a {
    color: #BABABA;
}

.mo-highight-text {
    color: #FFC300
}



html {
    color: white;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

body {
    padding-bottom: 50px;
    background: url(../static/img/mo-background-grid.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position-x: center;
    background-position-y: 600px;
    background-color: #191919;
    overflow: auto;
}

main {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: url(../static/img/mo-background-image-gradient.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 0px;
}


.mo-navbar-main {
    width: 1260px;
    border-radius: 46px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(71, 71, 71, 0.2);
    border: 1px solid #363636;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.mo-navbar-logo {
    height: 91px;
    width: 150px;

    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-navbar-links {
    height: 91px;
    width: 91px;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 50px;
}

.mo-navbar-links-item {
    a {
        text-decoration: none;
    }


    a:hover {
        text-decoration: underline;
    }

    &.mo-primary-text {
        color: white;
    }

    .mo-primary-text:hover {
        text-decoration: none;
    }

    &.mo-secondary-text {
        color: #BABABA;
    }
}

.mo-navbar-login {
    height: 91px;
    width: 195px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-navbar-login-mobile {
    display: none;
}

.mo-navbar-login-button {
    height: 51px;
    width: 194px;
    background-color: #FFC300;
    color: black;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 26px;
    cursor: pointer;
}

.mo-navbar-login-button-link {
    text-decoration: none;
    color: black;
}

.mo-navbar-hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    z-index: 101;
}

.mo-navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.mo-navbar-overlay.show {
    display: block;
}

.mobile-link {
    display: none;
}

.desktop-link {
    display: block;
}

@media (max-width: 768px) {

    main {
        padding-top: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: 0px;
        background: none;
    }

    body {
        padding-bottom: 50px;
        background: none;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-position-x: center;
        background-position-y: 600px;
        background-color: #191919;
        overflow: visible;
    }

    .mo-navbar-links {
        position: fixed;
        top: 0;
        left: 0;
        margin-left: -100%;
        z-index: 100;
        background-color: #1E1E1E;
        display: flex;
        flex-direction: column;
        width: 45%;
        height: 100%;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
        gap: 0px;
        align-items: start;
        padding-left: 50px;

        .mo-primary-text a {
            color: #FFC300
        }

        .mo-secondary-text a {
            color: #ffffff
        }
    }

    .mo-navbar-links-item {
        margin-top: 2rem;
        color: #444444;
        text-decoration: none;
        font-weight: bold;
        position: relative;
    }

    .mo-navbar-links.open {
        margin-left: 0;
    }

    .mo-navbar-hamburger {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #ffffff;
    }

    .mo-navbar-login {
        display: none;
    }

    .mo-navbar-main {
        width: 372px;
        border-radius: 46px;
        padding-right: 25px;
        padding-left: 25px;
        background-color: #00000000;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    div.mobile-link {
        display: block;
    }

    div.desktop-link {
        display: none;
    }

    .mo-main-section-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 30px;

    }

    .mo-main-section-1-1 {
        display: flex;
        justify-content: center;
    }

    div.mo-main-section-1-2-mobile {
        display: block;
        font-family: "FoundryMonoline-Bold";
        display: flex;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        padding-top: 20px;
        width: 372px;
    }

    div.mo-main-section-1-2-desktop {
        display: none;

    }

    div.mo-main-section-1-3-mobile {
        display: flex;
        font-size: 15px;
        line-height: 25px;
        text-align: center;
        padding-top: 20px;
        width: 372px;
    }

    div.mo-main-section-1-3-desktop {
        display: none;

    }

    .mo-navbar-login-mobile {
        display: flex;
        height: 91px;
        width: 195px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
    }


    .mo-main-section-1-4 {
        display: flex;
        gap: 20px;
        font-size: 18px;
        line-height: 32px;
        text-align: center;
        padding-top: 30px;
    }

    .mo-main-section-1-4>img {
        cursor: pointer;
    }

    .mo-main-section-1-5 {
        padding-top: 30px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    div.mo-main-section-1-5>iframe {
        border: 2px solid white;
        width: 355px;
        height: 200px;

    }

    .mo-main-section-1-5-button {
        white-space: nowrap;
        text-align: center;
        box-sizing: border-box;
        width: 40px;
        height: 40px;
        border-radius: 24px;
        border: 1px solid #FFC300;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: #FFC300;

    }

    #play-pause-toggle {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    #section-2.mo-main-section-2 {
        display: none;
    }

    #section-3.mo-main-section-3-carousel-images-desktop {
        display: none;
    }

    div.mo-main-section-4-1>img {
        display: none;
        padding-top: 0px;
    }

    div.mo-main-section-4-2-mobile {
        font-family: "FoundryMonoline-Bold";
        display: flex;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        padding-top: 20px;
        justify-content: center;
        width: 372px;
    }

    div.mo-main-section-4-2-desktop {
        display: none;
    }

    div.mo-main-section-4-3-desktop {
        display: none;
    }

    div.mo-main-section-4-3-mobile {
        display: flex;
        font-size: 15px;
        line-height: 25px;
        text-align: center;
        padding-top: 20px;
        justify-content: center;
        width: 372px;

    }

    div.mo-main-section-4-4 {
        display: flex;
        gap: 20px;
        font-size: 18px;
        line-height: 32px;
        text-align: center;
        padding-top: 20px;
        justify-content: center;
    }

    #section-5.mo-main-section-5 {
        display: flex;
        flex-direction: column;
        width: 372px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-behavior: smooth;
    }

    div.mo-main-section-5-1 {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        padding-top: 30px;
        gap: 10px;
        width: 2040px;
        height: 380px;
    }

    div.mo-main-section-5-2 {
        display: none;
    }

    .mo-main-section-5-title {
        font-size: 22px;
        line-height: 27px;
        padding-top: 30px;
    }

    .mo-main-section-5-text {
        font-size: 16px;
        line-height: 32px;
        padding-top: 10px;
    }

    div.mo-main-section-5-single {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 300px;
        width: 850px;
        gap: 10px;
    }

    div.mo-main-section-5-single-half {
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 10px;
        height: 280px;
        width: 372px;
        padding: 45px;
        display: flex;
        flex-direction: column;
    }

    div.mo-main-section-5-double-mobile {
        background-color: #FFA900;
        border-radius: 10px;
        height: 372px;
        width: 310px;
        display: flex;
        overflow: hidden;
        justify-content: center;

    }

    div.mo-main-section-5-double-desktop {
        display: none;
    }

    .mo-main-section-5-double-img {
        margin: 75px 68px;
    }

    div.mo-main-section-6 {
        font-family: "FoundryMonoline-Bold";
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 372px;
        padding-top: 60px;
    }

    div.mo-main-section-6-1 {
        flex: 1 0;
        font-size: 24px;
        line-height: 32px;
    }

    div.mo-main-section-6-2 {
        display: none;
        align-items: flex-end;
        gap: 15px
    }

    .mo-main-section-6-2-button {
        display: none;
    }

    .mo-main-section-6-2-button-left {
        background: url(../static/icons/mo-icon-arrow-left-inactive.svg) no-repeat center;
    }

    .mo-main-section-6-2-button-left:hover {
        background: url(../static/icons/mo-icon-arrow-left-active.svg) #FFA900 no-repeat center;
    }

    .mo-main-section-6-2-button-right {
        background: url(../static/icons/mo-icon-arrow-right-inactive.svg) no-repeat center;
    }

    .mo-main-section-6-2-button-right:hover {
        background: url(../static/icons/mo-icon-arrow-right-active.svg) #FFA900 no-repeat center;
    }


    #section-7.mo-main-section-7 {
        width: 372px;
        display: flex;
        flex-direction: row;
        padding-top: 30px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-behavior: smooth;
    }

    div.mo-main-section-7-1 {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        gap: 30px;
        width: 3000px;
        height: 338px;
    }

    div.mo-main-section-7-quote {
        font-family: "Poppins", sans-serif;
        width: 350px;
        border-right: 1px solid #454545;
        padding-right: 20px;
    }

    div.mo-main-section-7-quote-left {
        padding-right: 30px;
    }

    div.mo-main-section-7-quote-right {
        border-left: 0px;
        padding-right: 20px;
        padding-left: 0px;
        border-left: 0px;
    }

    div.final-quote {
        border-right: 0px;
    }

    div.mo-main-section-7-comment {
        font-size: 20px;
        line-height: 28px;
        height: 75px;
        display: flex;
        align-items: center;
        padding-top: 5px;
    }

    div.mo-main-section-7-subcomment {
        font-size: 15px;
        line-height: 25px;
        height: 90px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    div.mo-main-section-7-name {
        padding-top: 45px;
        font-size: 22px;
        line-height: 31px;
    }

    div.mo-main-section-7-position {
        font-size: 16px;
        line-height: 24px;
        color: #FFC300;
        padding-top: 5px;
    }

    div.mo-swipe-icon {
        display: flex;
        width: 20px;
        height: 20px;
    }



    #section-8.mo-main-section-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 50px;
        width: 372px;
    }

    div.mo-main-section-8-1 {
        font-family: "FoundryMonoline-Bold";
        display: flex;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        padding-top: 20px;
    }

    div.mo-main-section-8-2 {
        display: none;
    }

    .mo-pricing-interval {
        display: flex;
        justify-content: space-evenly;
        align-items: end;
        flex-wrap: nowrap;
        gap: 10px;
        height: 80px;
    }

    div.mo-pricing-interval-text {
        font-size: 16px;
        line-height: 39px;
        text-align: left;
        font-weight: 500;
        color: #DFE1E6;
        ;
        cursor: pointer;
    }

    div.mo-pricing-interval-text-highlight {
        font-weight: 700;
        color: #E8E8E8;
    }

    div.mo-pricing-interval-decoration {
        font-size: 18px;
        line-height: 39px;
        text-align: left;
        font-weight: 600;
        color: #FFA900;
    }

    div.mo-main-section-8-3 {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 30px;
        font-family: "Inter", sans-serif;
    }

    .mo-main-section-8-3-card-month {
        width: 287px;
        height: 565px;
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        padding-left: 50px;
    }

    .mo-main-section-8-3-card-year {
        width: 287px;
        height: 565px;
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 10px;
        display: none;
        flex-direction: column;
        padding-left: 50px;
    }

    div.mo-main-section-8-3-card-highlighted {
        background-image: url(../static/img/mo-background-image-gradient-card-top.svg), url(../static/img/mo-background-image-gradient-card-bottom.svg);
        background-position: center, center;
    }

    .mo-main-section-8-3-card-plan-name {
        font-size: 32px;
        line-height: 39px;
        text-align: left;
        font-weight: 600;
        color: #FFA900;
        padding-top: 38px;
        ;
    }

    .mo-main-section-8-3-card-price {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mo-main-section-8-3-card-price-1 {
        font-size: 40px;
        line-height: 38px;
        font-weight: 300;
    }

    .mo-main-section-8-3-card-price-2 {
        font-size: 40px;
        line-height: 38px;
        padding-top: 20px;
    }

    .mo-main-section-8-3-card-price-2-slim {
        font-weight: 300;
        font-size: 36px;
        color: #BABABA;
    }

    .mo-main-section-8-3-card-price-3 {
        font-size: 24px;
        line-height: 32px;
    }

    .mo-main-section-8-3-card-price-4 {
        font-size: 24px;
        line-height: 32px;
        color: #BABABA;
    }

    .mo-main-section-8-3-card-price-5 {
        font-size: 12px;
        line-height: 42px;
    }

    .mo-main-section-8-3-card-button {
        background-color: #FFC300;
        color: black;
        font-size: 16px;
        width: 240px;
        height: 51px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        cursor: pointer;
    }

    .mo-main-section-8-3-card-button-removed {
        background-color: #1E1E1E;
    }

    .mo-main-section-8-3-card-subtitle {
        color: #BABABA;
        font-size: 16px;
        width: 240px;
        height: 51px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5px;
    }

    .mo-main-section-8-3-card-features {
        display: flex;
        flex-direction: column;
        padding-top: 15px;
    }

    .mo-main-section-8-3-card-feature-item {
        display: flex;
        flex-direction: row;
        padding-bottom: 10px;
        align-items: center;
        gap: 15px;
        color: #BABABA;
        line-height: 35px;
    }

    .mo-main-section-8-4 {
        display: flex;
        gap: 20px;
        font-size: 18px;
        line-height: 32px;
        text-align: center;
        padding-top: 40px;
    }

    .mo-main-section-8-4-button {
        background-color: #1E1E1E;
        border: 1px solid #3f3f3f;
        font-size: 16px;
        height: 51px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        padding: 1px 30px;
        gap: 20px;
    }

    a .mo-main-section-8-4-button {
        color: white;
        text-decoration: none;
    }

    #section-9.mo-main-section-9 {
        display: flex;
        flex-direction: row;
        width: 372px;
        padding-top: 60px;

        background: url(../static/img/mo-section-9.svg);
        background-repeat: no-repeat;
        background-attachment: local;
        background-position-x: 810px;
        background-position-y: bottom;
        background-size: 510px;
    }

    .mo-main-section-9-1 {
        display: flex;
        flex-direction: column;
    }

    .mo-main-section-9-1-1 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 851px;
    }

    div.mo-main-section-9-1-1-2 {
        display: none;
    }

    div.mo-main-section-9-1-1-1-title {
        font-family: "FoundryMonoline-Bold";
        font-size: 24px;
        line-height: 32px;
        ;
    }

    div.mo-main-section-9-1-1-1-subtitle {
        color: #BABABA;
        font-size: 15px;
        line-height: 25px;
        padding-top: 10px;
        width: 290px;
    }

    .mo-main-section-9-1-2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }

    div.mo-main-section-9-1-2-card {
        width: 308px;
        height: 54px;
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 30px;
    }

    .mo-main-section-9-1-2-card>.mo-main-section-9-1-2-card-text {
        display: none;
    }

    .mo-main-section-9-1-2-card .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-up {
        display: none;
        cursor: pointer;
    }

    .mo-main-section-9-1-2-card .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-down {
        display: flex;
        cursor: pointer;
    }

    div.mo-main-section-9-1-2-card-title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }

    div.mo-main-section-9-1-2-card-active {
        height: 148px;
        justify-content: space-around;
        background-image: url(../static/img/mo-background-iamge-gradient-faq.svg);
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
    }

    div.mo-main-section-9-1-2-card-active>.mo-main-section-9-1-2-card-text {
        display: flex;
        font-size: 15px;
        line-height: 25px;
    }

    .mo-main-section-9-1-2-card-active .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-up {
        display: none;
        cursor: pointer;

    }

    .mo-main-section-9-1-2-card-active .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-down {
        display: flex;
        cursor: pointer;
    }






    #section-10.mo-main-section-10 {
        width: 372px;
        flex-direction: column;
        padding: 15px 5px;
    }

    div.mo-main-section-10-1 {
        display: flex;
        flex-direction: column;
        width: 372px;
        height: 533px;
    }

    div.mo-main-section-10-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 372px;
        height: 654px;
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 15px;
    }

    div.mo-main-section-10-2-1 {
        display: flex;
        flex-direction: column;
        width: 372px;
        height: 545px;
        align-items: center;
    }

    .mo-main-section-10-2-1-label {
        font-size: 18px;
        padding-bottom: 15px;
        padding-left: 28px;
        align-self: flex-start;
    }

    .mo-main-section-10-2-1-input {
        padding: 0px 28px 15px 28px;
        width: -webkit-fill-available;
    }

    .mo-main-section-10-2-1-input>input,
    .mo-main-section-10-2-1-input>textarea {
        width: 100%;
        padding: 14px 25px;
        font-size: 16px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #232323;
        background-color: #292929;
        color: white;
        border-radius: 14px;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
    }

    .mo-main-section-10-2-1-input>input::placeholder,
    .mo-main-section-10-2-1-input>textarea::placeholder {
        color: #BABABA;
        font-family: "Inter", sans-serif;
    }

    div.mo-main-section-10-2-1-button {
        height: 51px;
        width: 316px;
        background-color: #FFC300;
        color: black;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 26px;
        cursor: pointer;
    }

    div.mo-main-section-10-1-1 {
        font-family: "FoundryMonoline-Bold";
        font-size: 28px;
        line-height: 32px;
        text-align: left;
        padding-top: 20px;
        width: 372px;
        padding-bottom: 20px;
    }

    .mo-main-section-10-1-2 {
        color: #BABABA;
        font-size: 18px;
        line-height: 32px;
    }

    .mo-main-section-10-1-3 {
        display: flex;
        flex-direction: row;
        gap: 15px;
        color: #BABABA;
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }


    #section-11.mo-main-section-11 {
        width: 372px;
        flex-direction: column;
    }

    a.mo-main-section-11-1 {
        display: none;
    }

    a.mo-main-section-11-2 {
        display: block;
        padding-top: 25px;
        padding-bottom: 70px;
    }

    #section-footer-main.mo-footer-main.mo-footer-top {
        width: 372px;
        flex-direction: column;

    }

    #section-footer-main.mo-footer-main {
        width: 372px;
        flex-direction: column;

    }

    div.mo-footer-top {
        flex-direction: column;
    }

    div.mo-footer-top-1 {
        display: flex;
        width: 244px;
    }

    div.mo-footer-top-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 372px;
        gap: 10px;
    }

    div.mo-footer-top-2-1 {
        padding-top: 25px;
        font-size: 16px;
        text-align: left;
    }

    .mo-footer-top-2-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .mo-footer-top-2-2-input {
        display: flex;
        flex-grow: 1;
        align-items: center;
    }

    .mo-footer-top-2-2-input>input {
        width: 100%;
        padding: 14px 25px;
        font-size: 16px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #232323;
        background-color: #292929;
        color: white;
        border-radius: 26px;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
        height: 61px;
    }

    .mo-footer-top-2-2-input>input::placeholder {
        color: #BABABA;
        font-family: "Inter", sans-serif;
    }

    .mo-footer-top-2-2-button {
        height: 51px;
        width: 88px;
        background-color: #FFC300;
        color: black;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        border-radius: 26px;
        cursor: pointer;
    }

    div.mo-footer-bottom-mobile {
        display: flex;
        flex-wrap: wrap;
        /* Permite que los elementos se acomoden en filas si no caben */
        justify-content: space-between;
    }

    div.mo-footer-bottom-desktop {
        display: none;
    }


    .mo-footer-bottom-1 {
        display: flex;
        flex-direction: column;
        width: 515px;
        padding-top: 20px;
    }

    .mo-footer-bottom-1-1 {
        display: flex;
        flex-direction: row;
        padding-top: 20px;
    }

    .mo-footer-bottom-1-1-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: #1E1E1E;
        border: 1px solid #262626;
        border-radius: 20px;
    }

    .mo-footer-bottom-2 {
        display: flex;
        flex: 1 1 calc(50% - 10px);
        margin: 5px;
        width: 150px;
    }

    .mo-footer-bottom-3 {
        display: flex;
        flex: 1 1 calc(50% - 10px);
        margin: 5px;
        width: 50%;
    }

    .mo-footer-bottom-4 {
        padding-top: 20px;
        display: flex;
        flex: 1 1 100%;
        margin: 5px;
    }

    .mo-footer-bottom-col-header {
        font-size: 14px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        height: 50px;
        justify-content: flex-start;
        align-items: center;
        color: white;
    }


}

.mo-main-section-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.mo-main-section-1-1 {
    display: flex;
    justify-content: center;
}

.mo-main-section-1-2-desktop {
    font-family: "FoundryMonoline-Bold";
    display: flex;
    font-size: 52px;
    line-height: 69px;
    text-align: center;
    padding-top: 20px;
}

.mo-main-section-1-2-mobile {
    display: none;

}

.mo-main-section-1-3-desktop {
    display: flex;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 20px;
}

.mo-main-section-1-3-mobile {
    display: none;

}

.mo-main-section-1-4 {
    display: flex;
    gap: 20px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 30px;
}

.mo-main-section-1-4>img {
    cursor: pointer;
}

.mo-main-section-1-5 {
    padding-top: 30px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.mo-main-section-1-5>iframe {
    border: 2px solid white;
    width: 1132px;
    height: 637px;

}

.mo-main-section-1-5-button {
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 24px;
    border: 1px solid #FFC300;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #FFC300;

}

#play-pause-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mo-swipe-icon {
    display: none;
}

.mo-main-section-2 {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    width: 1260px;
}

.mo-main-section-2-1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.mo-main-section-2-1-1 {
    font-family: "FoundryMonoline-Bold";
    width: 500px;
    font-size: 40px;
    line-height: 62px;
}

.mo-main-section-2-1-2 {

    width: 615px;
    font-size: 18px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.mo-main-section-2-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
    width: 100%;
    overflow: hidden;
}

.mo-main-section-2-2-action-item {
    height: 56px;
    background-color: rgba(71, 71, 71, 0.2);
    border: 1px solid #363636;
    color: white;
    font-size: 16px;
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    padding-left: 10px;
    padding-right: 15px;
    font-weight: 500;
    margin-right: 10px;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mo-main-section-2-2-action-item-active {
    background-color: #FFC300;
    color: black;
}

.mo-main-section-2-2-action-item-left {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mo-main-section-2-2-action-item-right {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#section-3 {
    position: relative;
    overflow: hidden;
    height: 750px;
}

.mo-main-section-3-carousel-images {
    display: flex;
    position: relative;
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.carousel-image {
    flex: 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.carousel-image.active {
    opacity: 1;
    position: relative;
}


.mo-main-section-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.mo-main-section-4-1 {
    display: flex;
    justify-content: center;
}

.mo-main-section-4-2-desktop {
    font-family: "FoundryMonoline-Bold";
    display: flex;
    font-size: 52px;
    line-height: 69px;
    text-align: center;
    padding-top: 20px;
    justify-content: center;
}

.mo-main-section-4-2-mobile {
    display: none;
}

.mo-main-section-4-3-desktop {
    display: flex;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 20px;
    justify-content: center;
}

.mo-main-section-4-3-mobile {
    display: none;
}

.mo-main-section-4-4 {
    display: flex;
    gap: 20px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 10px;
    justify-content: center;
}

.mo-main-section-5 {
    display: flex;
    flex-direction: column;
}

.mo-main-section-5-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    gap: 40px;
}

.mo-main-section-5-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    gap: 40px;
}

.mo-main-section-5-title {
    font-size: 22px;
    line-height: 27px;
    padding-top: 30px;
}

.mo-main-section-5-text {
    font-size: 16px;
    line-height: 32px;
    padding-top: 10px;
}

.mo-main-section-5-single {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 692px;
    width: 420px;
}

.mo-main-section-5-single-half {
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 10px;
    height: 229px;
    width: 320px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.mo-main-section-5-double-desktop {
    background-color: #FFA900;
    border-radius: 10px;
    height: 692px;
    width: 400px;
    display: flex;
}

.mo-main-section-5-double-mobile {
    display: none;
}

.mo-main-section-5-double-img {
    margin: 75px 68px
}

.mo-main-section-6 {
    font-family: "FoundryMonoline-Bold";
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 1320px;
    padding-top: 160px;
}

.mo-main-section-6-1 {
    flex: 1 0;
    font-size: 52px;
    line-height: 69px;
}

.mo-main-section-6-2 {
    display: flex;
    align-items: flex-end;
    gap: 15px
}

.mo-main-section-6-2-button {
    white-space: nowrap;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #FFA900;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mo-main-section-6-2-button-left {
    background: url(../static/icons/mo-icon-arrow-left-inactive.svg) no-repeat center;
}

.mo-main-section-6-2-button-left:hover {
    background: url(../static/icons/mo-icon-arrow-left-active.svg) #FFA900 no-repeat center;
}

.mo-main-section-6-2-button-right {
    background: url(../static/icons/mo-icon-arrow-right-inactive.svg) no-repeat center;
}

.mo-main-section-6-2-button-right:hover {
    background: url(../static/icons/mo-icon-arrow-right-active.svg) #FFA900 no-repeat center;
}

.mo-main-section-7 {
    width: 1320px;
    display: flex;
    flex-direction: row;
    padding-top: 60px;
}

.mo-main-section-7-1 {
    width: 1320px;
    display: flex;
    flex-direction: row;
}

.mo-main-section-7-quote {
    font-family: "Poppins", sans-serif;
}

.mo-main-section-7-quote-left {
    padding-right: 40px;
}

.mo-main-section-7-quote-right {
    padding-left: 40px;
    border-left: 1px solid #454545;
}

.mo-main-section-7-comment {
    font-size: 26px;
    line-height: 36px;
    height: 75px;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.mo-main-section-7-subcomment {
    font-size: 16px;
    line-height: 24px;
    height: 90px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.mo-main-section-7-name {
    font-size: 22px;
    line-height: 31px;
}

.mo-main-section-7-position {
    font-size: 16px;
    line-height: 24px;
    color: #FFC300;
    padding-top: 5px;
}

.mo-section-7-swipe-icon {
    display: none;
}


.mo-main-section-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.mo-main-section-8-1 {
    font-family: "FoundryMonoline-Bold";
    display: flex;
    font-size: 52px;
    line-height: 69px;
    text-align: center;
    padding-top: 20px;
}

.mo-main-section-8-2 {
    display: flex;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 20px;
}

.mo-pricing-interval {
    display: flex;
    justify-content: space-evenly;
    align-items: end;
    flex-wrap: nowrap;
    gap: 10px;
    height: 80px;
}

.mo-pricing-interval-text {
    font-size: 18px;
    line-height: 39px;
    text-align: left;
    font-weight: 500;
    color: #DFE1E6;
    ;
    cursor: pointer;
}

.mo-pricing-interval-text-highlight {
    font-weight: 700;
    color: #E8E8E8;
}

.mo-pricing-interval-decoration {
    font-size: 20px;
    line-height: 39px;
    text-align: left;
    font-weight: 600;
    color: #FFA900;
}

.mo-main-section-8-3 {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding-top: 30px;
    font-family: "Inter", sans-serif;
}

.mo-main-section-8-3-card-month {
    width: 287px;
    height: 596px;
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.mo-main-section-8-3-card-year {
    width: 287px;
    height: 596px;
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    padding-left: 50px;
}

.mo-main-section-8-3-card-highlighted {
    background-image: url(../static/img/mo-background-image-gradient-card-top.svg), url(../static/img/mo-background-image-gradient-card-bottom.svg);
    background-position: center, center;
}

.mo-main-section-8-3-card-plan-name {
    font-size: 32px;
    line-height: 39px;
    text-align: left;
    font-weight: 600;
    color: #FFA900;
    padding-top: 38px;
    ;
}

.mo-main-section-8-3-card-price {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mo-main-section-8-3-card-price-1 {
    font-size: 40px;
    line-height: 38px;
    font-weight: 300;
}

.mo-main-section-8-3-card-price-2 {
    font-size: 40px;
    line-height: 38px;
    padding-top: 20px;
}

.mo-main-section-8-3-card-price-2-slim {
    font-weight: 300;
    font-size: 36px;
    color: #BABABA;
}

.mo-main-section-8-3-card-price-3 {
    font-size: 24px;
    line-height: 32px;
}

.mo-main-section-8-3-card-price-4 {
    font-size: 24px;
    line-height: 32px;
    color: #BABABA;
}

.mo-main-section-8-3-card-price-5 {
    font-size: 12px;
    line-height: 42px;
}

.mo-main-section-8-3-card-button {
    background-color: #FFC300;
    color: black;
    font-size: 16px;
    width: 240px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    cursor: pointer;
}

.mo-main-section-8-3-card-button-removed {
    background-color: #1E1E1E;
}

.mo-main-section-8-3-card-subtitle {
    color: #BABABA;
    font-size: 16px;
    width: 240px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
}

.mo-main-section-8-3-card-features {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}

.mo-main-section-8-3-card-feature-item {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    align-items: center;
    gap: 15px;
    color: #BABABA;
    line-height: 35px;
}

.mo-main-section-8-4 {
    display: flex;
    gap: 20px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    padding-top: 40px;
}

.mo-main-section-8-4-button {
    background-color: #1E1E1E;
    border: 1px solid #3f3f3f;
    font-size: 16px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    padding: 1px 30px;
    gap: 20px;
}

a .mo-main-section-8-4-button {
    color: white;
    text-decoration: none;
}


.mo-main-section-9 {
    display: flex;
    flex-direction: row;
    width: 1320px;
    padding-top: 160px;

    background: url(../static/img/mo-section-9.svg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position-x: 810px;
    background-position-y: bottom;
    background-size: 510px;
}

.mo-main-section-9-1 {
    display: flex;
    flex-direction: column;
}

.mo-main-section-9-1-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 851px;
}

.mo-main-section-9-1-1-1-title {
    font-family: "FoundryMonoline-Bold";
    font-size: 52px;
    line-height: 69px;
    ;
}

.mo-main-section-9-1-1-1-subtitle {
    color: #BABABA;
    font-size: 24px;
    line-height: 30px;
    padding-top: 10px;
}

.mo-main-section-9-1-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.mo-main-section-9-1-2-card {
    width: 811px;
    height: 54px;
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
}

.mo-main-section-9-1-2-card>.mo-main-section-9-1-2-card-text {
    display: none;
}

.mo-main-section-9-1-2-card .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-up {
    display: none;
    cursor: pointer;
}

.mo-main-section-9-1-2-card .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-down {
    display: flex;
    cursor: pointer;
}

.mo-main-section-9-1-2-card-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
}

.mo-main-section-9-1-2-card-active {
    height: 148px;
    justify-content: space-around;
    background-image: url(../static/img/mo-background-iamge-gradient-faq.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
}

.mo-main-section-9-1-2-card-active>.mo-main-section-9-1-2-card-text {
    display: flex;
    font-size: 16px;
    line-height: 32px;
}

.mo-main-section-9-1-2-card-active .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-up {
    display: none;
    cursor: pointer;

}

.mo-main-section-9-1-2-card-active .mo-main-section-9-1-2-card-title-icon>.mo-main-section-9-1-2-card-title-icon-active-down {
    display: flex;
    cursor: pointer;
}


.mo-main-section-10 {
    width: 1320px;
    display: flex;
    flex-direction: row;
    padding-top: 60px;
    justify-content: space-between;
    padding-top: 250px;
}

.mo-main-section-10-1 {
    display: flex;
    flex-direction: column;
    width: 544px;
    height: 533px;
}

.mo-main-section-10-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 648px;
    height: 654px;
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 15px;
}

.mo-main-section-10-2-1 {
    display: flex;
    flex-direction: column;
    width: 548px;
    height: 545px;
}

.mo-main-section-10-2-1-label {
    font-size: 18px;
    padding-bottom: 15px;
}

.mo-main-section-10-2-1-input {
    padding-bottom: 15px;
}

.mo-main-section-10-2-1-input>input,
.mo-main-section-10-2-1-input>textarea {
    width: 100%;
    padding: 14px 25px;
    font-size: 16px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #232323;
    background-color: #292929;
    color: white;
    border-radius: 14px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.mo-main-section-10-2-1-input>input::placeholder,
.mo-main-section-10-2-1-input>textarea::placeholder {
    color: #BABABA;
    font-family: "Inter", sans-serif;
}

.mo-main-section-10-2-1-button {
    height: 51px;
    width: 548px;
    background-color: #FFC300;
    color: black;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    cursor: pointer;
}

.mo-main-section-10-1-1 {
    font-family: "FoundryMonoline-Bold";
    font-size: 52px;
    line-height: 69px;
    text-align: left;
    padding-top: 20px;
    width: 400px;
    padding-bottom: 20px;
}

.mo-main-section-10-1-2 {
    color: #BABABA;
    font-size: 18px;
    line-height: 32px;
}

.mo-main-section-10-1-3 {
    display: flex;
    flex-direction: row;
    gap: 15px;
    color: #BABABA;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mo-main-section-11-1 {
    padding-top: 200px;
    padding-bottom: 150px;
    display: flex;
}

.mo-main-section-11-2 {
    padding-top: 200px;
    padding-bottom: 150px;
    display: none;
}

.mo-main-section-11>img {
    cursor: pointer;
}


.mo-footer-main {
    display: flex;
    flex-direction: column;
    width: 1320px;
    color: #BABABA;
    font-size: 18px;
}

.mo-footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid #232323;
}

.mo-footer-top-1 {
    display: flex;
}

.mo-footer-top-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 460px;
    gap: 10px;
}

.mo-footer-top-2-1 {
    font-size: 18px;
    text-align: right;
}

.mo-footer-top-2-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mo-footer-top-2-2-input {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.mo-footer-top-2-2-input>input {
    width: 100%;
    padding: 14px 25px;
    font-size: 16px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #232323;
    background-color: #292929;
    color: white;
    border-radius: 26px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    height: 61px;
}

.mo-footer-top-2-2-input>input::placeholder {
    color: #BABABA;
    font-family: "Inter", sans-serif;
}

.mo-footer-top-2-2-button {
    height: 51px;
    width: 88px;
    background-color: #FFC300;
    color: black;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 26px;
    cursor: pointer;
}

.mo-footer-bottom-mobile {
    display: none;
}

.mo-footer-bottom-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-top: 40px;
}

.mo-footer-bottom-1 {
    display: flex;
    flex-direction: column;
    width: 515px;
}

.mo-footer-bottom-1-1 {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
}

.mo-footer-bottom-1-1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #1E1E1E;
    border: 1px solid #262626;
    border-radius: 20px;
}

.mo-footer-bottom-2 {
    display: flex;
    flex-direction: column;
}

.mo-footer-bottom-3 {
    display: flex;
    flex-direction: column;
}

.mo-footer-bottom-4 {
    display: flex;
    flex-direction: column;
}

.mo-footer-bottom-col-header {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 50px;
    justify-content: flex-start;
    align-items: center;
    color: white;
}

.mo-footer-bottom-anchor {
    padding-top: 20px;

    a {
        color: #BABABA;
        text-decoration: none;
    }

    a:hover {
        color: white;
        text-decoration: underline;
        cursor: pointer;
    }
}