:root {
    --red: #ff4000;
}
.container {
    margin: 0 1.6rem;
}

@media screen and (min-width: 1024px) {
    .container {
        margin: 0 auto;
        width: 984px;
    }
}

/* ------------------------------- contact-us ---------------------------- */
.contact-us {
}

.contact-us__container h2 {
    text-align: left;
    margin-bottom: 3.2rem;
}

.contact-us-form__line {
    margin-bottom: 2.4rem;
    background: #4c4c4c;
    border: 2px solid rgba(29, 29, 29, 0.2);
}

.contact-us-form__label {
    color: rgba(255, 255, 255, 0.5);
}

.contact-us-form__input {
    color: #fff;
}

.contact-us-form__textarea {
    margin-bottom: 2.4rem;
    background: #4c4c4c;
    border: 2px solid rgba(29, 29, 29, 0.2);
}

.contact-us-form__textarea textarea {
    color: #fff;
}

.contact-us-form__btns {
    display: flex;
    justify-content: flex-end;
}

.contact-us-form__btn button {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.8rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--black);
    padding: 1.9rem 2.4rem;
    background: #fff;
    border-radius: 2.8rem;
    -webkit-border-radius: 2.8rem;
    -moz-border-radius: 2.8rem;
    -ms-border-radius: 2.8rem;
    -o-border-radius: 2.8rem;
}

.contact-us-form__btn .dot {
    background-color: var(--black);
}

.contact-us-form__line.select-box {
    position: relative;
}

.contact-us-form__line.select-box select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.contact-us-form__line.select-box::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    top: 50%;
    right: 2.2rem;
    background: url(../img/arrowdown.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    pointer-events: none;
}

.contact-us-form__line.select-box .form-select::-ms-expand {
    display: none;
}

.contact-us-form__file {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-us-form__file input {
    display: none;
}

.form-file {
}

.contact-us-form__file__icon {
    width: 5.6rem;
    height: 5.6rem;
    background: var(--black);
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease-out;
    -webkit-transition: background 150ms ease-out;
    -moz-transition: background 150ms ease-out;
    -ms-transition: background 150ms ease-out;
    -o-transition: background 150ms ease-out;
}

.contact-us-form__file._active .contact-us-form__file__icon {
    background: #dd363c;
}

.contact-us-form__file__icon svg {
    width: 2rem;
    height: 2rem;
    transition: transform 150ms ease-out;
    -webkit-transition: transform 150ms ease-out;
    -moz-transition: transform 150ms ease-out;
    -ms-transition: transform 150ms ease-out;
    -o-transition: transform 150ms ease-out;
}

.contact-us-form__file._active .contact-us-form__file__icon svg {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.contact-us-form__file__name {
    font-family: var(--openSans);
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--black);
    padding-left: 0.8rem;
}

.contact-us-form__btn {
}

@media screen and (min-width: 1024px) {
    .contact-us__container h2 {
        margin-bottom: 32px;
        max-width: 713px;
    }

    .contact-us-form__row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 24px;
        margin-bottom: 24px;
    }

    .contact-us-form__line {
        margin-bottom: 0;
    }

    .contact-us-form__textarea {
        margin-bottom: 24px;
        height: 173px;
    }

    .contact-us-form__textarea textarea {
        height: 135px;
    }

    .contact-us-form__btn button {
        font-size: 18px;
        line-height: 100%;
        padding: 19px 24px;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        cursor: pointer;
    }

    .contact-us-form__line.select-box {
        margin-bottom: 24px;
    }

    .contact-us-form__line.select-box::after {
        width: 12px;
        height: 12px;
        right: 22px;
    }

    .contact-us-form__file {
        margin-bottom: 0;
        cursor: pointer;
    }

    .contact-us-form__file__icon {
        width: 56px;
        height: 56px;
    }

    .contact-us-form__file__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-us-form__file__name {
        font-size: 18px;
        line-height: 150%;
        padding-left: 8px;
    }

    .contact-us-form__box {
        display: flex;
        justify-content: space-between;
    }
}

