.main {
    width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main {
        width: auto;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .main {
        width: auto;
        margin: 0 auto;
    }
}

#loading {
    position: fixed;
    z-index: 99999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #061f20;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading img {
    max-width: 152px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 1280px;
    position: relative;
    z-index: 9;
    margin: 0 auto;
}

.header__nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__nav ul li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding: 8px;
}

.header__nav ul li a {
    color: #fffdf7;
    opacity: 0.8;
    text-decoration: none;
    cursor: pointer;
}

.header__nav ul li a:hover {
    color: #fffcf6;
    opacity: 1;
}

.header__buttons {
    width: 232px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__buttons a {
    color: #fffdf7;
    opacity: 0.8;
    text-decoration: none;
}

.header__buttons a:hover {
    color: #fffcf6;
    opacity: 1;
}

.header__menu-icon {
    display: none;
}

.header .menu-close-icon {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header {
        width: 100%;
        z-index: 9999999;
    }

    .header .__logo {
        z-index: 2;
    }

    .header__nav,
    .header__buttons {
        display: none;
    }

    .header__menu-icon {
        display: flex;
    }

    .header__menu-icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .header {
        width: 100%;
        height: 60px;
        z-index: 9999999;
    }

    .header .__logo {
        z-index: 2;
    }

    .header__nav,
    .header__buttons {
        display: none;
    }

    .header__menu-icon {
        display: flex;
    }

    .header__menu-icon img {
        width: 32px;
        height: 32px;
    }
}

.footer {
    background-color: #061f20;
    height: 426px;
    padding: 64px;
    margin-top: 64px;
}

.footer__content {
    width: 1280px;
    margin: 0 auto;
}

.footer__content-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 64px;
}

.footer__content-top__logo {
    width: 320px;
    min-width: 320px;
    padding-right: 64px;
}

.footer__content-top__logo img {
    margin-bottom: 32px;
}

.footer__content-top__logo-text {
    color: #fffdf7;
    line-height: 24px;
}

.footer__content-top__menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.footer__content-top__menu-list {
    padding-right: 32px;
    width: 200px;
}

.footer__content-top__menu-list h6 {
    color: #fffdf7;
}

.footer__content-top__menu-list ul {
    padding-top: 16px;
}

.footer__content-top__menu-list ul li {
    padding: 12px 0;
}

.footer__content-top__menu-list ul li a {
    color: #fffdf7;
    opacity: 0.8;
}

.footer__content-top__menu-list ul li a:hover {
    color: #fffdf7;
    opacity: 1;
}

.footer__content-bottom {
    height: 56px;
    border-top: 1px solid rgba(255, 253, 247, 0.21);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__content-bottom-text {
    color: #fffdf7;
    opacity: 0.8;
}

.footer__content-bottom-social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 24px;
}

.footer__content-bottom-social a svg {
    opacity: 0.8;
}

