*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.15;
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5
}

ol, ul {
    list-style: none
}

a {
    text-decoration: none;
    color: inherit
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    background: none;
    outline: none
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

p {
    margin: 0
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button {
    cursor: pointer
}

:focus {
    outline: none
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Montserrat-Light.eot');
    src: url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Light.woff2') format('woff2'),
    url('../fonts/Montserrat-Light.woff') format('woff'),
    url('../fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.eot');
    src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('../fonts/Montserrat-SemiBold.woff') format('woff'),
    url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'FoglihtenNo06';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/FoglihtenNo06.eot');
    src: url('../fonts/FoglihtenNo06.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FoglihtenNo06.woff2') format('woff2'),
    url('../fonts/FoglihtenNo06.woff') format('woff'),
    url('../fonts/FoglihtenNo06.ttf') format('truetype');
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    position: relative;
    background: no-repeat url("../images/background.jpg") #6a50f2;
    background-size: cover;
    background-position: top;
}

main {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.button {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 34px;
    text-align: center;
    padding: 30px 80px;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    background-color: #fff;
    width: 610px;
    transition: 0.2s linear;
}

.button:hover {
    transform: translateX(-5px) translateY(5px);
}

.button--dark {
    color: #6249E2;
    box-shadow: -15px 20px 0 0 #1B0C5B;
}

.button--dark:hover {
    box-shadow: -10px 15px 0 0 #1B0C5B;
}

.button--violet {
    color: #1B0C5B;
    box-shadow: -15px 20px 0 0 #6249E2;
}

.button--violet:hover {
    box-shadow: -10px 15px 0 0 #6249E2;
}

.button--red {
    color: #1B0C5B;
    box-shadow: -15px 20px 0 0 #E84336;
}

.button--red:hover {
    box-shadow: -10px 15px 0 0 #E84336;
}

.button--snow {
    color: #FFFFFF;
    background-color: #F73D3D;
    margin: 50px 0 100px;
    box-shadow: -15px 20px 0 0 #000000;
}

.button--snow:hover {
    box-shadow: -10px 15px 0 0 #000000;
}

.button--snow::before {
    content: "";
    position: absolute;
    top: -37px;
    left: -15px;
    width: 190px;
    height: 110px;
    background: no-repeat center center url(../images/button-snow.svg);
    background-size: contain;
}

.text-center {
    text-align: center;
}

header {
    padding-top: 50px;
}

.header__image {
    max-width: 250px;
}

.title__wrapper {
    font-family: "FoglihtenNo06", Arial, sans-serif;
    font-size: 160px;
    text-transform: uppercase;
    position: relative;
}

.title__wrapper span {
    display: block;
}

.title__right {
    text-align: right;
    letter-spacing: 15px;
}

.toy {
    position: absolute;
}

.toy--mobile {
    display: none;
}

.toy--first {
    top: 140px;
    left: -37px;
    max-width: 200px;
}

.toy--second {
    top: 140px;
    left: 275px;
    max-width: 80px;
}

.toy--third {
    top: 330px;
    right: 20px;
    max-width: 120px;
}


.toy--fourth {
    top: 100%;
    left: 50px;
    max-width: 120px;
}

.toy--fifth {
    top: 100%;
    right: 110px;
    max-width: 80px;
}

.toy--sixth {
    top: 60px;
    right: -29px;
    max-width: 130px;
}

.toy--seventh {
    top: 191px;
    left: 50px;
    max-width: 90px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .toy--first {
        top: 150px;
    }

    .toy--second {
        top: 150px;
    }

    .toy--third {
        top: 340px;
    }

    .toy--sixth {
        top: 70px;
    }
}

.marmot {
    position: absolute;
}

.marmot--first {
    right: 60px;
    top: -100px;
    max-width: 280px;
}

.mail__wrapper {
    position: relative;
    width: 860px;
    margin: 0 auto;
    height: 982px;
    padding-top: 400px;
    overflow: hidden;
}

.mail__wrapper::before {
    content: "";
    position: absolute;
    width: 838px;
    top: 414px;
    left: 10px;
    height: 400px;
    background-color: #1B0C5B;
    z-index: 1;
}

.mail__letter {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70px 40px;
    background-color: #A399FF;
    width: 660px;
    margin: auto;
    transition: transform 2s ease;
    overflow: hidden;
    z-index: 2;
    transform: translateY(100%);
}

.mail__letter.active {
    transform: translateY(-150px);
}

.mail__content {
    background-color: #fff;
    text-align: center;
    border-radius: 30px;
    position: relative;
    padding: 70px 70px 125px 70px;
}

.mail__content::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 190px;
    height: 90px;
    background: no-repeat center center url(../images/top-mail.png);
    background-size: contain;
}

.mail__head {
    font-size: 34px;
    color: #6249E2;
    margin-bottom: 40px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
}

.mail__text {
    font-size: 18px;
    color: #1B0C5B;
}

.mail__text p {
    margin-bottom: 30px;
}

.mail__text p:first-child {
    color: #6249E2;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
}

.mail__top {
    position: absolute;
    top: 414px;
    left: -1px;
    width: 860px;
    height: 380px;
    transition: transform 0.5s ease, z-index 0s 0.5s;
    z-index: 3;
}

.mail__top.active {
    transform-origin: top;
    transform: rotateX(180deg);
    z-index: 1;
}

.mail__main {
    position: absolute;
    z-index: 2;
}

.bingo {
    position: relative;
    margin: 150px 0 0;
    text-align: center;
}

.bingo__button {
    margin: auto;
    top: -250px;
}

.bingo img {
    position: relative;
    z-index: -1;
}

.head {
    font-family: "FoglihtenNo06", Arial, sans-serif;
    font-size: 70px;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    display: inline-block;
}

.text-block {
    text-align: center;
    margin-bottom: 100px;
}

.quotes__container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.quotes__wrapper {
    display: flex;
    justify-content: space-between;
}

.quotes__image {
    min-width: 370px;
    max-width: 370px;
}

.quotes__item {
    position: relative;
}

.quotes__text {
    font-size: 30px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 900px;
    position: relative;
}

.quotes__text--big {
    max-width: 990px;
}

.quotes__item--left .quotes__text {
    padding: 40px 60px 40px 120px;
}

.quotes__item--right .quotes__text {
    padding: 40px 120px 40px 60px;
}

.quotes__back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quotes_buttons {
    margin: 0 0 150px;
    position: relative;
}

.quotes_buttons--right {
    text-align: right;
}

.quotes__button {
    z-index: 1;
}

.quotes__image--bottom {
    top: 200px;
    position: relative;
}

.quotes__promo {
    margin-top: -50px;
    width: fit-content;
    align-self: flex-end;
}

.quotes__promo-head {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quotes__promo-code {
    text-transform: uppercase;
    margin: 20px 365px 0 0;
    color: #E84336;
    border-radius: 100px;
    background: #FFF;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 40px;
    display: inline-block;
}

.quotes__image--height {
    max-height: 380px;
    object-fit: contain;
}

.accordion {
    margin: 100px auto;
}

.accordion__item {
    position: relative;
    border: 2px solid #A399FF;
    transition: color 0.3s ease;
    border-radius: 30px;
}

.accordion__item--active .accordion__head::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion__item--active .accordion__head::before {
    transform: rotate(180deg);
}

.accordion__head {
    font-size: 42px;
    font-weight: 700;
    padding: 30px 100px 30px 50px;
    cursor: pointer;
}

.accordion__head::before {
    content: "";
    position: absolute;
    top: 55px;
    right: 25px;
    width: 50px;
    height: 2px;
    border-radius: 1px;
    background-color: #FFF;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion__head::after {
    content: "";
    position: absolute;
    top: 55px;
    right: 50px;
    width: 2px;
    height: 50px;
    border-radius: 1px;
    background-color: #FFF;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion__text {
    display: none;
    padding: 30px 50px;
    font-size: 24px;
}

.accordion__wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    overflow-wrap: break-word;
}

.accordion__wrapper > *:first-child {
    width: calc(60% - 15px);
}

.accordion__wrapper > *:last-child {
    width: calc(40% - 15px);
}

p {
    margin-bottom: 30px;
}

strong {
    font-weight: bold;
}

ul, ol {
    margin-bottom: 70px;
}

ol {
    list-style-type: none;
    counter-reset: num;
}

ul li,
ol li {
    position: relative;
    padding-left: 40px;
}

ul li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 12px;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #fff;
}

ol li::before {
    content: counter(num) '.';
    counter-increment: num;
    position: absolute;
    top: 0;
    left: 0;
}

.big-margin {
    margin-bottom: 100px;
}

.accordion__text a {
    transition: 0.3s ease;
    text-decoration: underline;
}

.accordion__text a:hover {
    color: #E84336;
    text-decoration: none;
}

.trust__text {
    font-size: 50px;
    font-weight: bold;
}

.container--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust__image {
    max-width: 210px;
    position: relative;
    margin-right: 130px;
}

.socials {
    margin: 100px auto;
}

.socials__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.socials__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials__icon {
    width: 45px;
    transition: 0.2s ease;
}

.socials__item {
    color: #fff;
    font-size: 40px;
    transition: .3s ease;
}

.socials__text {
    position: relative;
    transition: 0.2s ease;
    color: #fff;
}

.socials__text::after {
    content: "";
    position: absolute;
    bottom: -3px;
    height: 3px;
    background-color: #fff;
    left: 0;
    width: 100%;
    transition: 0.2s ease;
}

.socials__item:hover {
    opacity: 0.8;
}

.snowflakes-box .snowflake {
    width: 60px;
    height: 60px;
}


@keyframes pendulate {
    0% {
        transform: rotate(-5deg) translateX(25px);
    }
    100% {
        transform: rotate(5deg) translateX(-25px);
    }
}

@keyframes pendulate2 {
    0% {
        transform: rotate(6deg) translateX(-25px);
    }
    100% {
        transform: rotate(-6deg) translateX(25px);
    }
}

@keyframes pendulate3 {
    0% {
        transform: rotate(3deg) translateX(-15px);
    }
    100% {
        transform: rotate(-3deg) translateX(15px);
    }
}


@keyframes pendulate-mobile {
    0% {
        transform: rotate(-2deg) translateX(3px);
    }
    100% {
        transform: rotate(2deg) translateX(-3px);
    }
}

@keyframes pendulate2-mobile {
    0% {
        transform: rotate(3deg) translateX(-3px);
    }
    100% {
        transform: rotate(-3deg) translateX(3px);
    }
}

@keyframes pendulate3-mobile {
    0% {
        transform: rotate(2deg) translateX(-1px);
    }
    100% {
        transform: rotate(-2deg) translateX(1px);
    }
}

.toy--first {
    animation: pendulate 1.5s ease-in-out infinite alternate;
}

.toy--second {
    animation: pendulate2 1.5s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.toy--third {
    animation: pendulate3 1s ease-in-out infinite alternate;
    animation-delay: .3s;
}

.toy--fourth {
    animation: pendulate 1.5s ease-in-out infinite alternate;
}

.toy--fifth {
    animation: pendulate2 1.5s ease-in-out infinite alternate;
}

.toy--sixth {
    animation: pendulate3 1.6s ease-in-out infinite alternate;
}

.toy--seventh {
    animation: pendulate 2s ease-in-out infinite alternate;
}

@media (max-width: 1024px) {
    .toy--first {
        animation: pendulate-mobile 1.5s ease-in-out infinite alternate;
    }

    .toy--second {
        animation: pendulate2-mobile 1.5s ease-in-out infinite alternate;
        animation-delay: .5s;
    }

    .toy--third {
        animation: pendulate3-mobile 1s ease-in-out infinite alternate;
        animation-delay: .3s;
    }

    .toy--fourth {
        animation: pendulate-mobile 1.5s ease-in-out infinite alternate;
    }

    .toy--fifth {
        animation: pendulate2-mobile 1.5s ease-in-out infinite alternate;
    }

    .toy--sixth {
        animation: pendulate3-mobile 1.6s ease-in-out infinite alternate;
    }

    .toy--seventh {
        animation: pendulate-mobile 2s ease-in-out infinite alternate;
    }
}

.animate {
    transition-timing-function: ease;
    transition-property: opacity, transform;
    transition-duration: .8s;
    opacity: 0;
}

.animate.active {
    opacity: 1;
    transform: translateZ(0);
}

.fade-right {
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
}

.fade-left {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
}

.fade-down {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0)
}

.page-404 {
    padding: 80px 0;
}

.page-404 a {
    transition: 0.3s ease;
    text-decoration: underline;
}

/* Адаптив */
@media (min-width: 1025px) and (max-width: 1420px) {
    .container {
        max-width: 1010px;
    }

    .title__wrapper {
        font-size: 130px;
    }

    .marmot--first {
        right: 60px;
        top: -75px;
        max-width: 210px;
    }

    .toy--first {
        top: 112px;
        left: -48px;
    }

    .toy--second {
        top: 113px;
        left: 213px;
    }

    .toy--third {
        top: 269px;
        right: 7px;
    }

    .bingo__button {
        top: -170px;
    }

    .head {
        font-size: 54px;
    }

    .quotes__text {
        font-size: 24px;
    }

    .quotes__image {
        min-width: 300px;
        max-width: 300px;
    }

    .button {
        font-size: 24px;
        width: 490px;
    }

    .button--violet {
        margin-top: 30px;
    }

    .toy--sixth {
        top: 47px;
        right: -35px;
        max-width: 130px;
    }

    .toy--seventh {
        top: 180px;
        left: 35px;
        max-width: 90px;
    }

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .toy--first {
            top: 122px;
        }

        .toy--second {
            top: 122px;
        }

        .toy--third {
            top: 279px;
        }

        .toy--sixth {
            top: 49px;
        }
    }
    .quotes__promo-head {
        font-size: 34px;
    }

    .quotes__promo-code {
        margin-right: 265px;
    }

    .accordion__text {
        font-size: 20px;
    }

    .trust__image {
        margin-right: 0;
    }

    .trust__text {
        font-size: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 754px;
    }

    .header__image {
        max-width: 200px;
    }

    .title__wrapper {
        font-size: 90px;
    }

    .toy--first {
        top: 80px;
        left: -34px;
        max-width: 140px;
    }

    .toy--second {
        top: 79px;
        left: 147px;
        max-width: 60px;
    }

    .toy--third {
        top: 185px;
        right: 6px;
        max-width: 90px;
    }

    .marmot--first {
        right: 25px;
        top: -90px;
        max-width: 180px;
    }

    .mail__wrapper {
        width: 720px;
        height: 915px;
        padding-top: 430px;
    }

    .mail__wrapper::before {
        width: 700px;
    }

    .mail__top {
        width: 100%;
        top: 442px;
    }

    .mail__content {
        padding: 55px 50px 140px 50px;
    }

    .mail__letter {
        padding: 60px 30px;
        width: 600px;
    }

    .mail__letter.active {
        transform: translateY(-150px);
    }

    .mail__wrapper::before {
        top: 444px;
    }

    .mail__text p {
        margin-bottom: 20px;
    }

    .mail__head {
        margin-bottom: 30px;
    }

    .bingo__button {
        top: -170px;
    }

    .head {
        font-size: 38px;
    }
    .quotes__container {
        gap: 32px;
    }
    .quotes__image {
        min-width: 170px;
        max-width: 170px;
    }

    .bingo {
        margin-top: 100px;
    }

    .quotes__text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .quotes__item--left .quotes__text {
        padding: 20px 30px 20px 75px;
    }

    .button {
        font-size: 26px;
        padding: 25px 60px;
        width: 530px;
    }

    .button--violet {
        margin-top: 30px;
    }

    .quotes__right .toy {
        display: none;
    }

    .quotes__left .toy {
        display: none;
    }

    .toy--mobile.toy--fourth {
        display: block;
        max-width: 60px;
        left: 250px;
        top: 100%;
    }

    .toy--mobile.toy--fifth {
        display: block;
        top: 100%;
        left: 0;
        max-width: 40px;
    }

    .quotes__item--right .quotes__text {
        padding: 20px 75px 20px 30px;
    }

    .toy--sixth {
        top: 32px;
        right: -17px;
        max-width: 80px;
    }

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .toy--first {
            top: 83px;
        }

        .toy--second {
            top: 83px;
        }

        .toy--third {
            top: 186px;
        }

        .toy--sixth {
            top: 35px;
        }
    }

    .text-block {
        margin-bottom: 60px;
    }

    .quotes__image--bottom {
        top: 140px;
    }

    .toy--seventh {
        top: 175px;
        left: 50px;
        max-width: 40px;
    }

    .quotes__promo-head {
        font-size: 28px;
        margin-top: 15px;
    }

    .quotes__promo-code {
        font-size: 28px;
        margin: 15px 250px 0 0;
    }

    .accordion {
        margin: 70px auto;
    }

    .accordion__head {
        font-size: 32px;
    }

    .accordion__head::after,
    .accordion__head::before {
        top: 50px;
    }

    .accordion__text {
        font-size: 16px;
    }

    .big-margin {
        margin-bottom: 40px;
    }

    ul, ol {
        margin-bottom: 40px;
    }

    .accordion__wrapper {
        gap: 15px;
    }

    .accordion__head {
        padding-left: 30px;
    }

    .accordion__text {
        padding-left: 30px;
        padding-right: 30px;
    }

    .trust__image {
        max-width: 150px;
        margin-right: 0;
    }

    .trust__text {
        font-size: 30px;
    }

    .socials__item {
        font-size: 30px;
    }

    .button--snow {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 30px;
    }

    .header__image {
        max-width: 200px;
        margin: auto;
    }

    .garland img {
        height: 150px;
        object-fit: cover;
    }

    .title__right {
        letter-spacing: 0;
    }

    .container {
        width: 350px;
    }

    .title__wrapper {
        font-size: 50px;
    }

    .toy--first {
        top: 43px;
        left: -10px;
        max-width: 60px;
    }

    .toy--second {
        top: 43px;
        left: 78px;
        max-width: 30px;
    }

    .toy--third {
        top: 101px;
        right: -2px;
        max-width: 40px;
        z-index: 10;
    }

    .marmot--first {
        right: -10px;
        top: -19px;
        max-width: 70px;
    }

    .mail__container--mobile {
        width: 100%;
        padding: 0;
    }

    .mail__main {
        display: none;
    }

    .mail__top {
        display: none;
    }

    .mail__wrapper {
        width: 100%;
        height: auto;
        padding-top: 0;
    }

    .mail__wrapper::before {
        display: none;
    }


    .mail__content {
        padding: 30px 10px;
    }

    .mail__letter {
        transform: none;
        position: relative;
        padding: 55px 15px;
        width: 100%;
        margin-top: 100px;
    }

    .mail__content::before {
        top: -35px;
        width: 120px;
        height: 70px;
    }

    .mail__head {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .mail__text p:last-child {
        margin-bottom: 0;
    }

    .mail__text {
        font-size: 16px;
    }

    .bingo {
        margin: 50px 0 30px;
    }

    .bingo img {
        height: 150px;
        object-fit: cover;
    }

    .button br {
        display: none;
    }

    .button {
        letter-spacing: 0;
        font-size: 18px;
        padding: 15px 30px;
        width: 300px;
    }

    .bingo__button {
        top: 15px;
        position: absolute;
        left: 0;
        right: 0;
    }

    .button--dark {
        box-shadow: -10px 15px 0 0 #1B0C5B;
    }

    .button--dark:hover {
        box-shadow: -5px 10px 0 0 #1B0C5B;
    }

    .button--violet {
        box-shadow: -10px 15px 0 0 #6249E2;
    }

    .button--violet:hover {
        box-shadow: -5px 10px 0 0 #6249E2;
    }

    .button--red {
        box-shadow: -10px 15px 0 0 #E84336;
    }

    .button--red:hover {
        box-shadow: -5px 10px 0 0 #E84336;
    }

    .button--snow {
        box-shadow: -10px 15px 0 0 #000000;
    }

    .button--snow:hover {
        box-shadow: -5px 10px 0 0 #000000;
    }

    .head br {
        display: none;
    }

    .head {
        font-size: 30px;
        letter-spacing: 2px;
        width: 350px;
        margin: 0 auto;
    }

    .quotes__wrapper {
        flex-wrap: wrap;
    }

    .text-block {
        margin-bottom: 30px;
    }

    .quotes__left {
        width: 100%;
    }

    .quotes__image {
        min-width: 170px;
        max-width: 170px;
        margin: 0 auto;
    }

    .quotes__back {
        display: none;
    }

    .quotes__text {
        padding: 20px !important;
        font-size: 16px;
        letter-spacing: 1px;
        border: 2px solid #A399FF;
        border-radius: 15px;
        margin-top: 15px;
    }

    .quotes__right .toy {
        display: none;
    }

    .quotes__left .toy {
        display: none;
    }

    .toy--mobile.toy--fourth {
        display: block;
        max-width: 45px;
        left: 15px;
        top: 100%;
    }

    .toy--mobile.toy--fifth {
        display: block;
        top: calc(100% + 65px);
        left: 5px;
        max-width: 30px;
        z-index: 2;
    }

    .quotes__container {
        gap: 20px;
    }

    .quotes_buttons {
        text-align: center;
        margin: 0 0 40px;
    }

    .replace-mobile .quotes__right {
        order: 1;
        width: 100%;
    }

    .replace-mobile .quotes__left {
        order: 2;
    }

    .toy--sixth {
        top: 27px;
        right: 0;
        max-width: 50px;
    }

    .button--red {
        margin-bottom: 10px;
    }

    .quotes__image--bottom {
        top: 0;
    }

    .button--snow::before {
        top: -20px;
        left: -8px;
        width: 109px;
        height: 61px;
    }

    .button--snow {
        margin: 30px 0 20px;
    }

    .toy--seventh {
        top: 115px;
        left: 15px;
        max-width: 45px;
    }

    .quotes__promo {
        margin-top: 30px;
        text-align: center;
    }

    .quotes__promo-head {
        font-size: 18px;
        letter-spacing: 0;
    }

    .quotes__promo-code {
        margin: 15px auto;
        padding: 10px 20px;
        font-size: 24px;
    }

    .accordion {
        margin: 50px auto;
    }

    .accordion__head {
        font-size: 22px;
        padding: 15px 50px 15px 20px;
    }

    .accordion__head::after {
        top: 40px;
        right: 40px;
        height: 30px;
    }

    .accordion__head::before {
        top: 40px;
        right: 25px;
        width: 30px;
    }

    .accordion__wrapper {
        display: block;
    }

    .accordion__wrapper > div {
        width: 100% !important;
    }

    .accordion__text {
        padding: 15px 20px;
        font-size: 16px;
    }

    p {
        margin-bottom: 20px;
    }

    .big-margin {
        margin-bottom: 20px;
    }

    ul, ol {
        margin-bottom: 20px;
    }

    .trust .container--flex {
        display: block;
    }

    .trust__text br {
        display: none;
    }

    .trust__text {
        font-size: 34px;
        text-align: center;
    }

    .trust__image {
        max-width: 190px;
        right: 0;
        left: 0;
        margin: auto;
        top: 30px;
    }

    .socials__items {
        display: block;
    }

    .socials__icon {
        width: 25px;
    }

    .socials__item {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .socials {
        margin: 50px auto;
    }

    .socials__text::after {
        bottom: -2px;
        height: 2px;
    }

    .snowflakes-box .snowflake {
        width: 30px;
        height: 30px;
    }

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .toy--first {
            top: 46px;
        }

        .toy--second {
            top: 46px;
        }

        .toy--third {
            top: 104px;
        }

        .toy-mobile.toy--fifth {
            top: calc(100% + 67px);
        }

        .toy--sixth {
            top: 28px;
        }
    }

}