/* ------------------------------- contact-us ---------------------------- */

/* -------------------- thor-app ---------------------------------------- */

.thor-app {
    margin-bottom: 16rem;
}

.thor-app__image {
    display: none;
}

.thor-app__image img {
    width: 100%;
}

.thor-app__item__image img {
    width: 100%;
}

.thor-app__item:not(:last-child) {
    margin-bottom: 16rem;
}

.thor-app__item__image {
    margin-bottom: 4rem;
}

.thor-app__item__label {
    margin-bottom: 7.6rem;
}

.p-wrap {
    display: none;
}

.panel-text {
    padding: 0 1.6rem;
}

.panel-text:not(:last-child) {
    margin-bottom: 16rem;
}

.panel-textCenter__image {
    margin-bottom: 4rem;
}

.panel-textCenter__image img {
    width: 100%;
}

.panel-textCenter h2 {
    margin-bottom: 1.6rem;
}

.panel-textCenter p {
    font-family: var(--openSans);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.panel-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: center;
    width: 25rem;
    margin: 3.2rem auto 0;
    z-index: 1;
}
.panel-link {
    cursor: pointer;
    text-align: center;
    flex: 0 1 calc(50% - 20px);
    max-width: 50%;
}
.panel-link-icon {
    width: 11rem;
    height: auto;
    aspect-ratio: 12.5 / 3.7;
}

