/* #region reset css */
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,*:before,*:after {
    box-sizing: border-box;
}

html,body {
    line-height: 1;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

nav,footer,header,aside,picture {
    display: block;
}

input, button, textarea {
    font-family: inherit;
}

img, video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

button {
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

button[disabled] {
    cursor: default;
}
/* #endregion reset css */

/* #region base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #262626;
}

body.overflow-hidden {
	overflow: hidden;
}

.container {
    min-width: 320px;
    margin: 0 auto;
    padding: 0 16px;
}

section h2 {
    font-family: 'TDMars';
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0;
}

@media (min-width: 375px) {
    section h2 {
        font-size: 25px;
    }
}

@media (min-width: 393px) {
    section h2 {
        font-size: 27px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 54px;
    }

    section h2 {
        font-size: 40px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1332px;
        padding: 0;
    }

    section h2 {
        font-size: 44px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    section h2 {
        font-size: 54px;
    }
}

@media (min-width: 1700px) {
    section h2 {
        font-size: 60px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1900px) {
    .container {
        max-width: 1720px;
    }
}
/* #endregion base */

/* #region utilities */
.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@keyframes lds-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* #endregion utilities */

/* #region elements */
.btn {
    align-items: center;
    border-radius: 100px;
    height: 42px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
	position: relative;
    font-size: 14px;
}

.btn__loading,
.btn__success {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.btn__loading img,
.btn__success img {
	width: 100%;
}

.btn__loading {
	width: 35px;
	height: 35px;
}

.btn--loading .btn__loading {
	display: block;
}

.btn__loading img {
	animation: lds-ring 1.2s linear infinite;
}

.btn__success {
	width: 30px;
	height: 30px;
}

.btn--success .btn__success {
	display: block;
}

.btn--success span,
.btn--loading span {
	opacity: 0;
}

a.btn {
    text-decoration: none;
}

.btn--main {
    background-color: #26BF42;
    color: #ffffff;
    font-weight: 600;
    line-height: 150%;
}

.btn--green-border {
    background-color: transparent;
    border: 1px solid #26BF42;
    color: #ffffff;
    font-weight: 500;
    line-height: 120%;
}

@media (min-width: 393px) {
    .btn {
        height: 56px;
        font-size: 18px;
    }
}

.form-field__input {
    border-radius: 100px;
    background-color: #F5F5F5;
    height: 39px;
    padding: 0 16px;
    width: 100%;
}

.form-field__input--error {
    background-color: #ffdada;
}

.form-policy {
    color: #B3B3B3;
    font-size: 8px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
}

@media (min-width: 375px) {
    .form-field__input {
        height: 58px;
        padding: 0 24px;
        font-family: Roboto;
        font-size: 18px;
        line-height: 120%;
    }
    
    .form-policy {
        font-size: 12px;
    }
}
/* #endregion elements */

/* #region .header */
.header {
    position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    z-index: 100;
}

.header__body {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.header-catalog-btn {
    border: 1px solid #26BF42;
    border-radius: 100px;
    color: #fff;
    height: 33px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    display: none;
    width: 212px;
}

.header-catalog-btn img {
    width: 16px;
    height: 16px;
    flex: 0 1 16px;
}

.header-catalog-btn span {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
}

.header-phone {
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    gap: 6px;
}

.header-phone img {
    width: 20px;
    height: 20px;
}

.header-phone span {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
}

@media (min-width: 375px) {
    .header {
        top: 32px;
    }

    .header-phone {
        gap: 8px;
    }

    .header-phone img {
        width: 24px;
        height: 24px;
    }

    .header-phone span {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .header-catalog-btn {
        display: flex;
    }
}
/* #endregion .header */

/* #region .hero */
.hero {
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    color: #ffffff;
    max-width: 2560px;
    margin: 0 auto;
}

.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.hero__bg img {
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 11;
}

.hero__body {
    padding: 90px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 235px;
    max-width: 480px;
    margin: 0 auto;
}

.hero__head h1 {
    font-family: "TDMars";
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding-top: 6px;
}

.hero__head p {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

@supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
    .hero__head h1,
    .hero__head p {
        background-image: -webkit-linear-gradient(#eee, #333);
        background: linear-gradient(180deg, #FFFFFF 0%, #949494 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__bottom p {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
}

.hero__call-btn {
    margin-top: 26px;
}

.hero__bottom .btn img {
    width: 16px;
    height: 16px;
    flex: 0 1 16px;
}

.hero__catalog-btn {
    margin-top: 10px;
}

.hero__catalog-btn img {
    width: 16px;
    height: 16px;
    flex: 0 1 16px;
}

@media (min-width: 375px) {
    .hero__body {
        padding: 100px 0 54px;
    }

    .hero__head h1 {
        font-size: 45px;
        padding-top: 10px;
    }

    .hero__head p {
        font-size: 22px;
    }

    .hero__bottom p {
        font-size: 16px;
        line-height: 150%;
    }
}

@media (min-width: 393px) {
    .hero__head {
        gap: 14px;
    }

    .hero__head h1 {
        font-size: 46px;
    }

    .hero__head p {
        font-size: 24px;
    }

    .hero__bottom .btn img {
        width: 18px;
    }

    .hero__call-btn {
        margin-top: 28px;
    }

    .hero__catalog-btn {
        margin-top: 12px;
    }
}

@media (min-width: 1024px) {
    .hero__body {
        max-width: initial;
        margin: initial;
        position: relative;
    }

    .hero__head h1 {
        text-align: left;
        font-size: 64px;
    }

    .hero__head p {
        text-align: right;
        position: absolute;
        right: 0;
        bottom: 54px;
        max-width: 454px;
        font-size: 30px;
    }

    .hero__bottom {
        max-width: 440px;
    }

    .hero__bottom p {
        text-align: left;
        font-size: 20px;
    }

    .hero__catalog-btn {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hero__head h1 {
        font-size: 96px;
        padding-top: 18px;
    }

    .hero__head p {
        max-width: 660px;
        font-size: 38px;
        bottom: 74px;
    }

    .hero__body {
        padding: 86px 0 74px;
    }
}

@media (min-width: 1600px) {
    .hero__body {
        padding: 80px 0 100px;
        gap: 310px;
    }

    .hero__head h1 {
        font-size: 120px;
        padding-top: 22px;
    }

    .hero__head p {
        font-size: 56px;
        max-width: 855px;
        bottom: 100px;
    }
}
/* #endregion .hero */

/* #region .imagine */
.imagine {
    position: relative;
    padding: 60px 0 0;
}

.imagine-content__body h2 {
    margin-bottom: 16px;
}

.imagine-content__body p {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0;
}

.imagine-content__body p + p {
    margin-top: 12px;
}

.imagine-pic {
    margin-top: 40px;
}

@media (max-width: 1500px) {
    .imagine-pic .container {
        padding: 0;
    }
}

@media (min-width: 375px) {
    .imagine-content__body h2 {
        margin-bottom: 15px;
    }

    .imagine-content__body p {
        font-size: 16px;
    }

    .imagine-content__body p + p {
        margin-top: 16px;
    }
}

@media (min-width: 393px) {
    .imagine {
        padding: 100px 0 0;
    }
}

@media (min-width: 768px) {
    .imagine-content__body {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .imagine {
        padding: 100px 0;
    }

    .imagine-content {
        position: relative;
        z-index: 11;
    }

    .imagine-content__body {
        margin: 0 0 0 auto;
    }

    .imagine-pic {
        margin: 0;
        position: absolute;
        display: flex;
        align-items: center;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
    }

    .imagine-pic .container {
        width: 100%;
    }

    .imagine-pic__pic {
        max-width: 420px;
    }

    .imagine-pic img {
        border-radius: 0 20px 20px 0;
    }
}

@media (min-width: 1100px) {
    .imagine {
        padding: 120px 0;
    }

    .imagine-pic__pic {
        max-width: 480px;
    }
}

@media (min-width: 1200px) {
    .imagine-pic__pic {
        max-width: 500px;
    }
}

@media (min-width: 1300px) {
    .imagine {
        padding: 190px 0;
    }

    .imagine-pic__pic {
        max-width: 630px;
    }
}

@media (min-width: 1400px) {
    .imagine-content__body {
        margin: 0 50px 0 auto;
        max-width: 580px;
    }
}

@media (min-width: 1400px) and (max-width: 1499px) {
    .imagine-pic .container {
        max-width: initial;
    }
}

@media (min-width: 1500px) and (max-width: 1599px) {
    .imagine-pic__pic img {
        border-radius: 20px;
    }
}

@media (min-width: 1600px) {
    .imagine-content__body {
        max-width: 720px;
    }

    .imagine-content__body h2 {
        margin-bottom: 24px;
    }

    .imagine-content__body p {
        font-size: 18px;
    }

    .imagine-content__body p + p {
        margin-top: 24px;
    }

    .imagine-pic__pic {
        max-width: 710px;
    }

    .imagine-pic__pic img {
        border-radius: 0 40px 40px 0;
    }
}

@media (min-width: 1600px) and (max-width: 1999px) {
    .imagine-pic .container {
        max-width: initial;
    }
}

@media (min-width: 1700px) {
    .imagine-content__body {
        max-width: 775px;
    }
}

@media (min-width: 1800px) {
    .imagine {
        padding: 259px 0;
    }

    .imagine-pic__pic {
        max-width: 780px;
    }
}

@media (min-width: 1900px) {
    .imagine-content__body {
        margin: 0 68px 0 auto;
    }

    .imagine-pic__pic {
        max-width: 838px;
    }
}

@media (min-width: 2000px) {
    .imagine-content__body {
        margin: 0 0 0 auto;
    }

    .imagine-pic__pic img {
        border-radius: 40px;
    }
}
/* #endregion .imagine */

/* #region .catalog-select */
.catalog-select {
    border: 1px solid #262626;
    border-radius: 100px;
    position: relative;
}

.catalog-select select {
    appearance: none;
    background-color: transparent;
    border-radius: 100px;
    color: inherit;
    display: block;
    padding: 0 24px;
    height: 54px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
}

.catalog-select__arrow {
    background-color: #ffffff;
    border-radius: 0 100px 100px 0;
    position: absolute;
    width: 45px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    z-index: 10;
    user-select: none;
    pointer-events: none;
}

.catalog-select__icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

@media (min-width: 375px) {
    .catalog-select select {
        height: 60px;
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .catalog-select select {
        font-size: 20px;
    }
}
/* #endregion .catalog-select */

/* #region .catalog-item */
.catalog-item {
    align-items: center;
    display: flex;
    gap: 16px;
    padding: 8px;
}

.catalog-item__picture {
    flex: 0 1 120px;
    height: 170px;
}

.catalog-item__picture img {
    height: 100%;
    object-fit: cover;
}

.catalog-item__content {
    flex: 1;
}

.catalog-item__title {
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0px;
}

.catalog-item__price {
    color: #818698;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-top: 6px;
}

.catalog-item__text {
    color: #818698;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-top: 4px;
}

@media (min-width: 375px) {
    .catalog-item__title {
        font-size: 18px;
    }

    .catalog-item__price {
        font-size: 14px;
    }

    .catalog-item__text {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .catalog-item {
        align-items: flex-start;
    }

    .catalog-item__content {
        padding-top: 12px;
    }
}

@media (min-width: 1600px) {
    .catalog-item__picture {
        flex: 0 1 180px;
        height: 214px;
    }

    .catalog-item__title {
        font-size: 24px;
        line-height: 24px;
    }

    .catalog-item__price {
        margin-top: 12px;
        font-size: 16px;
        line-height: 22px;
    }

    .catalog-item__text {
        font-size: 16px;
        line-height: 22px;
    }
}
/* #endregion .catalog-item */

/* #region .catalog */
.catalog {
    padding: 60px 0 30px;
}

.catalog__head {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.catalog__head h2 {
    text-align: center;
}

.catalog__body {
    margin-top: 24px;
}

.catalog__list {
    gap: 12px;
    display: none;
    flex-wrap: wrap;
}

.catalog__list .catalog-item {
    flex: 0 1 100%;
    display: none;
}

.catalog__list .catalog-item:nth-child(-n + 4) {
    display: flex;
}

.catalog--show-all-items .catalog-item {
    display: flex;
}

.catalog__list--show {
    display: flex;
}

.catalog__show-more {
    margin-top: 12px;
}

.catalog--show-all-items .catalog__show-more,
.catalog__body--multimedia-i-razvlecheniya .catalog__show-more {
    display: none;
}

.catalog__show-more button {
    color: #26BF42;
    font-size: 13.03px;
    line-height: 17.91px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
}

@media (min-width: 375px) {
    .catalog {
        padding: 100px 0 50px;
    }

    .catalog__body {
        margin-top: 50px;
    }
}

@media (min-width: 768px) {
    .catalog__head .catalog-select {
        max-width: 376px;
        width: 100%;
        margin: 0 auto;
    }

    .catalog__list .catalog-item {
        flex: 0 1 calc(50% - 6px);
    }
}

@media (min-width: 1024px) {
    .catalog {
        padding: 50px 0;
    }

    .catalog__head {
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
    }

    .catalog__head h2 {
        text-align: left;
        flex: 1;
    }

    .catalog__head .catalog-select {
        margin: 0;
        flex: 0 1 376px;
    }
}

@media (min-width: 1100px) {
    .catalog__list .catalog-item {
        flex: 0 1 calc(33.3333333333% - 8px);
        display: flex;
    }

    .catalog__show-more {
        display: none;
    }
}

@media (min-width: 1600px) {
    .catalog {
        padding: 100px 0;
    }

    .catalog__body {
        margin-top: 100px;
    }

    .catalog__list {
        gap: 24px;
    }

    .catalog__list .catalog-item {
        flex: 0 1 calc(33.3333333333% - 16px);
        display: flex;
    }
}
/* #endregion .catalog */

/* #region .foryou */
.foryou {
    padding: 30px 0 60px;
}

.foryou__head h2 {
    text-align: center;
}

.foryou__list {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 405px;
    margin: 40px auto 0;
}

.foryou-item__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.foryou-item h3 {
    margin-top: 13px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
}

.foryou-item p {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0;
    margin-top: 5px;
}

@media (min-width: 375px) {
    .foryou {
        padding: 50px 0 120px;
    }

    .foryou__list {
        margin-top: 60px;
    }

    .foryou-item__icon {
        width: 48px;
        height: 48px;
    }

    .foryou-item h3 {
        font-size: 18px;
    }

    .foryou-item p {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .foryou__list {
        margin: 60px 0 0;
        max-width: initial;
        flex-direction: row;
    }

    .foryou-item {
        flex: 0 1 calc(33.3333333333% - 13.333px);
    }

    .foryou-item h3 {
        margin-top: 24px;
    }

    .foryou-item p {
        margin-top: 12px;
    }
}

@media (min-width: 1024px) {
    .foryou-item h3 {
        font-size: 20px;
    }
}

@media (min-width: 1400px) {
    .foryou__list {
        max-width: 1300px;
        margin: 60px auto 0;
    }
}

@media (min-width: 1600px) {
    .foryou {
        padding: 100px 0;
    }

    .foryou__list {
        max-width: 1663px;
        margin: 80px auto 0;
        gap: 48px;
    }

    .foryou-item {
        flex: 0 1 calc(33.3333333333% - 32px);
    }

    .foryou-item h3 {
        font-size: 24px;
    }

    .foryou-item p {
        margin-top: 24px;
        font-size: 18px;
    }
}
/* #endregion .foryou */

/* #region .solution */
.solution {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 81px 0 60px;
    position: relative;
}

.solution__bg {
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.solution__bg img {
    height: 100%;
    object-fit: cover;
}

.solution .container {
    position: relative;
    z-index: 11;
}

.solution__body {
    display: flex;
    flex-direction: column;
    gap: 240px;
    max-width: 425px;
    margin: 0 auto;
}

.solution__head h2 {
    font-family: "TDMars";
    text-align: center;
    font-size: 26px;
}

.solution__footer {
    text-align: center;
}

.solution__footer h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
}

@supports (-webkit-text-fill-color: transparent) and (-webkit-background-clip: text) {
   .solution__head h2 {
        background: linear-gradient(180deg, #FFFFFF 0%, #949494 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .solution__footer h3 {
        background-image: linear-gradient(180deg, #FFFFFF 0%, #949494 157.84%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.solution__footer p {
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0;
    margin-top: 10px;
}

.solution__btn {
    margin-top: 23px;
}

.solution__btn img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

@media (min-width: 375px) {
    .solution {
        padding: 100px 0 64px;
    }

    .solution__body {
        gap: 287px;
    }

    .solution__head h2 {
        font-size: 32px;
    }

    .solution__footer h3 {
        font-size: 24px;
        line-height: 130%;
    }

    .solution__footer p {
        font-size: 16px;
    }

    .solution__btn {
        margin-top: 28px;
    }
}

@media (min-width: 393px) {
    .solution__head h2 {
        font-size: 34px;
    }
}

@media (min-width: 768px) {
    .solution__body {
        max-width: initial;
        gap: 54px;
    }

    .solution__footer {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .solution {
        padding: 120px 0;
    }

    .solution__body {
        flex-direction: row;
        align-items: center;
    }

    .solution__head {
        flex: 1;
    }

    .solution__head h2 {
        text-align: left;
    }

    .solution__footer {
        text-align: left;
        max-width: 435px;
        flex: 0 1 435px;
    }

    .solution__footer h3 {
        font-size: 44px;
    }
}

@media (min-width: 1300px) {
    .solution__head h2 {
        font-size: 36px;
    }
}

@media (min-width: 1400px) {
    .solution {
        padding: 150px 0;
    }

    .solution__head h2 {
        font-size: 38px;
    }
}

@media (min-width: 1600px) {
    .solution__head h2 {
        font-size: 50px;
    }

    .solution__footer {
        max-width: 490px;
        flex: 0 1 490px;
    }

    .solution__footer h3 {
        font-size: 56px;
        line-height: 130%;
    }

    .solution__footer p {
        font-size: 18px;
        margin-top: 12px;
    }
}

@media (min-width: 1800px) {
    .solution {
        padding: 200px 0;
    }

    .solution__body {
        padding: 0 50px 0 0;
    }
}
/* #endregion .solution */

/* #region .dialog */
.dialog {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 150;
    padding: 0 16px;
}

.dialog--open {
    display: flex;
}

.dialog,
.dialog__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.dialog__backdrop {
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(12px);
}

.dialog__content {
    position: relative;
    z-index: 2;
    overflow: auto;
    padding: 24px 0;
}

.dialog__close {
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: 8px;
    width: 20px;
    height: 20px;
    z-index: 20;
}

.dialog__close svg {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (min-width: 1024px) {
    .dialog__content {
        overflow: visible;
        padding: 0;
    }

    .dialog__close {
        top: 0;
        right: -56px;
        width: 40px;
        height: 40px;
    }

    .dialog__close svg path {
        fill: #ffffff;
    }
}
/* #endregion .dialog */

/* #region .dialog-callback, .dialog-success */
.dialog-callback,
.dialog-success {
    background-color: #FFFFFF;
    width: 244px;
    border-radius: 12px;
    padding: 24px 21px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.dialog-callback__head h2,
.dialog-success__head h2 {
    font-family: 'TDMars';
    font-size: 20px;
    line-height: 19.05px;
    letter-spacing: 0;
    text-align: center;
}

.dialog-callback__head p,
.dialog-success__head p {
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    margin-top: 8px;
}

.dialog-callback__form .form-field + .form-field,
.dialog-callback__form .form-field + .btn {
    margin-top: 8px;
}

.dialog-callback__form .form-policy {
    margin-top: 8px;
}

@media (min-width: 375px) {
    .dialog-callback,
    .dialog-success {
        width: 359px;
        padding: 32px;
        gap: 12px;
    }

    .dialog-callback__head h2,
    .dialog-success__head h2  {
        font-size: 28px;
        line-height: 28px;
    }

    .dialog-callback__head p,
    .dialog-success__head p {
        font-size: 16px;
        line-height: 120%;
        margin-top: 12px;
    }

    .dialog-callback__form .form-field + .form-field,
    .dialog-callback__form .form-field + .btn {
        margin-top: 12px;
    }

    .dialog-callback__form .form-policy {
        margin-top: 12px;
    }
}

@media (min-width: 1024px) {
    .dialog-callback,
    .dialog-success {
        width: 426px;
    }
}
/* #endregion .dialog-callback, .dialog-success */