.footer__content-bottom-social a:hover svg {
    fill: #fff6df;
    opacity: 1;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        height: 476px;
    }

    .footer__content {
        width: 100%;
        margin: 0 auto;
    }

    .footer__content-top__logo {
        width: 298px;
    }

    .footer__content-top__logo-text {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .footer__content-top__menu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .footer__content-top__menu-list {
        width: auto;
    }

    .footer__content-top__menu-list h6 {
        font-size: 1.5rem;
    }

    .footer__content-top__menu-list ul li {
        min-width: 100px;
    }

    .footer__content-top__menu-list ul li a {
        font-size: 1.3rem;
    }

    .footer__content-bottom-text {
        font-size: 1.5rem;
    }

    .footer__content-bottom-social a svg {
        opacity: 0.8;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767px) {
    .footer {
        height: auto;
        padding: 48px 16px;
    }

    .footer__content {
        width: 100%;
        margin: 0 auto;
    }

    .footer__content-top {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    .footer__content-top__logo {
        width: 100%;
    }

    .footer__content-top__logo-text {
        width: 100%;
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .footer__content-top__menu {
        margin-top: 32px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer__content-top__menu-list {
        width: auto;
    }

    .footer__content-top__menu-list h6 {
        font-size: 1.2rem;
    }

    .footer__content-top__menu-list ul li a {
        font-size: 1rem;
    }

    .footer__content-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer__content-bottom-text {
        font-size: 1rem;
    }

    .footer__content-bottom-social a svg {
        opacity: 0.8;
        width: 24px;
        height: 24px;
    }
}

.sign-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.sign-container .sign-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sign-container .sign-form_left {
    width: 540px;
    height: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-container .sign-form_left-content {
    width: 360px;
    height: 650px;
    display: flex;
    flex-direction: column;
}

.sign-container .sign-form_left-content_logo {
    padding-bottom: 42px;
}

.sign-container .sign-form_left-content_form {
    display: flex;
    flex-direction: column;
}

.sign-container .sign-form_left-content_form-title {
    padding-bottom: 32px !important;
}

.sign-container .sign-form_left-content_form-title h1 {
    font-size: 30px !important;
    font-weight: bold;
    color: #101828;
    margin: 10px 0 !important;
}

.sign-container .sign-form_left-content_form-title p {
    color: #384250;
    font-size: 16px;
    font-weight: normal;
}

.sign-container .sign-form_left-content_signlink {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-top: 32px;
}

.sign-container .sign-form_left-content_signlink span {
    font-size: 14px;
    font-weight: 200;
    color: #667085;
}

.sign-container .sign-form_left-content_signlink a {
    color: #006f72;
}

.sign-container .sign-form_right {
    width: 540px;
    height: 720px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .sign-container .sign-form_left {
        width: 540px;
        height: 820px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sign-container .sign-form_left-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sign-container .sign-form_left-content_form-title {
        padding-bottom: 32px !important;
    }

    .sign-container .sign-form_left-content_form-title h1 {
        font-size: 30px !important;
        margin: 10px 0 !important;
    }

    .sign-container .sign-form_left-content_form-title p {
        font-size: 1.5rem;
    }

    .sign-container .sign-form_left-content_signlink span {
        font-size: 1.3rem;
    }

    .sign-container .sign-form_left-content_signlink a {
        font-size: 1.3rem;
    }

    .sign-container .sign-form_right {
        display: none;
    }
}

@media (max-width: 767px) {
    .sign-container .sign-form_left {
        width: 100%;
        height: 690px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sign-container .sign-form_left-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
    }

    .sign-container .sign-form_left-content_form-title {
        padding-bottom: 32px !important;
    }

    .sign-container .sign-form_left-content_form-title h1 {
        font-size: 30px !important;
        margin: 10px 0 !important;
    }

    .sign-container .sign-form_left-content_form-title p {
        font-size: 1.5rem;
    }

    .sign-container .sign-form_left-content_signlink span {
        font-size: 1.3rem;
    }

    .sign-container .sign-form_left-content_signlink a {
        font-size: 1.3rem;
    }

    .sign-container .sign-form_right {
        display: none;
    }
}

.hero-pages {
    height: 759px;
    background-image: url("../img/features/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-pages_text {
    width: 1280px;
    height: 196px;
    margin: 64px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-pages_text h1 {
    width: 768px;
    color: #fffdf7;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.hero-pages_text p {
    width: 768px;
    color: #fffdf7;
    opacity: 0.8;
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
}

.hero-pages_features {
    width: 772px;
    height: 208px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-pages_features__icons-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 36px;
}

.hero-pages_about {
    display: flex;
    justify-content: center;
    height: 527px;
    clear: both;
    padding-bottom: 96px;
}

.hero-pages_contact {
    margin-top: 192px;
    background-image: url("../img/contact/hero-background.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-pages_faq {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 262px;
    margin-top: 96px;
}

.hero-pages_faq-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-pages_faq-title_top {
    display: block;
    width: 100%;
    color: #fffdf7;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}

.hero-pages_faq-title_bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: center;
}

.hero-pages_faq-title_bottom span {
    display: block;
    color: #fffdf7;
    font-size: 48px;
    font-weight: 600;
}

.hero-pages_faq-title_bottom span img {
    margin-top: -11px;
    padding: 0 20px;
}

.hero-pages_faq p {
    margin-top: 32px;
}

.hero-pages_faq-search {
    padding-top: 40px;
}

.hero-pages .mobile_menu {
    display: none;
}

.hero-pages-faq {
    height: 534px !important;
    background-image: url("../img/features/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@keyframes featuresHeroAnimationOne {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(430px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes featuresHeroAnimationTwo {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-430px);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-pages_features_animation-one {
    margin-left: -215px;
    animation: featuresHeroAnimationOne 10s infinite;
}

.hero-pages_features_animation-two {
    margin-right: -215px;
    animation: featuresHeroAnimationTwo 10s infinite;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-pages {
        height: 759px;
        background-image: url("../img/features/background.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .hero-pages_text {
        width: 100%;
        height: 196px;
        margin: 64px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-pages_text h1 {
        width: 768px;
        color: #fffdf7;
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-pages_text p {
        width: 768px;
        color: #fffdf7;
        opacity: 0.8;
        font-size: 1.5rem;
        line-height: 2.2rem;
        font-weight: normal;
        text-align: center;
    }

    .hero-pages_features {
        width: 772px;
        height: 208px;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero-pages_features__icons-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 32px;
        margin-bottom: 36px;
    }

    .hero-pages_about {
        display: flex;
        justify-content: center;
        height: 527px;
        clear: both;
        padding-bottom: 96px;
    }

    .hero-pages_contact {
        margin: 264px auto;
        background-image: url("../img/contact/hero-background.svg");
        background-repeat: no-repeat;
        background-position: 0px -50px;
        height: 400px;
    }

    .hero-pages_faq {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 362px !important;
        margin-top: 96px;
    }

    .hero-pages_faq-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .hero-pages_faq-title_top {
        display: block;
        width: 100%;
        color: #fffdf7;
        font-size: 48px;
        font-weight: 600;
        text-align: center;
    }

    .hero-pages_faq-title_bottom {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        text-align: center;
    }

    .hero-pages_faq-title_bottom span {
        display: block;
        color: #fffdf7;
        font-size: 48px;
        font-weight: 600;
    }

    .hero-pages_faq-title_bottom span img {
        margin-top: -11px;
        padding: 0 20px;
    }

    .hero-pages_faq p {
        margin-top: 32px;
    }

    .hero-pages_faq-search {
        padding-top: 40px;
    }

    .hero-pages-mobile {
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .hero-pages {
        height: auto;
        background-image: url("../img/features/background.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .hero-pages_text {
        width: 100%;
        height: auto;
        margin: 32px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-pages_text h1 {
        width: auto;
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .hero-pages_text p {
        width: auto;
        font-size: 1.5rem;
        line-height: 1.8rem;
        text-align: center;
    }

    .hero-pages_features {
        width: auto;
        height: auto;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero-pages_features__icons-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 32px;
        margin-bottom: 36px;
    }

    .hero-pages_about {
        display: flex;
        justify-content: center;
        clear: both;
        height: 345px;
    }

    .hero-pages_contact {
        margin: 164px auto;
        background-image: url("../img/contact/hero-background.svg");
        background-repeat: no-repeat;
        background-position: 0px -50px;
        height: 600px;
    }

    .hero-pages_contact p {
        font-size: 1.3rem;
    }

    .hero-pages_faq {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 342px !important;
        margin-top: 64px;
    }

    .hero-pages_faq-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .hero-pages_faq-title_top {
        display: block;
        width: 100%;
        color: #fffdf7;
        font-size: 1.7rem;
        font-weight: 600;
        text-align: center;
    }

    .hero-pages_faq-title_bottom {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .hero-pages_faq-title_bottom span {
        display: inline;
        color: #fffdf7;
        font-size: 1.7rem;
        font-weight: 600;
    }

    .hero-pages_faq-title_bottom span img {
        width: 60px !important;
        height: 60px !important;
        padding: 0 10px;
    }

    .hero-pages_faq p {
        margin-top: 32px;
        font-size: 1.3rem;
    }

    .hero-pages_faq-search {
        padding-top: 64px;
    }

    .hero-pages-mobile-about {
        height: auto;
    }
}

.card-trial {
    height: 176px;
    margin-top: 96px;
    background-image: url("../img/cardtrial/background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 64px;
    border-radius: 24px;
}

.card-trial__text {
    position: relative;
}

.card-trial__text h1 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.card-trial__text p {
    padding: 5px 0px;
    color: #d2d6db;
}

.card-trial__text p strong {
    color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-trial {
        height: auto;
        margin: 0px 40px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .card-trial__text h1 {
        font-size: 3rem;
        height: 50px;
    }

    .card-trial__text p {
        padding-top: 20px;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-trial__text p strong {
        color: #fff;
    }

    .card-trial__button {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .card-trial {
        height: auto;
        margin: 50px 16px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .card-trial__text h1 {
        font-size: 3rem;
    }

    .card-trial__text p {
        padding-top: 10px;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-trial__text p strong {
        color: #fff;
    }

    .card-trial__button {
        margin-top: 20px;
    }
}

.trialarea {
    height: 374px;
    background-image: url("../img/trialarea/background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trialarea-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trialarea-content h1 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    height: 25px;
}

.trialarea-content p {
    font-size: 20px;
    color: #e5e7eb;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .trialarea-content h1 {
        font-size: 3rem;
        height: 50px;
    }

    .trialarea-content p {
        font-size: 1.5rem;
    }

    .trialarea-content__button {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .trialarea {
        padding: 30px 16px;
    }

    .trialarea-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .trialarea-content h1 {
        font-size: 3rem;
        height: auto !important;
    }

    .trialarea-content p {
        font-size: 1.5rem;
    }

    .trialarea-content__button {
        margin-top: 30px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    color: #384250;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: none;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #fffdf7;
    opacity: 1 !important;
}

.button__text {
    margin-right: 5px;
    color: #384250;
}

.button:hover {
    background-color: #fff6df;
}

.button-primary {
    background-color: #028588;
    color: #fffdf7;
}

.button-primary:hover {
    background-color: #006f72;
    color: #fffcf6;
}

.button-secondary {
    background-color: #e9ac10;
    color: #fffdf7;
}

.button-secondary:hover {
    background-color: #d89b00;
    color: #fffcf6;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .button {
        width: 100%;
        height: auto;
        font-size: 1.5rem;
        padding: 16px 30px !important;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .button {
        width: 100%;
        height: auto;
        font-size: 1.3rem;
        padding: 14px 30px !important;
        border-radius: 14px;
    }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.form .form-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
}

.form .form-group button {
    width: 100%;
}

.form .form-input-group {
    width: 100%;
}

.form .form-terms {
    width: 100%;
    flex-wrap: wrap;
}

.form .form-input-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #384250;
    padding-bottom: 10px;
}

.form .form-input-group label span {
    color: red;
}

.form .form-input-group input {
    width: 100%;
    display: block;
    border-radius: 6px;
    border: 1px solid #d2d6db;
    outline: none;
    padding: 8px;
    font-size: 16px;
    color: #1f2a37;
    font-weight: 100;
}

.form .form-input-group select {
    width: 100%;
    display: block;
    border-radius: 6px;
    border: 1px solid #d2d6db;
    outline: none;
    padding: 8px;
    font-size: 16px;
    color: #1f2a37;
    font-weight: 100;
}

.form .form-input-group input:focus {
    border-color: #02999c;
    box-shadow: 0 0 2px #02999c;
}

.form .form-input-group textarea {
    width: 100%;
    display: block;
    border-radius: 6px;
    border: 1px solid #d2d6db;
    padding: 8px;
}

.form .form-input-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 5px;
    font-size: 14px;
    color: #384250;
    gap: 10px;
}

.form .remember-forget-password a {
    color: #006f72;
    font-size: 14px;
    font-weight: 100;
}

.form .search-container {
    position: relative;
    width: 320px;
}

.form .search-container input {
    padding-left: 40px !important;
}

.form .search-container input::placeholder {
    color: #6c737f;
}

.form .search-container img {
    position: absolute;
    top: 22%;
    padding-left: 10px;
}

.form .form-input-checkbox {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.form .form-input-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form .checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #eee;
}

.form .form-input-checkbox input:checked ~ .checkmark {
    background-color: #006f72;
}

.form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form .form-input-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.form .form-input-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.select-style {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: 0.6em 1.4em 0.5em 0.8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 0.5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("arrow.png"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.select-style::-ms-expand {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .form .form-input-group label {
        font-size: 1.3rem;
        padding-bottom: 12px;
    }

    .form .form-input-group input {
        border-radius: 8px;
        padding: 12px;
        font-size: 1.5rem;
    }

    .form .form-input-group textarea {
        border-radius: 8px;
        padding: 12px;
    }

    .form .remember-forget-password a {
        font-size: 1.1rem;
    }

    .form .form-input-checkbox {
        font-size: 1.1rem;
        padding-left: 35px;
    }

    .form .checkmark {
        height: 24px;
        width: 24px;
    }

    .form .form-input-checkbox .checkmark:after {
        left: 8px;
        top: 4px;
        width: 7px;
        height: 15px;
    }

    .form .search-container {
        position: relative;
        width: 320px;
    }

    .form .search-container input {
        padding-left: 40px !important;
    }

    .form .search-container input::placeholder {
        color: #6c737f;
    }

    .form .search-container img {
        position: absolute;
        top: 32%;
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .form .form-input-group label {
        font-size: 1.3rem;
        padding-bottom: 12px;
    }

    .form .form-input-group input {
        border-radius: 8px;
        padding: 12px;
        font-size: 1.5rem;
    }

    .form .form-input-group textarea {
        border-radius: 8px;
        padding: 12px;
    }

    .form .remember-forget-password a {
        font-size: 1.1rem;
    }

    .form .form-input-checkbox {
        font-size: 1.1rem;
        padding-left: 35px;
    }

    .form .checkmark {
        height: 24px;
        width: 24px;
    }

    .form .form-input-checkbox .checkmark:after {
        left: 8px;
        top: 4px;
        width: 7px;
        height: 15px;
    }

    .form .search-container {
        position: relative;
        width: 320px;
    }

    .form .search-container input {
        padding-left: 40px !important;
    }

    .form .search-container input::placeholder {
        color: #6c737f;
    }

    .form .search-container img {
        position: absolute;
        top: 32%;
        padding-left: 10px;
    }
}

.carousel {
    position: relative;
    width: 1280px;
    /* 448px * 3 */
    margin: auto;
    overflow: hidden;
}

.carousel__track-container {
    overflow: hidden;
}

.carousel__track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 111, 114, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

.carousel__button:disabled {
    display: none;
}

.carousel__button--left {
    left: 10px;
}

.carousel__button--right {
    right: 10px;
}

.is-hidden {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .carousel {
        width: 100%;
    }

    .carousel__slide {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .carousel {
        width: 100%;
    }

    .carousel__slide {
        width: 50%;
    }
}

.accordion {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 100;
    padding: 12px 32px;
    color: #061f20;
    cursor: pointer;
    transition: 0.4s;
}

.accordion-active {
    font-weight: 600;
}

.panel {
    font-size: 16px;
    color: #6c737f;
    padding: 0px 80px;
    line-height: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@media (max-width: 767px) {
    .accordion {
        padding: 12px 0px;
    }

    .panel {
        padding: 0px 0px;
    }
}

.hero {
    height: 759px;
    background-image: url("../img/main/hero-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

.hero .hero_background__image {
    width: 100%;
    height: 759px;
    z-index: 1;
}

.hero .hero_background__image img {
    position: absolute;
    top: -70px;
    right: -80px;
}

.hero .hero_text__area {
    width: 100%;
    height: 360px;
    margin: 159px auto;
    position: relative;
    z-index: 1;
    max-width: 1280px
}

.hero .hero_text__area h3 {
    color: #fffdf7;
    opacity: 0.9;
    font-size: 16px;
    font-style: normal;
}

.hero .hero_text__area h1 {
    font-family: "Kanit", sans-serif;
    color: #fffcf6;
    font-size: 72px;
    margin-top: 12px;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero .hero_text__area h2 {
    color: #fffdf7;
    opacity: 0.9;
    font-size: 20px;
    line-height: 30px;
}

.hero_text__area_mobile_apps a {margin-bottom: 18px}

.hero .hero_text__area .hero_text__area_mobile_apps {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 48px;
    flex-wrap: wrap
}

.hero .hero_text__area .hero_text__area_mobile_apps a img {
    margin-right: 12px;
}

.hero .mobile_menu {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero,
    .hero-pages {
        width: 100%;
        padding: 0px 40px;
    }

    .hero .hero_text__area h3,
    .hero-pages .hero_text__area h3 {
        font-size: 1.3rem;
    }

    .hero .hero_text__area h1,
    .hero-pages .hero_text__area h1 {
        font-size: 4.5rem;
        line-height: 4.5rem;
    }

    .hero .hero_text__area h2,
    .hero-pages .hero_text__area h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .hero .mobile_menu,
    .hero-pages .mobile_menu {
        width: 100%;
        height: auto;
        overflow: hidden;
        transition: 0.5s ease-in-out;
        box-sizing: border-box;
        position: absolute;
        display: none;
        flex-direction: column;
        gap: 24px;
        left: 0;
        top: 0;
        z-index: 9999;
        padding-top: 80px;
        background-color: #061f20;
    }

    .hero .mobile_menu ul,
    .hero-pages .mobile_menu ul {
        display: flex;
        flex-direction: column;
        padding-top: 48px;
        padding-left: 6px;
        gap: 8px;
    }

    .hero .mobile_menu ul li,
    .hero-pages .mobile_menu ul li {
        padding: 12px 16px;
    }

    .hero .mobile_menu ul li a,
    .hero-pages .mobile_menu ul li a {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #fffdf7;
        font-size: 1.5rem;
    }

    .hero .mobile_menu ul li:hover,
    .hero-pages .mobile_menu ul li:hover {
        background-color: #0a2627;
    }

    .hero .mobile_menu-buttons,
    .hero-pages .mobile_menu-buttons {
        display: flex;
        flex-direction: row;
        padding: 28px;
        gap: 24px;
    }

    .hero .mobile_menu-buttons a,
    .hero-pages .mobile_menu-buttons a {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .hero {
        background-image: url("../img/main/hero-background-mobile.svg");
    }

    .hero .hero_background__image {
        width: 100%;
        height: 645px;
        z-index: 1;
    }

    .hero .hero_background__image img {
        position: absolute;
        top: 260px;
        right: 0;
    }

    .hero,
    .hero-pages {
        width: 100%;
        padding: 16px;
    }

    .hero .hero_text__area,
    .hero-pages .hero_text__area {
        margin: 96px auto;
    }

    .hero .hero_text__area h3,
    .hero-pages .hero_text__area h3 {
        font-size: 1rem;
    }

    .hero .hero_text__area h1,
    .hero-pages .hero_text__area h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .hero .hero_text__area h2,
    .hero-pages .hero_text__area h2 {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .hero .mobile_menu,
    .hero-pages .mobile_menu {
        width: 100%;
        height: auto;
        overflow: hidden;
        transition: 0.5s ease-in-out;
        box-sizing: border-box;
        position: absolute;
        display: none;
        flex-direction: column;
        gap: 24px;
        left: 0;
        top: 0;
        z-index: 9999;
        padding-top: 60px;
        background-color: #061f20;
    }

    .hero .mobile_menu ul,
    .hero-pages .mobile_menu ul {
        display: flex;
        flex-direction: column;
        padding-top: 48px;
        padding-left: 6px;
        gap: 8px;
    }

    .hero .mobile_menu ul li,
    .hero-pages .mobile_menu ul li {
        padding: 12px 8px;
    }

    .hero .mobile_menu ul li a,
    .hero-pages .mobile_menu ul li a {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #fffdf7;
        font-size: 1.3rem;
    }

    .hero .mobile_menu ul li:hover,
    .hero-pages .mobile_menu ul li:hover {
        background-color: #0a2627;
    }

    .hero .mobile_menu-buttons,
    .hero-pages .mobile_menu-buttons {
        display: flex; 
        flex-direction: column; 
        padding: 28px;
        gap: 24px;
    }

    .mobile_menu-buttons a:first-child {
        display: none;
    }


    .hero .mobile_menu-buttons a,
    .hero-pages .mobile_menu-buttons a {
        flex: 1;
    }
}

.card-brands {
    margin: 96px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-brands__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 96px;
}

.card-brands__text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
}

.card-brands__text p {
    padding-top: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #4d5761;
}

.card-brands__logos {
    flex: 1;
    height: 204px;
    position: relative !important;
    overflow: hidden;
}

.card-brands__logos-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-brands__logos-bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-brands {
        flex-direction: column;
        gap: 32px;
        padding: 0 40px;
    }

    .card-brands__text {
        padding-right: 0;
        flex-direction: column;
    }

    .card-brands__text h2 {
        font-size: 2rem;
    }

    .card-brands__text p {
        padding-top: 20px;
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .card-brands {
        flex-direction: column;
        gap: 32px;
    }

    .card-brands__text {
        padding: 0 16px;
        flex-direction: column;
    }

    .card-brands__text h2 {
        font-size: 3rem;
    }

    .card-brands__text p {
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

.card-promovideo {
    margin: 96px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.card-promovideo__video {
    width: 604px;
}

.card-promovideo__text {
    display: flex;
    flex-direction: column;
    width: 604px;
    height: 428px;
}

.card-promovideo__text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
}

.card-promovideo__text p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #4d5761;
}

.card-promovideo__text-lists {
    margin-top: 32px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #061f20;
}

.card-promovideo__text-lists ul li {
    padding-bottom: 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.card-promovideo__text-lists ul li img {
    margin-right: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-promovideo {
        margin: 96px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .card-promovideo__video {
        width: auto;
        padding-bottom: 64px;
    }

    .card-promovideo__text {
        width: 100%;
        padding: 0 40px;
    }

    .card-promovideo__text h2 {
        font-size: 2rem;
    }

    .card-promovideo__text p {
        margin-top: 20px;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-promovideo__text-lists {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .card-promovideo {
        margin: 96px 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .card-promovideo__video {
        width: 100%;
        padding-bottom: 64px;
        padding-left: 10px;
        padding-right: 10px;
        height: auto;
    }

    .card-promovideo__video iframe {
        min-height: auto!important;
        aspect-ratio: 16/9!important;
        height: auto!important;
    }

    .card-promovideo__text {
        width: 100%;
        padding: 0 16px;
        height: auto;
    }

    .card-promovideo__text h2 {
        font-size: 3rem;
    }

    .card-promovideo__text p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .card-promovideo__text-lists {
        font-size: 1.3rem;
    }
}

.card-solutions {
    margin-bottom: 96px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.card-solutions__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.card-solutions__top-title {
    display: flex;
    flex-direction: column;
}

.card-solutions__top-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
}

.card-solutions__top-title p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #4d5761;
}

.card-solutions__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-solutions__bottom-text {
    width: 608px;
}

.card-solutions__bottom-text__section {
    height: 190px;
    padding-left: 24px;
    border-left: 4px solid;
    border-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.card-solutions__bottom-text__section-title {
    font-size: 20px;
    font-weight: 600;
    color: #061f20;
}

.card-solutions__bottom-text__section-explain {
    margin: 12px 0;
    font-size: 16px;
    line-height: 24px;
    color: #4d5761;
}

.card-solutions__bottom-text__section-link a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 16px;
    color: #028588;
}

.card-solutions__bottom-text__section-link a:hover {
    color: #006f72;
}

.card-solutions__bottom-text__section-link a img {
    margin-left: 10px;
}

.card-solutions__bottom-text .section-active {
    border-color: #006f71;
}

.card-solutions__bottom-text__button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 80px;
    padding-left: 24px;
}

.card-solutions__bottom-images {
    width: 608px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-solutions {
        margin-top: 96px;
        margin-bottom: 96px;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0px 40px;
    }

    .card-solutions__top {
        display: flex;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .card-solutions__top-title {
        display: flex;
        flex-direction: column;
    }

    .card-solutions__top-title h2 {
        font-size: 2rem;
    }

    .card-solutions__top-title p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-solutions__bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .card-solutions__bottom-text {
        width: auto;
    }

    .card-solutions__bottom-text__section {
        height: 220px;
    }

    .card-solutions__bottom-text__section-title {
        font-size: 1.5rem;
    }

    .card-solutions__bottom-text__section-explain {
        margin: 12px 0;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-solutions__bottom-text__section-link a {
        font-size: 1.5rem;
    }

    .card-solutions__bottom-text__button {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 80px;
    }

    .card-solutions__bottom-images {
        display: none;
    }
}

@media (max-width: 767px) {
    .card-solutions {
        margin-top: 96px;
        margin-bottom: 96px;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 0px 16px;
    }

    .card-solutions__top {
        display: flex;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .card-solutions__top-title {
        display: flex;
        flex-direction: column;
    }

    .card-solutions__top-title h2 {
        font-size: 3rem;
    }

    .card-solutions__top-title p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .card-solutions__bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .card-solutions__bottom-text {
        width: auto;
    }

    .card-solutions__bottom-text__section {
        height: 280px;
    }

    .card-solutions__bottom-text__section-title {
        font-size: 1.5rem;
    }

    .card-solutions__bottom-text__section-explain {
        margin: 12px 0;
        font-size: 1.1rem;
        line-height: 2rem;
    }

    .card-solutions__bottom-text__section-link a {
        font-size: 1.1rem;
    }

    .card-solutions__bottom-text__button {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 80px;
    }

    .card-solutions__bottom-images {
        display: none;
    }
}

.card-faq {
    margin-top: 96px;
}

.card-faq__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-faq__content-text {
    width: 709px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
}

.card-faq__content-text__icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.card-faq__content-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111927;
    text-align: center;
}

.card-faq__content-text__explain {
    background-color: #fffaee;
    padding: 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 16px;
    gap: 24px;
}

.card-faq__content-text__explain-icon {
    flex: 1;
}

.card-faq__content-text__explain-icon img {
    width: 24px !important;
}

.card-faq__content-text__explain-text {
    flex: 11;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-faq__content-text__explain-text__title {
    font-size: 18px;
    font-weight: 400;
}

.card-faq__content-text__explain-text__explain {
    color: #6c737f;
    font-size: 16px;
    line-height: 24px;
    font-weight: 100;
}

.card-faq__content-text__explain-text .isHidden {
    transition: 0.2s ease-out;
}

.card-faq__content-text__lists {
    display: flex;
    justify-content: flex-start;
}

.card-faq__content-text__lists ul {
    width: 100%;
}

.card-faq__content-text__lists ul li div img {
    width: 24px !important;
    height: 24px !important;
}

.card-faq__content-text__lists ul li div span {
    padding-left: 20px;
}

.card-faq__morebutton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 32px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-faq {
        padding: 0 40px;
    }

    .card-faq__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .card-faq__content-text h2 {
        font-size: 3rem;
    }

    .card-faq__content-text__explain {
        display: flex;
    }

    .card-faq__content-text__explain-icon {
        flex: 1;
    }

    .card-faq__content-text__explain-icon img {
        width: 36px !important;
    }

    .card-faq__content-text__explain-text {
        flex: 11;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .card-faq__content-text__explain-text__title {
        font-size: 2rem;
    }

    .card-faq__content-text__explain-text__explain {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-faq__content-text__explain-text .isHidden {
        transition: 0.2s ease-out;
    }

    .card-faq__content-text__lists {
        display: flex;
        justify-content: flex-start;
    }

    .card-faq__content-text__lists ul li {
        padding-bottom: 32px;
    }

    .card-faq__content-text__lists ul li div {
        width: 100%;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-faq__content-text__lists ul li div img {
        width: 36px !important;
        height: 36px !important;
    }

    .card-faq__content-text__lists ul li div span {
        padding-left: 20px;
    }

    .card-faq__content-text__lists ul li p {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .card-faq__morebutton {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .card-faq {
        padding: 0 16px;
    }

    .card-faq__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .card-faq__content-text {
        width: 100%;
    }

    .card-faq__content-text h2 {
        font-size: 3rem;
    }

    .card-faq__content-text__explain {
        display: flex;
    }

    .card-faq__content-text__explain-icon {
        flex: 1;
    }

    .card-faq__content-text__explain-icon img {
        width: 24px !important;
        margin-top: 20px;
    }

    .card-faq__content-text__explain-text {
        flex: 11;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .card-faq__content-text__explain-text__title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-faq__content-text__explain-text__explain {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .card-faq__content-text__explain-text .isHidden {
        transition: 0.2s ease-out;
    }

    .card-faq__content-text__lists {
        display: flex;
        justify-content: flex-start;
    }

    .card-faq__content-text__lists ul li {
        padding-bottom: 32px;
    }

    .card-faq__content-text__lists ul li div {
        width: 100%;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .card-faq__content-text__lists ul li div img {
        width: 24px !important;
        height: 24px !important;
    }

    .card-faq__content-text__lists ul li div span {
        padding-left: 20px;
    }

    .card-faq__content-text__lists ul li p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .card-faq__morebutton {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 32px;
    }
}

.card-reviews {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    height: 500px;
}

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

.card-reviews__title-icon {
    width: 68px;
    height: 68px;
}

.card-reviews__title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20 !important;
    margin-top: 10px;
}

.card-reviews__cards {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 48px;
    position: relative !important;
    overflow: hidden;
}

.card-reviews__cards::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    right: 0 !important;
    background: linear-gradient(to left, #ffffff, transparent) !important;
}

.card-reviews__cards-card {
    width: 366px;
    height: 336px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.card-reviews__cards-card__text {
    font-size: 16px;
    font-weight: 100;
    line-height: 24px;
}

.card-reviews__cards-card__sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-reviews__cards-card:hover {
    transform: rotate(-4deg);
}

.card-reviews__cards .card-color-secondary {
    background-color: #d89b00;
    color: #0a2627;
}

.card-reviews__cards .card-color-secondary-light {
    background-color: #fffaee;
    color: #0a2627;
}

.card-reviews__cards .card-color-primary {
    background-color: #006f72;
    color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-reviews {
        margin-top: 96px 0 196px !important;
        padding-bottom: 96px;
        display: flex;
        flex-direction: column;
        height: 900px;
    }

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

    .card-reviews__title-icon {
        width: 68px;
        height: 68px;
    }

    .card-reviews__title h2 {
        font-size: 3rem;
    }

    .card-reviews__cards::after {
        content: "";
        width: 0;
        background: none;
    }

    .card-reviews__cards-card {
        width: 359px;
        height: 566px;
    }

    .card-reviews__cards-card__text {
        font-size: 1.3rem;
        font-weight: 100;
        line-height: 2rem;
    }

    .card-reviews__cards-card__sub strong {
        font-size: 1.5rem;
    }

    .card-reviews__cards-card__sub small {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .card-reviews {
        margin-top: 96px 0 196px !important;
        padding-bottom: 96px;
        display: flex;
        flex-direction: column;
        height: 800px;
    }

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

    .card-reviews__title-icon {
        width: 68px;
        height: 68px;
    }

    .card-reviews__title h2 {
        font-size: 3rem;
    }

    .card-reviews__cards::after {
        content: "";
        width: 0;
        background: none;
    }

    .card-reviews__cards-card {
        min-width: 390px;
        height: 516px;
    }

    .card-reviews__cards-card__text {
        font-size: 1.3rem;
        font-weight: 100;
        line-height: 2rem;
    }

    .card-reviews__cards-card__sub strong {
        font-size: 1.5rem;
    }

    .card-reviews__cards-card__sub small {
        font-size: 1.2rem;
    }
}

.features-card-tools {
    margin: 96px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-card-tools_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 786px;
}

.features-card-tools_text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
    margin-bottom: 20px;
    text-align: center;
}

.features-card-tools_text p {
    font-size: 20px;
    color: #6c737f;
    font-weight: 100;
    text-align: center;
}

.features-card-tools_lists {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.features-card-tools_lists-card {
    width: 405px;
    height: 196px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-card-tools_lists-card img {
    margin-bottom: 15px;
}

.features-card-tools_lists-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #061f20;
    padding: 5px;
}

.features-card-tools_lists-card p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #6c737f;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .features-card-tools {
        margin: 96px 40px;
    }

    .features-card-tools_text {
        width: 100%;
    }

    .features-card-tools_text h2 {
        font-size: 2.5rem;
    }

    .features-card-tools_text p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .features-card-tools_lists {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-card-tools_lists-card h3 {
        font-size: 1.5rem;
    }

    .features-card-tools_lists-card p {
        font-size: 1.2rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .features-card-tools {
        margin: 96px 16px;
    }

    .features-card-tools_text {
        width: 100%;
    }

    .features-card-tools_text h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .features-card-tools_text p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .features-card-tools_lists {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .features-card-tools_lists-card {
        width: 360px;
    }

    .features-card-tools_lists-card h3 {
        font-size: 1.5rem;
    }

    .features-card-tools_lists-card p {
        font-size: 1.2rem;
        line-height: 2rem;
    }
}

.features-card-managerapps {
    margin: 96px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.features-card-managerapps_text {
    width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-card-managerapps_text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
    padding-bottom: 24px;
}

.features-card-managerapps_text p {
    color: #6c737f;
    line-height: 28px;
    font-size: 18px;
}

.features-card-managerapps_text-apps {
    padding-top: 48px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.features-card-managerapps_text-apps img {
    padding-right: 12px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .features-card-managerapps {
        margin: 96px 40px;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .features-card-managerapps_image {
        margin-top: 64px;
    }

    .features-card-managerapps_text {
        width: 100%;
    }

    .features-card-managerapps_text h2 {
        font-size: 3rem;
    }

    .features-card-managerapps_text p {
        line-height: 2rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .features-card-managerapps {
        margin: 50px 16px;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .features-card-managerapps_image {
        margin-top: 64px;
    }

    .features-card-managerapps_text {
        width: 100%;
    }

    .features-card-managerapps_text h2 {
        font-size: 3rem;
    }

    .features-card-managerapps_text p {
        line-height: 2rem;
        font-size: 1.3rem;
    }

    .features-card-managerapps_text-apps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }
}

.features-card-sonos {
    margin: 96px 0;
    display: flex;
    flex-direction: column;
}

.features-card-sonos_top {
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
    width: 768px;
}

.features-card-sonos_top h2 {
    color: #111927;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-card-sonos_top p {
    font-size: 20px;
    color: #6c737f;
    line-height: 24px;
}

.features-card-sonos_middle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 64px;
}

.features-card-sonos_middle-text {
    width: 608px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-card-sonos_middle-text_card {
    padding-bottom: 32px;
}

.features-card-sonos_middle-text_card h3 {
    font-size: 20px;
    color: #061f20;
    font-weight: medium;
    padding-bottom: 10px;
}

.solutions-left-text-card p {
    font-size: 18px;
    font-weight: normal;
    line-height: 28px;
    color: #6c737f;
}

@media (max-width: 767px) {
    .solutions-left-card {
        margin: 50px 16px;
        display: flex;
        flex-direction: column;
    }
    .solutions-left-text-card h3 {
        font-size: 19px;
        font-weight: bold;
    }
    .solutions-left-text-card p {
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

.features-card-sonos_middle-text_card p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #6c737f;
}

.features-card-sonos_middle-text_card p p {
    padding-bottom: 10px;
}

.features-card-sonos_middle-text_card a {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 16px;
    color: #028588;
}

.features-card-sonos_middle-text_card a:hover {
    color: #006f72;
}

.features-card-sonos_middle-text_card a img {
    margin-left: 10px;
}

.features-card-sonos_bottom {
    margin-top: 96px;
}

.features-card-sonos_bottom-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.features-card-sonos_bottom-list ul li {
    width: 608px;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 500;
}

.features-card-sonos_bottom-list ul li:not(:nth-child(1)):not(:nth-child(2)) {
    border-top: 1px solid #e5e7eb;
}

.features-card-sonos_bottom-list ul li div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.features-card-sonos_bottom-list ul li div img {
    width: 26px;
    height: 26px;
    padding-right: 0px !important;
}

.features-card-sonos_bottom-list ul li p {
    font-size: 16px;
    font-weight: 100;
    color: #6c737f;
    padding: 10px 30px 0px 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .features-card-sonos {
        margin: 96px 40px;
        display: flex;
        flex-direction: column;
    }

    .features-card-sonos_top {
        display: flex;
        flex-direction: column;
        align-self: center;
        text-align: center;
        width: 768px;
    }

    .features-card-sonos_top h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .features-card-sonos_top p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .features-card-sonos_middle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 2rem;
    }

    .features-card-sonos_middle-text {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .features-card-sonos_middle-text_card {
        padding-bottom: 32px;
    }

    .features-card-sonos_middle-text_card h3 {
        font-size: 2rem;
        padding-bottom: 1.5rem;
    }

    .features-card-sonos_middle-text_card p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .features-card-sonos_middle-text_card p p {
        padding-bottom: 2rem;
    }

    .features-card-sonos_middle-text_card a {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        font-size: 1.5rem;
    }

    .features-card-sonos_middle-text_card a:hover {
        color: #006f72;
    }

    .features-card-sonos_middle-text_card a img {
        margin-left: 10px;
    }

    .features-card-sonos_middle-image {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 64px;
    }

    .features-card-sonos_bottom {
        margin-top: 96px;
    }

    .features-card-sonos_bottom-list ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .features-card-sonos_bottom-list ul li {
        width: 100%;
    }

    .features-card-sonos_bottom-list ul li div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .features-card-sonos_bottom-list ul li div h6 {
        font-size: 1.7rem;
    }

    .features-card-sonos_bottom-list ul li div img {
        width: 32px;
        height: 32px;
    }

    .features-card-sonos_bottom-list ul li p {
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .features-card-sonos {
        margin: 96px 16px;
        display: flex;
        flex-direction: column;
    }

    .features-card-sonos_top {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: auto;
    }

    .features-card-sonos_top h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .features-card-sonos_top p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .features-card-sonos_middle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 2rem;
    }

    .features-card-sonos_middle-text {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .features-card-sonos_middle-text_card {
        padding-bottom: 32px;
    }

    .features-card-sonos_middle-text_card h3 {
        font-size: 1.8rem;
        padding-bottom: 1.5rem;
    }

    .features-card-sonos_middle-text_card p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .features-card-sonos_middle-text_card p p {
        padding-bottom: 2rem;
    }

    .features-card-sonos_middle-text_card a {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 1.3rem;
    }

    .features-card-sonos_middle-text_card a:hover {
        color: #006f72;
    }

    .features-card-sonos_middle-text_card a img {
        margin-left: 10px;
    }

    .features-card-sonos_middle-image {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 64px;
    }

    .features-card-sonos_bottom {
        margin-top: 96px;
    }

    .features-card-sonos_bottom-list ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .features-card-sonos_bottom-list ul li {
        width: 100%;
    }

    .features-card-sonos_bottom-list ul li:not(:nth-child(1)):not(:nth-child(2)) {
        border-top: 0px;
    }

    .features-card-sonos_bottom-list ul li:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }

    .features-card-sonos_bottom-list ul li div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .features-card-sonos_bottom-list ul li div h6 {
        font-size: 1.4rem;
        padding: 0 10px 0 0;
    }

    .features-card-sonos_bottom-list ul li div img {
        width: 32px;
        height: 32px;
    }

    .features-card-sonos_bottom-list ul li p {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 0;
    }
}

.about-card-story {
    margin: 192px auto 128px;
}

.about-card-story_title h1 {
    font-size: 36px;
    color: #061f20;
}

.about-card-story_title p {
    padding-top: 7px;
    font-size: 20px;
    color: #6c737f;
}

.about-card-story_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 64px;
    gap: 30px;
}

.about-card-story_text div {
    flex: 1;
}

.about-card-story_text div p {
    color: #6c737f;
    line-height: 24px;
    font-size: 18px;
    font-weight: 100;
}

.about-card-story_text div p:nth-child(2) {
    padding-top: 10px;
}

.about-card-story_text div ul {
    padding-left: 20px;
}

.about-card-story_text div ul li {
    color: #6c737f;
    list-style-type: disc !important;
    line-height: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-card-story {
        margin: 162px 40px 128px;
    }

    .about-card-story_title h1 {
        font-size: 3rem;
    }

    .about-card-story_title p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-card-story_text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .about-card-story_text div {
        flex: 1;
    }

    .about-card-story_text div p {
        line-height: 2rem;
        font-size: 1.5rem;
    }

    .about-card-story_text div ul li {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .about-card-story {
        margin: 78px 16px 0px;
    }

    .about-card-story_title h1 {
        font-size: 2.5rem;
    }

    .about-card-story_title p {
        margin-top: 24px;
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .about-card-story_text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .about-card-story_text div {
        flex: 1;
    }

    .about-card-story_text div p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .about-card-story_text div ul li {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
}

.about-card-playlist {
    display: flex;
    flex-direction: column;
    margin: 96px auto;
    padding: 96px auto;
}

.about-card-playlist_title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 32px;
}

.about-card-playlist_title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #061f20;
}

.about-card-playlist_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.about-card-playlist_list-card {
    width: 290px;
    height: auto;
    padding: 16px;
    border-radius: 24px;
    background-color: #061f20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.about-card-playlist_list-card_title {
    font-size: 20px;
    height: 40px;
    text-align: center;
    color: #e5e7eb;
}

.about-card-playlist_list-card_play {
    position: relative;
}

.about-card-playlist_list-card_play-button {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
}

.about-card-playlist_list-card_play-button img {
    width: 60px;
    height: 60px;
}

.about-card-playlist_list-card_play-album img {
    width: 225px;
    height: 225px;
    border-radius: 16px;
}

.about-card-playlist_list-card_subtitle {
    font-size: 16px;
    height: 60px;
    padding: 15px;
    text-align: center;
    color: #e5e7eb;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-card-playlist {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 96px auto;
        padding: 96px auto;
    }

    .about-card-playlist_title {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-bottom: 32px;
    }

    .about-card-playlist_title h3 {
        font-size: 1.7rem;
    }

    .about-card-playlist_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-card-playlist_list-card {
        width: 290px;
        height: auto;
        padding: 16px;
        border-radius: 24px;
        background-color: #061f20;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .about-card-playlist_list-card_title {
        font-size: 20px;
        height: 40px;
        text-align: center;
        color: #e5e7eb;
    }

    .about-card-playlist_list-card_play {
        position: relative;
    }

    .about-card-playlist_list-card_play-button {
        cursor: pointer;
        position: absolute;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
    }

    .about-card-playlist_list-card_play-button img {
        width: 60px;
        height: 60px;
    }

    .about-card-playlist_list-card_play-album img {
        width: 225px;
        height: 225px;
        border-radius: 16px;
    }

    .about-card-playlist_list-card_subtitle {
        font-size: 16px;
        height: 60px;
        padding: 15px;
        text-align: center;
        color: #e5e7eb;
    }
}

@media (max-width: 767px) {
    .about-card-playlist {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 96px auto;
        padding: 96px auto;
    }

    .about-card-playlist_title {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 32px;
    }

    .about-card-playlist_title h3 {
        font-size: 1.7rem;
    }

    .about-card-playlist_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .about-card-playlist_list-card {
        width: 290px;
        height: auto;
        padding: 16px;
        border-radius: 24px;
        background-color: #061f20;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .about-card-playlist_list-card_title {
        font-size: 20px;
        height: 40px;
        text-align: center;
        color: #e5e7eb;
    }

    .about-card-playlist_list-card_play {
        position: relative;
    }

    .about-card-playlist_list-card_play-button {
        cursor: pointer;
        position: absolute;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
    }

    .about-card-playlist_list-card_play-button img {
        width: 60px;
        height: 60px;
    }

    .about-card-playlist_list-card_play-album img {
        width: 225px;
        height: 225px;
        border-radius: 16px;
    }

    .about-card-playlist_list-card_subtitle {
        font-size: 16px;
        height: 60px;
        padding: 15px;
        text-align: center;
        color: #e5e7eb;
    }
}

.about-card-customers {
    margin: 96px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card-customers-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 853px;
    text-align: center;
}

.about-card-customers-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #061f20;
}

.about-card-customers-title p {
    font-size: 20px;
    line-height: 24px;
    color: #667085;
    padding-top: 20px;
}

.about-card-customers-list {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-card-customers-list img {
    cursor: pointer;
}

.about-card-customers-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-card-customers {
        margin: 96px 40px;
    }

    .about-card-customers-title {
        width: 100%;
    }

    .about-card-customers-title h2 {
        font-size: 3rem;
    }

    .about-card-customers-title p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-card-customers-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-card-customers-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-card-customers {
        margin: 0px 16px;
    }

    .about-card-customers-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .about-card-customers-title h2 {
        font-size: 2.5rem;
    }

    .about-card-customers-title p {
        font-size: 1.5rem;
        line-height: 1.8rem;
        text-align: left;
    }

    .about-card-customers-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-card-customers-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

.about-card-quote {
    margin: 96px auto;
}

.about-card-quote_card {
    height: 464px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 24px;
    background-color: #061f20;
    overflow: hidden;
}

.about-card-quote_card-left {
    width: 800px;
    height: 464px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-quote_card-left span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
}

.about-card-quote_card-left p {
    font-size: 24px;
    color: #fff;
    margin-top: 32px;
    line-height: 32px;
    font-weight: normal;
}

.about-card-quote_card-left div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}

.about-card-quote_card-left div strong {
    font-size: 18px;
    color: #fff;
}

.about-card-quote_card-left div small {
    color: #e5e7eb;
}

.about-card-quote_card-left ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 32px;
}

.about-card-quote_card-left ul li {
    width: 10px;
    height: 10px;
    background-color: #6c737f;
    border-radius: 50%;
    cursor: pointer;
}

.about-card-quote_card-left ul .pagination-active {
    width: 32px;
    height: 10px;
    border-radius: 4px;
    background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-card-quote {
        margin: 64px 40px;
    }

    .about-card-quote_card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-card-quote_card-left {
        flex: 1;
        width: 100%;
    }

    .about-card-quote_card-left p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-card-quote_card-left div strong {
        font-size: 1.5rem;
    }

    .about-card-quote_card-left div small {
        font-size: 1.3rem;
    }

    .about-card-quote_card-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f9fafb !important;
    }
}

@media (max-width: 767px) {
    .about-card-quote {
        margin: 64px 16px;
    }

    .about-card-quote_card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-card-quote_card-left {
        flex: 1;
        width: 100%;
        padding: 32px;
    }

    .about-card-quote_card-left p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .about-card-quote_card-left div strong {
        font-size: 1.2rem;
    }

    .about-card-quote_card-left div small {
        font-size: 1.1rem;
    }

    .about-card-quote_card-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f9fafb;
    }
}

.hero-pages_contact-info {
    margin-top: 96px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
}

.hero-pages_contact-info_card {
    width: 350px;
    height: 182px;
    border-radius: 16px;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hero-pages_contact-info_card img {
    width: 56px;
    height: 56px;
    margin-top: -66px;
}

.hero-pages_contact-info_card h2 {
    font-size: 20px;
    font-weight: medium;
    color: #061f20;
}

.hero-pages_contact-info_card p {
    color: #6c737f;
    font-size: 16px;
    font-weight: medium;
}

.hero-pages_contact-info_card a {
    color: #006f72;
    font-size: 16px;
    font-weight: medium;
    line-height: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-pages_contact-info {
        margin: 128px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 96px;
    }

    .hero-pages_contact-info_card {
        width: 500px;
        height: 202px;
    }

    .hero-pages_contact-info_card img {
        width: 64px;
        height: 64px;
        margin-top: -66px;
    }

    .hero-pages_contact-info_card h2 {
        font-size: 2rem;
    }

    .hero-pages_contact-info_card p {
        font-size: 1.5rem;
    }

    .hero-pages_contact-info_card a {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-pages_contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-pages_contact h1 {
        text-align: center;
        padding-top: 96px;
    }

    .hero-pages_contact-info {
        margin: 128px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 96px;
    }

    .hero-pages_contact-info_card {
        width: 100%;
        height: 202px;
    }

    .hero-pages_contact-info_card img {
        width: 64px;
        height: 64px;
        margin-top: -66px;
    }

    .hero-pages_contact-info_card h2 {
        font-size: 1.7rem;
    }

    .hero-pages_contact-info_card p {
        font-size: 1.3rem;
    }

    .hero-pages_contact-info_card a {
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

.contact-card_form {
    padding-top: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card_form-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    text-align: center;
}

.contact-card_form-title h2 {
    font-size: 36px;
    color: #061f20;
    font-weight: 600;
}

.contact-card_form-title p {
    color: #6c737f;
    font-size: 16px;
    font-weight: medium;
}

.contact-card_form-content {
    padding-top: 64px;
    padding-bottom: 64px;
    width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .contact-card_form-title h2 {
        font-size: 3rem;
    }

    .contact-card_form-title p {
        font-size: 1.5rem;
    }

    .contact-card_form-content {
        width: 700px !important;
    }
}

@media (max-width: 767px) {
    .contact-card_form {
        padding: 96px 16px 0px;
    }

    .contact-card_form-title h2 {
        font-size: 2.5rem;
    }

    .contact-card_form-title p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .contact-card_form-content {
        width: 100% !important;
    }
}

.faq-card_tabs {
    width: 768px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 96px auto;
}

.faq-card_tabs .tabcontent {
    display: none;
}

.faq-card_tabs .section-active {
    color: #1f2a37;
    border-bottom: 2px solid #1f2a37;
}

.faq-card_tabs .active {
    display: block;
}

.faq-card_tabs-title .faq_mobile_selectbox {
    display: none;
}

.faq-card_tabs-title ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.faq-card_tabs-title ul li {
    color: #6c737f;
    padding: 12px;
    cursor: pointer;
}

.faq-card_tabs-content {
    margin-top: 64px;
}

.faq-card_tabs-content .card-faq__content-text__explain {
    border-radius: 16px;
    border: 1px solid #e9ac10;
    display: flex;
    flex-direction: row;
}

.faq-card_tabs-content .card-faq__content-text__explain-icon {
    flex: 1;
    padding-top: 3px;
}

.faq-card_tabs-content .card-faq__content-text__explain-icon img {
    width: 24px !important;
    height: 24px !important;
}

.faq-card_tabs-content .card-faq__content-text__explain-text {
    flex: 11;
}

.faq-card_tabs-content ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.faq-card_tabs-content ul li {
    display: flex;
    flex-direction: column;
}

.faq-card_tabs-content ul li div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.faq-card_tabs-content ul li div h6 {
    padding-left: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .faq-card_tabs {
        width: 768px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 96px auto;
    }

    .faq-card_tabs-title ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .faq-card_tabs-title ul li {
        font-size: 1.5rem;
        color: #6c737f;
        padding: 12px;
        cursor: pointer;
    }

    .faq-card_tabs-title ul .section-active {
        color: #1f2a37;
        border-bottom: 2px solid #1f2a37;
    }

    .faq-card_tabs-content {
        margin-top: 64px;
    }

    .faq-card_tabs-content .card-faq__content-text__explain {
        border-radius: 16px;
        border: 1px solid #e9ac10;
        display: flex;
        flex-direction: row;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-icon {
        flex: 1;
        padding-top: 3px;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-icon img {
        width: 36px !important;
        height: 36px !important;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-text {
        flex: 11;
    }

    .faq-card_tabs-content ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding: 10px;
    }

    .faq-card_tabs-content ul li {
        margin: 32px 0px;
        display: flex;
        flex-direction: column;
    }

    .faq-card_tabs-content ul li div {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .faq-card_tabs-content ul li div img {
        flex: 1;
        width: 32px;
        height: 32px;
    }

    .faq-card_tabs-content ul li div h6 {
        flex: 11;
        font-size: 1.5rem;
    }

    .faq-card_tabs-content ul li p {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 100 !important;
        padding-left: 110px;
    }
}

@media (max-width: 767px) {
    .faq-card_tabs {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 96px auto 0px;
    }

    .faq-card_tabs-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 16px;
    }

    .faq-card_tabs-title .faq_mobile_selectbox {
        display: block;
    }

    .faq-card_tabs-title ul {
        display: none;
    }

    .faq-card_tabs-content {
        margin: 64px 16px;
    }

    .faq-card_tabs-content .card-faq__content-text__explain {
        border-radius: 16px;
        border: 1px solid #e9ac10;
        display: flex;
        flex-direction: row;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-icon {
        flex: 1;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-icon img {
        width: 36px !important;
        height: 36px !important;
        margin-top: -5px;
    }

    .faq-card_tabs-content .card-faq__content-text__explain-text {
        flex: 11;
    }

    .faq-card_tabs-content ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding: 10px;
    }

    .faq-card_tabs-content ul li {
        margin: 24px 0px;
        display: flex;
        flex-direction: column;
    }

    .faq-card_tabs-content ul li div {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .faq-card_tabs-content ul li div img {
        flex: 1;
        width: 26px;
        height: 26px;
    }

    .faq-card_tabs-content ul li div h6 {
        flex: 11;
        font-size: 1.3rem;
        padding-left: 10px;
    }

    .faq-card_tabs-content ul li p {
        font-size: 1.2rem;
        line-height: 1.7rem;
        font-weight: 100 !important;
    }
}

.dropdown_menu {
    width: 947px;
    position: absolute;
    background: #fff;
    height: 340px;
    top: 80px;
    left: 15%;
    border-radius: 16px;
    padding: 20px;
    display: grid;
    align-content: center;
}

.dropdown_menu ul li:before {
    content: "";
    width: 32px;
    height: 32px;
    background: url('../../assets/img/stars-02.svg');
    background-repeat: no-repeat;
    background-position: left;
}

.dropdown_menu ul li {
    width: 90%;
    padding-left: 15px;
    height: 40px;
    background-origin: padding-box;
    cursor: pointer;
}

.dropdown_menu ul a {
    color: #000000 !important;
}

.dropdown_menu ul a:visited {
    color: #000000;
}

.dropdown_menu ul {
    display: grid;
    grid-template-columns: repeat(3, 5fr);
    grid-template-rows: 1fr 1fr 1fr;
    gap: 24px 0px;
    z-index: 1;
}

.dropdown_menu ul li:hover {
    background: #fffdd0;
    background-repeat: no-repeat;
    background-position: left;
}

.d-none {
    display: none !important;
}

.d-n {
    display: none !important;
    transition: 0.5;
}


span.mobile_menu_star {
    width: 16px !important;
    height: 16px !important;
    background: url('/assets/img/stars-02.svg') no-repeat;
    float: left;
    margin-top: 1px;
}

span.mobile_menu_star_1 {
    width: 16px !important;
    height: 16px !important;
    background: url('/assets/img/stars-02.svg') no-repeat;
    float: left;
    margin-top: 1px;
}

ul.mobile_sub_menu {
    padding: 0px !important;
}

.mobile_sub_menu li {
    text-indent: 10px !important;
    display: flex;
    align-items: center;
    align-content: center;
}

.mobile_sub_menu li {
    margin-left: 15px;
}

.mobile_sub_menu li a {
    padding: 0px !important;
}

li.sub_dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
}

@media screen and (max-width: 769px) {
    .musicsolutionimg {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .features-card-managerapps_text > h3 {
        font-size: 19px;
        font-weight: bold;
    }
}

@media screen and (max-width: 768px) {
    .features-card-sonos_bottom {
        margin: 25px;
    }
}

html, body { width: 100%; overflow-x: hidden }

.app-switch {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 16px;
}

.app-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.app-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff33;
  -webkit-transition: .4s;
  transition: .4s;
}

.app-slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;  
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .app-slider {
  background-color: #42be65;
}

input:focus + .app-slider {
  box-shadow: 0 0 1px #42be65; 
}

input:checked + .app-slider:before {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
}

/* Rounded sliders */ 
.app-slider.round {
  border-radius: 34px;
}

.app-slider.round:before {
  border-radius: 50%; 
}

@media (max-width: 575px) {
   	.sign-container .sign-form_left-content, .sign-container .sign-form_left, .sign-container .sign-form_left {
		height: auto
	}

	.sign-container .sign-form_left, .sign-container {
		align-items: flex-start
	}
	
	.sign-container .sign-form {
		overflow: visible;
	}
}