@media screen and (min-width: 1024px) {
    .thor-app {
        margin-top: 700px;
    }

    .body-for-partners .thor-app {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .text-wrap {
        position: sticky;
        width: 52%;
        height: 100vh;
        top: 0;
    }

    .body-for-partners .text-wrap {
        position: unset;
        width: 100%;
        height: unset;
        top: unset;
    }

    .panel-text {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        transform: translateY(40%);
        opacity: 0;
        transition: 0.8s;
    }

    .body-for-partners .panel-text {
        position: unset;
        left: unset;
        top: unset;
        right: unset;
        bottom: unset;
        z-index: 1;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        padding: 0;
    }

    .panel-text:not(:last-child) {
        margin-bottom: 0;
    }

    .body-for-partners .panel-text:not(:last-child) {
        margin-bottom: 120px;
    }

    .panel-text p {
        font-size: 26px;
        line-height: 150%;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .panel-textCenter {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateY(-20%);
        text-align: left;
    }

    .body-for-partners .panel-textCenter {
        height: unset;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .panel-textCenter__image {
        display: none;
    }

    .body-for-partners .panel-textCenter__image {
        display: block;
    }

    .body-for-partners .panel-textCenter__image img {
        width: 327px;
    }

    .body-for-partners .panel-textCenter__info {
        width: 50%;
    }

    .panel-textCenter h2 {
        text-align: left;
        width: 100%;
        margin-bottom: 40px;
    }

    .p-wrap {
        display: block;
        position: sticky;
        top: 0;
        /* width: 35vh; */
        height: 100vh;
        width: 50%;
    }

    .panel {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        opacity: 0;
        display: flex;
        align-items: center;
        width: 35vh;
        transition: opacity 0.8s;
    }

    .panel:first-of-type {
        opacity: 1;
        transform: translateX(50%);
        right: 100%;
    }

    .panel img {
        width: 100%;
    }

    .panel:first-of-type img {
        transform: scale(2.6);
        -webkit-transform: scale(2.6);
        -moz-transform: scale(2.6);
        -ms-transform: scale(2.6);
        -o-transform: scale(2.6);
    }

    .for-partners-page .panel:first-of-type img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    .thor-app__container {
        display: flex;
        height: 400vh;
        justify-content: space-between;
        position: relative;
    }

    .body-for-partners .thor-app__container {
        height: unset;
    }

    .body-for-partners .js_anim_transitionY {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    .panel-links-wrapper {
        order: 2;
        margin-top: 60px;
        gap: 20px;
        justify-content: start;
        width: 310px;
    }
    .panel-link-icon {
        width: auto;
        height: 40px;
    }
}

/* -------------------- thor-app END ---------------------------------------- */

/* -------------------- smart-control --------------------------------- */

.smart-control {
    margin-bottom: 16rem;
}

.smart-control__container {
}

.smart-control__title span {
    display: block;
}

.smart-control__box {
    margin: 6.4rem 0 0;
}

.smart-control__image {
    position: relative;
    margin-bottom: 1.6rem;
}

.smart-control__image__ {
    width: 100%;
    height: 100%;
    background: #1d1d1d;
    position: relative;
    z-index: 10;
    border-radius: 1.6rem;
    -webkit-border-radius: 1.6rem;
    -moz-border-radius: 1.6rem;
    -ms-border-radius: 1.6rem;
    -o-border-radius: 1.6rem;
    overflow: hidden;
}

.smart-control__image__ img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -10;
}

.smart-control__image__ img:nth-child(2) {
    display: none;
}

.smart-control__label {
    position: absolute;
    left: 1.6rem;
    bottom: 1.6rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.6;
    z-index: 11;
}

@media screen and (min-width: 1024px) {
    .smart-control {
        margin-bottom: 320px;
    }

    .smart-control__box {
        margin: 112px 0 160px;
    }

    .smart-control__row {
        display: flex;
        margin-bottom: 24px;
    }

    .smart-control__row .smart-control__image:nth-child(1) {
        margin-right: 24px;
    }

    .smart-control__image {
        width: calc((100% - 24px) / 2);
        height: 520px;
        margin-bottom: 0;
    }

    .smart-control__image__ {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
    }

    .smart-control__image__first {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .smart-control__image.smart-watch {
        width: 354px;
    }

    .smart-control__image.standard-control-btn {
        width: 606px;
    }

    .smart-control__image.app {
        width: 560px;
    }

    .smart-control__image.drive-select {
        width: 400px;
    }

    .min-row .smart-control__image {
        height: 313px;
    }

    .smart-control__label {
        left: 16px;
        bottom: 16px;
        font-size: 20px;
        line-height: 150%;
    }

    .smart-control__image__ img:nth-child(2) {
        display: inherit;
    }

    .smart-control__image__ img:first-child {
        display: none;
    }

    .smart-control__image__ .smart-control__image__desk {
        width: 251px;
        transform: scale(0.7);
    }

    .smart-control__image__2 {
        background: rgb(85 85 85);
        display: flex;
        align-items: center;
    }

    .smart-control__image__ .smart-control__image__2_desk {
        transform: translateX(300px);
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -ms-transform: translateX(300px);
        -o-transform: translateX(300px);
    }

    .body-for-partners .smart-control__image__ .smart-control__image__2_desk {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    .smart-control__image__3 {
        background: #ff4000;
    }

    .smart-control__image__ .smart-control__image__3_desk {
        width: 415px;
        transform: translate(177px, 247px);
        -webkit-transform: translate(177px, 247px);
        -moz-transform: translate(177px, 247px);
        -ms-transform: translate(177px, 247px);
        -o-transform: translate(177px, 247px);
    }

    .body-for-partners .smart-control__image__ .smart-control__image__3_desk {
        transform: translate(177px, 47px);
        -webkit-transform: translate(177px, 47px);
        -moz-transform: translate(177px, 47px);
        -ms-transform: translate(177px, 47px);
        -o-transform: translate(177px, 47px);
    }

    .smart-control__image__4 {
        background: rgb(29 29 29);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .smart-control__image__4 span {
        background: rgb(29 29 29);
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .body-for-partners .smart-control__image__4 span {
        background-color: transparent;
    }

    .smart-control__image__ .smart-control__image__4_desk {
        transform: scale(0.7);
    }

    .smart-control__image__5 {
    }

    .smart-control__image__ .smart-control__image__5_desk {
        transform: scale(1.4);
    }

    .smart-control__image__6 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .smart-control__image__ .smart-control__image__6_desk {
        width: 223px;
        transform: scale(0.8);
    }
}

/* -------------------- smart-control END --------------------------------- */

/* ------------------------ app-main-banner ------------------------ */

.app-main-banner {
    margin-top: 10rem;
    position: relative;
    margin-bottom: 36.8rem;
}
.app-main-banner__container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.app-main-banner__mob-img {
    width: 72.5rem;
    height: 72.5rem;
    position: absolute;
    top: -9.4rem;
    left: -18.6rem;
}
.app-main-banner__img {
    display: none;
}
.app-main-banner__title {
    display: inline;
    font-size: 4.8rem;
    line-height: 88.7%;
    letter-spacing: -0.02em;
    color: var(--white);
    text-align: center;
    z-index: 1;
}
.app-main-banner__text {
    width: 34.3rem;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    z-index: 1;

    margin-top: 40rem;
}
.app-main-banner__thor-icon {
    display: inline;
    width: 3.3rem;
    height: 3.2rem;
}
.app-main-banner-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: center;
    margin-top: 3.2rem;
    z-index: 1;
    width: 25rem;
}
.orange-btn {
    width: fit-content;
    display: inline-flex;
    padding: 1.2rem 1.6rem;
    color: var(--white);
    background-color: var(--red);
    border-radius: 2.8rem;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 150%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-family: var(--openSans);
}

@media screen and (min-width: 1024px) {
    .app-main-banner__container {
        /* margin-left: 228px; */
        align-items: start;
        gap: 54px;
    }
    .app-main-banner__title {
        margin-top: 273px;
        text-align: left;
        font-size: 68px;
        order: 1;
    }
    .app-main-banner__thor-icon {
        width: 46px;
        height: 44px;
    }
    .app-main-banner__text {
        margin-top: 0;
        font-size: 18px;
        text-align: left;
        order: 3;
    }

    .app-main-banner__mob-img {
        display: none;
    }
    .app-main-banner__img {
        display: block;
        position: absolute;
        top: -300px;
        right: -350px;
    }
    .app-main-banner {
        margin-top: 0;
    }
    .app-main-banner-links-wrapper {
        margin-top: 0;
        order: 2;
        gap: 20px;
        justify-content: start;
        width: 310px;
    }
    .orange-btn {
        font-size: 18px;
        line-height: 100%;
        padding: 20px 24px;
        border-radius: 28px;
        -webkit-border-radius: 28px;
        -moz-border-radius: 28px;
        -ms-border-radius: 28px;
        -o-border-radius: 28px;
    }
}

/* ------------------------ app-main-banner ------------------------ */

.video-block-box {
    padding: 0;
}

.sound-laboratory__title {
    margin-bottom: 32px;
}


/* ------------- thor-app-server ------------------ */

.thor-app-server {
    margin: 18.5rem 1.6rem 27.5rem;
    display: flex;
    flex-flow: column;
    gap: 8rem;
}
.thor-app-server-text-container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
}
.thor-app-server-text {
    font-family: var(--openSans);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--white);
}
.thor-app-server-info-wrapper{
    display: flex;
    flex-flow: column;
    gap: 2.4rem;
}
.thor-app-server-info{
    width: 34.3rem;
    padding: 1.6rem;
    background: var(--black);
    border-radius: .8rem;
    display: flex;
    flex-flow: column;
    gap: 0.8rem;
}
.thor-app-server-info-title{
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--white);
}
.thor-app-server-info-text{
    font-family: var(--openSans);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    opacity: 0.6;
}

@media screen and (min-width: 1024px) {
    .thor-app-server {
        width: 984px;
        margin: 185px auto 275px;
        gap: 80px;
    }
    .thor-app-server-text {
        width: 720px;
        font-size: 26px;
        line-height: 150%;
    }
    .thor-app-server-info-wrapper{
        flex-flow: row wrap;
        gap: 24px;
    }
    .thor-app-server-info{
        width: 480px;
        height: 233px;
        gap: 8px;
        justify-content: center;
    }
    .thor-app-server-info-title{
        font-size: 32px;
        width: 238px;
    }
    .thor-app-server-info-text{
        font-size: 18px;
    }
}

/* ------------- thor-app-server ------------------ */
