@import url('./fonts/geometria/stylesheet.css');
@import url('./fonts/druk-wide-cyr/stylesheet.css');

/*font-family: 'Druk Wide Cyr';*/
/*font-family: 'Geometria';*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

a {
    text-decoration: none;
}

/**/

.body {
    background-color: #0B0B0B;
}

.wrapper {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.wrapperCarousel {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
}

.container {
    overflow: hidden;
}

.section {
    padding-top: 40px;
    padding-bottom: 30px;
}

.subtitle {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 38px;
    line-height: 52px;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

.text {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    max-width: 517px;
    margin: 20px auto 0;
}

/*-----------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #0B0B0B4D;
    border-bottom: 1px solid #252525;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    z-index: 100;
}

.header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img,
.menuContent .logo img {
    height: 40px;
}

.header .content .lside {
    display: flex;
    align-items: center;
    grid-column-gap: 20px;
}

.header .content .rside {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 320px;
}

.header .nav {
    display: flex;
}

.header .nav a,
.menuContent .nav a {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #F3F3F3;
    padding: 12.5px 20px;
    position: relative;
}

.header .nav a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FD3E3E;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.header .nav a:hover:after {
    opacity: 1;
    transform: scaleX(1);
}

.menuContent .content {
    padding-top: 80px;
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.header .content .rside .button,
.menuContent .buttonGroup .button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #F3F3F3;
    width: 100%;
    max-width: 150px;
    border-radius: 6px;
    padding: 13px 13px 12px;
    text-align: center;
}

.menuContent .buttonGroup {
    display: flex;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #252525;
    margin-top: 27.5px;
    grid-row-gap: 8px;
}

.header .content .rside .button:nth-child(2),
.menuContent .buttonGroup .button:nth-child(2) {
    background-color: #FD3E3E;
}

.header .content .rside .button:hover {
    transition: 0.3s;
    background-color: #00204C;
    color: #FFFFFF;
}

.header .content .rside .menu {
    display: none;
    height: 24px;
    width: 24px;
    margin-left: 30px;
}

/*-----------*/

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    margin-top: 65px;
    padding-bottom: 15px;
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home .content {
    display: flex;
    justify-content: space-between;
    grid-column-gap: 40px;
}

.home .content .rside img {
    width: 100%;
}

.home .title {
    font-family: 'Geometria';
    font-weight: 300;
    font-size: 38px;
    line-height: 48px;
    color: #F3F3F3;
    text-transform: uppercase;
    margin-top: 80px;
}

.home .title .red {
    font-family: 'Druk Wide Cyr';
    background: linear-gradient(
            180deg,
            #FD3E3E 25%,
            #F3F3F3 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home .buttonWrapper {
    margin-top: 40px;
}

.home .buttonWrapper .button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #F3F3F3;
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    padding: 22px;
    background-color: #FD3E3E;
    display: inline-block;
    text-align: center;
}

.home .buttonWrapper .button:hover {
    background-color: #00204C;
    color: #FFFFFF;
    transition: 0.3s;
}

.home .scroll {
    width: fit-content;
}

.home .scroll .content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 15px;
}

.home .scroll .lside {
    border-radius: 10px;
    padding: 7.5px 12px;
    height: 50px;
    border: 1px solid #D9D9D9;
    position: relative;
}

.home .scroll .lside .mark {
    position: absolute;
    display: block;
    width: 1px;
    height: 12px;
    background-color: #FD3E3E;
    animation: scrollUpAndDown 2s infinite;
}

@keyframes scrollUpAndDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.home .scroll .rside p:nth-child(1) {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: #FFFFFF;
}

.home .scroll .rside p:nth-child(2) {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    opacity: 0.2;
}

/**/

.spot .wrapper {
    position: relative;
}

.spot.first .object {
    position: absolute;
    right: -150px;
    top: -50px;
    height: 261px;
    width: 261px;
    filter: blur(1.5px);
}

.spot img {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    object-fit: cover;
    transition: transform 0.05s ease-out;
    z-index: -1;
}

.spot.third .object {
    position: absolute;
    left: -120px;
    top: 100px;
    height: 268px;
    width: 268px;
    filter: blur(1.5px);
}

.spot.second .object {
    position: absolute;
    right: -270px;
    top: -250px;
    height: 314px;
    width: 314px;
    filter: blur(1.5px);
}

.spot.fourth .object {
    position: absolute;
    left: -120px;
    top: 80px;
    height: 180px;
    width: 180px;
    filter: blur(1.5px);
}

/**/

.geos {
    padding-top: 105px;
    padding-bottom: 40px;
    background-image: url('../img/background5.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center bottom;
}

.geos .carousel .item {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    padding: 15px;
}

.geos .carousel .item img {
    border-radius: 8px;
    box-shadow: 0px 1px 24px #fd3e3e9c;
}

.geos .carousel .item span {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
    text-align: center;
}

/**/

.join {
    padding-top: 70px;
    background-image: url('../img/background2.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    padding-bottom: 0;
}

.join .grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 58px;
    grid-column-gap: 30px;
}

.join .grid .item {
    max-width: 260px;
    width: 100%;
}

.join .grid .item .top {
    display: flex;
    align-items: center;
    grid-column-gap: 20px;
}

.join .grid .item .top img {
    height: 48px;
    width: 48px;
}

.join .grid .item .top span {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.join .grid .item p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    opacity: 0.6;
    margin-top: 30px;
}

.join .grid .item:nth-child(2),
.join .grid .item:nth-child(5) {
    margin: 0 auto;
}

.join .grid .item:nth-child(3),
.join .grid .item:nth-child(6) {
    margin-left: auto;
}

/**/

.brand {
    padding-top: 120px;
    padding-bottom: 0;
}

.brand .plate {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.brand .content {
    display: flex;
    justify-content: center;
    grid-column-gap: 37px;
    position: absolute;
    right: 0;
}

.brand .content .lside {
    max-width: 427px;
    width: 100%;
}

.brand .content .rside {
    max-width: 520px;
    width: 100%;
}

.brand .content .rside img {
    width: 100%;
}

.brand .logo img {
    height: 30px;
}

.brand h3 {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 30px;
}

.brand p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 20px;
}

.brand b {
    font-size: 14px;
    font-weight: 700;
}

.brand .tag {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.brand .tag .item {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 9px;
    line-height: 16px;
    color: #F3F3F3;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    padding: 4px 9px 2px;
    margin: 0;
}

.brand .brandLogo {
    margin-top: 20px;
}

.brand .brandLogo img {
    height: 26px;
}

.brand .buttonWrapper {
    display: flex;
    align-items: center;
    grid-column-gap: 30px;
    margin-top: 30px;
}

.brand .buttonWrapper .button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #F3F3F3;
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    padding: 22px;
    background-color: #FD3E3E;
    display: inline-block;
    text-align: center;
}

.brand .buttonWrapper .button:hover {
    background-color: #00204C;
    color: #FFFFFF;
    transition: 0.3s;
}

.brand .buttonWrapper .link {
    display: flex;
    align-items: center;
    grid-column-gap: 7px;
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    color: #F3F3F3;
}

.brand .buttonWrapper .link img {
    height: 16px;
    width: 16px;
    min-width: 16px;
}

.brand .background {
    width: 100%;
}

.brand .background.mobile {
    display: none;
}

.brand .icon {
    margin-top: 20px;
}

.brand .icon img {
    display: block;
    height: 38px;
}

/**/

.price {
    background-image: url('../img/background3.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    padding-top: 120px;
}

.price .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 28px;
}

.price .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price .item .info {
    position: absolute;
    padding: 0 16px;
}

.price .item .info h3 {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    max-width: 270px;
}

.price .item .info span {
    color: #FD3E3E;
}

.price .item .info p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    max-width: 254px;
    margin: 30px auto 0;
}

.price .item img {
    width: 100%;
}

/**/

.signup {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.signup .background {
    width: 100%;
}

.signup .background.mobile {
    display: none;
}

.signup .plate {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.signup .content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-column-gap: 34px;
    position: absolute;
}

.signup .content .rside {
    max-width: 520px;
    width: 100%;
}

.signup .content .rside img {
    width: 100%;
}

.signup .content .lside .logo img {
    height: 43px;
}

.signup .content .lside {
    max-width: 426px;
    width: 100%;
}

.signup .content .lside h2 {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 30px;
}

.signup .content .lside p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin-top: 20px;
}

.signup .content .lside b {
    font-weight: 700;
}

.signup .content .lside .buttonWrapper {
    margin-top: 20px;
}

.signup .content .lside .buttonWrapper .button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #FD3E3E;
    padding: 22px;
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    background-color: #F3F3F3;
    display: inline-block;
    text-align: center;
}

.signup .content .lside .buttonWrapper .button:hover {
    background-color: #00204C;
    color: #FFFFFF;
    transition: 0.3s;
}

/**/

.footer {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid #FD3E3E;
}

.footer .top {
    display: flex;
    justify-content: center;
}

.footer .top .content {
    display: flex;
    justify-content: center;
    grid-column-gap: 32px;
    max-width: 520px;
    width: 100%;
}

.footer .top h4 {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}

.footer .top .links {
    display: flex;
    flex-direction: column;
    grid-row-gap: 8px;
    margin-top: 16px;
}

.footer .top .links a {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    opacity: 0.6;
}

.footer .top .links a:hover {
    opacity: 1;
    transition: 0.3s;
}

.footer .top .images {
    display: flex;
    flex-direction: column;
    grid-row-gap: 16px;
    margin-top: 16px;
}

.footer .top .images img {
    height: 32px;
    width: fit-content;
}

.footer .middle {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
    margin-top: 20px;
}

.footer .middle img {
    height: 48px;
}

.footer .middle p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    text-align: center;
    opacity: 0.6;
}

.footer .mail {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .mail a {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: #FFFFFF;
    text-align: center;
}

.footer .mail a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.footer .brands {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-column-gap: 7px;
    grid-row-gap: 7px;
}

.footer .mobile {
    display: none;
}

/**/

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1B1B1BCC;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

.modal .wrapper {
    padding: 20px 10px;
}

.modal .content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 630px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.modal .background {
    width: 100%;
}


.modal .object1 {
    position: absolute;
    left: 200px;
    top: 30px;
    height: 70px;
    width: auto;
}

.modal .object2 {
    position: absolute;
    right: 100px;
    bottom: 300px;
    height: 130px;
    width: auto;
}

.modal .object3 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 260px;
    width: auto;
}

.modal .logo {
    display: flex;
    justify-content: center;
}


.modal .form {
    max-width: 517px;
    width: 100%;
    position: absolute;
    z-index: 10;
    padding: 0 20px;
}


.modal .logo img {
    height: 43px;
    width: auto;
}

.modal h2 {
    font-family: 'Druk Wide Cyr';
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 40px;
}

.modal form {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    margin-top: 30px;
}

.modal input,
.modal textarea {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 13.5px 14px;
    background-color: transparent;
    border: 1px solid #F3F3F3;
    width: 100%;
    outline: none;
}

.modal textarea {
    height: 140px;
    resize: none;
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #F3F3F3;
}

.modal p {
    font-family: 'Geometria';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    text-align: center;
}

.modal.request p {
    margin-top: 30px;
    text-align: left;
}

.modal.request p a {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}


.modal .buttonWrapper {
    display: flex;
    justify-content: center;
}

.modal .buttonWrapper .button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #FD3E3E;
    background-color: #F3F3F3;
    border-radius: 12px;
    padding: 22px;
    width: 100%;
    max-width: 250px;
}

.modal.popup .buttonWrapper .close-button {
    font-family: 'Geometria';
    font-weight: 700;
    font-size: 18px;
    line-height: 12px;
    color: #FD3E3E;
    background-color: #F3F3F3;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    max-width: 200px;
}

.modal.popup h2 {
    font-size: 12px;
    margin-top: 0px;
    text-align: center;
    line-height: normal;
}

.modal.popup p {
    font-size: 10px;
}

.modal.popup .form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

.modal.popup .background {
    height: 125px;
    width: 100%;
}

@media screen and (max-height: 835px) {
    .modal.popup .background .form {
        max-width: 350px;
    }}



    .modal.reset .buttonWrapper .button {
        max-width: none;
    }

    .modal .link {
        font-family: 'Geometria';
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        color: #FFFFFF;
        text-decoration: underline;
    }

    .modal .close {
        position: absolute;
        top: 13px;
        right: 14px;
        z-index: 1000;
    }

    .modal .close-button {
        background: #F3F3F3;
        border-radius: 10px;
        padding: 12px 30px 12px 30px;
    }

    .modal .checkbox {
        display: flex;
        align-items: center;
        grid-column-gap: 10px;
    }

    .modal .checkbox label {
        font-family: 'Geometria';
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        color: #FFFFFF;
    }

    .modal .checkbox a {
        font-family: 'Geometria';
        font-weight: 700;
        font-size: 14px;
        line-height: 14px;
        color: #FFFFFF;
    }

    /**/
    .modal .checkbox input {
        display: none;
    }

    .modal .checkbox .checkmark {
        width: 16px;
        height: 16px;
        border: 1px solid #FFFFFF;
        border-radius: 3px;
        display: inline-block;
        position: relative;
        margin-right: 10px;
        vertical-align: middle;
        background-color: transparent;
    }

    .modal .checkbox input:checked + .checkmark {
        background-color: #FFFFFF;
    }

    .modal .checkbox input:checked + .checkmark::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 1px;
        width: 4px;
        height: 7px;
        border: solid #972525;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

    /**/
    .main .privacy {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .main .privacy .section {
        margin-top: 40px;
        padding: 0;
    }

    .main .privacy h1 {
        font-family: 'Druk Wide Cyr';
        font-weight: 500;
        font-size: 38px;
        line-height: 52px;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    .main .privacy h2 {
        font-family: 'Druk Wide Cyr';
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    .main .privacy p,
    .main .privacy a {
        font-family: 'Geometria';
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #FFFFFF;
        margin-top: 30px;
    }

    .main .privacy a {
        font-weight: 700;
    }

    .main .privacy ul {
        margin-left: 20px;
    }

    .main .privacy li {
        font-family: 'Geometria';
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #FFFFFF;
    }

    /**/
    .menuContent {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: #1B1B1BCC;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .menuContent .top {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .menuContent .nav {
        margin-top: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        grid-row-gap: 15px;
    }

    .menuContent .nav a {
        width: fit-content;
        text-align: center;
    }

    /**/
    .loaderWrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background-color: #0B0B0B;
    }

    .loader {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        border: 3px solid;
        border-color: #FFF #FFF transparent transparent;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
    }

    .loader::after,
    .loader::before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border: 3px solid;
        border-color: transparent transparent #FF3D00 #FF3D00;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-sizing: border-box;
        animation: rotationBack 0.5s linear infinite;
        transform-origin: center center;
    }

    .loader::before {
        width: 32px;
        height: 32px;
        border-color: #FFF #FFF transparent transparent;
        animation: rotation 1.5s linear infinite;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes rotationBack {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(-360deg);
        }
    }

    @media screen and (max-height: 835px) {
        .modal.register,
        .modal.request {
            overflow: auto;
            padding: 0;
        }
    }

    @media screen and (max-width: 1180px) {
        .home .content .rside {
            max-width: 480px;
        }

        .home .title {
            font-size: 31px;
        }
    }

    @media screen and (max-width: 1110px) {
        .geos .wrapperCarousel {
            padding-left: 10px;
        }

        /**/
        .signup .content .rside {
            max-width: 300px;
        }

        .signup .plate {
            justify-content: center;
        }

        .brand .background {
            display: none;
        }

        .brand .content {
            position: relative;
        }
    }

    @media screen and (max-width: 1024px) {
        .home .content .rside {
            max-width: 410px;
        }

        .home .title {
            font-size: 28px;
        }

        .home .title img {
            height: 24px;
        }

        /**/
        .subtitle {
            font-size: 31px;
            line-height: 31px;
        }

        /**/
        .price {
            background-size: cover;
        }

        .price .content {
            grid-template-columns: 1fr 1fr;
            grid-row-gap: 28px;
            max-width: 768px;
            margin: 0 auto;
        }
    }

    @media screen and (max-width: 890px) {
        .header .nav {
            display: none;
        }

        .header .content .rside .menu {
            display: block;
        }

        .home .content .rside {
            max-width: 380px;
        }

        .home .title {
            font-size: 24px;
            line-height: 31px;
            margin-top: 50px;
        }

        .home .buttonWrapper {
            margin-top: 30px;
        }

        .home .buttonWrapper .button {
            max-width: 180px;
            padding: 18px;
        }

        /**/
        .price .item .info h3 {
            font-size: 22px;
        }

        .price .item .info p {
            margin-top: 20px;
        }

        /**/
        .signup .content .rside {
            max-width: 158px;
        }

        .signup .content {
            flex-direction: column-reverse;
        }

        .signup .content .rside {
            position: absolute;
            top: -100px;
            right: 0;
        }

        .signup .background {
            height: 420px;
        }

        .signup .background.mobile {
            display: none;
        }

        /**/
        .join {
            background-size: cover;
        }
    }

    @media screen and (max-width: 768px) {
        .home .content .rside {
            max-width: 310px;
        }

        .join .grid {
            grid-template-columns: 1fr 1fr;
        }

        .join .grid .item:nth-child(1),
        .join .grid .item:nth-child(5) {
            margin-right: 0;
            margin-left: auto;
        }

        .join .grid .item:nth-child(2),
        .join .grid .item:nth-child(6) {
            margin-left: 0;
            margin-right: auto;
        }

        /**/
        .brand .content {
            flex-direction: column-reverse;
            grid-row-gap: 5px;
            align-items: center;
        }

        /**/
        .signup .background {
            display: none;
        }

        .signup .background.mobile {
            display: block;
        }

        .signup .plate {
            max-width: 410px;
            margin: 0 auto;
        }

        .signup .content .lside {
            max-width: 320px;
        }

        /**/
        .brand .plate {
            margin-top: 30px;
        }

        /**/
        .main .privacy h1 {
            font-size: 28px;
            line-height: 31px;
        }

        .main .privacy h2 {
            font-size: 18px;
        }

        .main .privacy p {
            margin-top: 20px;
        }

        /**/
        .price .content {
            grid-template-columns: 1fr;
            grid-row-gap: 28px;
            max-width: 340px;
            margin: 0 auto;
        }
    }

    @media screen and (max-width: 725px) {
        .home .content {
            flex-direction: column-reverse;
            align-items: center;
        }

        .home .scroll {
            display: none;
        }
    }

    @media screen and (max-width: 625px) {
        .modal.login .background {
            height: 600px;
        }

        .modal.request .background {
            height: 670px;
        }

        .modal.register .background {
            height: 740px;
        }

        /**/
        .geos {
            padding-top: 55px;
        }

        .join {
            padding-top: 40px;
        }

        .brand {
            padding-top: 80px;
        }

        .price {
            padding-top: 80px;
        }
    }

    @media screen and (max-width: 525px) {
        .header,
        .menuContent {
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .header .logo img,
        .menuContent .logo img {
            height: 34px;
        }

        .header .content .rside .button {
            max-width: 120px;
        }

        /**/
        .home {
            margin-top: 81px;
            padding-top: 30px;
        }

        .home .content {
            align-items: flex-start;
        }

        .home .content .rside {
            max-width: none;
        }

        .home .title {
            font-size: 31px;
        }

        /**/
        .subtitle {
            font-size: 24px;
            line-height: 24px;
        }

        .wrapperCarousel {
            margin-top: 40px;
        }

        /**/
        .join .grid {
            grid-template-columns: 1fr;
        }

        .join .grid .item:nth-child(1),
        .join .grid .item:nth-child(2),
        .join .grid .item:nth-child(3),
        .join .grid .item:nth-child(4),
        .join .grid .item:nth-child(5),
        .join .grid .item:nth-child(6) {
            margin: 0 auto;
        }

        /**/
        .brand h3 {
            font-size: 22px;
        }

        .brand .buttonWrapper .button {
            font-size: 14px;
            padding: 15px 21px;
            max-width: none;
            width: auto;
        }

        .brand .buttonWrapper .link {
            font-size: 16px;
        }

        .brand .buttonWrapper {
            grid-column-gap: 18px;
        }

        .brand .background.mobile {
            display: block;
            max-width: 400px;
            height: 830px;
        }

        .brand .content {
            position: absolute;
            right: auto;
            padding: 0 30px;
            max-width: 390px;
        }

        /**/
        .price .item img {
            height: 245px;
        }

        /**/
        .footer .mobile {
            display: flex;
            justify-content: center;
        }

        .footer {
            padding-top: 40px;
        }

        .footer .top {
            margin-top: 20px;
        }

        .footer .middle img {
            display: none;
        }

        /**/
        .spot.first img,
        .spot.second img {
            display: none;
        }

        /**/
        .modal.login .background {
            height: 500px;
        }

        .modal .close {
            top: 6px;
            right: 5px
        }

        .main .privacy h1 {
            font-size: 24px;
            line-height: 28px;
        }

        /**/
        .menuContent .nav {
            margin-top: 20px;
        }
    }

    @media screen and (max-width: 460px) {
        .home .title {
            font-size: 26px;
        }
    }

    @media screen and (max-width: 425px) {
        .header .content .rside .button {
            font-size: 13px;
            max-width: 80px;
        }

        /**/
        .signup {
            background-image: url('../img/background4.png');
            background-size: cover;
            padding-bottom: 45px;
            padding-top: 80px;
        }

        /**/
        .modal h2 {
            font-size: 18px;
            margin-top: 20px;
        }

        .modal form {
            margin-top: 10px;
            grid-row-gap: 10px;
        }

        .modal .buttonWrapper .button {
            font-size: 16px;
            padding: 16px;
        }

        .modal.login .background {
            height: 400px;
        }

        .modal.request .background {
            height: 520px;
        }

        .modal.register .background {
            height: 590px;
        }

        .modal.request p {
            margin-top: 10px;
        }

        .modal textarea {
            height: 100px;
        }
    }

    @media screen and (max-width: 375px) {
        .header {
            padding-top: 14px;
            padding-bottom: 14px;
        }

        .header .logo img,
        .menuContent .logo img {
            height: 24px;
        }

        .header .content .rside .button {
            font-size: 9px;
            padding: 7px 15px;
            width: auto;
        }

        /**/
        .home {
            margin-top: 58px;
        }

        .home .title {
            font-size: 24px;
        }

        .home .buttonWrapper .button {
            padding: 13px;
            font-size: 16px;
            line-height: 24px;
        }

        /**/
        .signup .content .lside {
            max-width: 285px;
        }

        .signup .content .lside .logo img {
            height: 35px;
        }

        .signup .content .lside .buttonWrapper .button {
            font-size: 16px;
            padding: 13px;
            max-width: 180px;
        }

        /**/
        .brand .background.mobile {
            height: 800px;
        }

        .modal.request .background {
            height: 540px;
        }

        /**/
        .main .privacy h1 {
            font-size: 21px;
            line-height: 26px;
        }
    }

    @media screen and (max-width: 350px) {
        .home .title {
            font-size: 21px;
        }
    }



    .modal.afterSendModal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
    }

    .modal.afterSendModal .wrapper {
        background: #fff;
        padding: 30px 40px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        max-width: 90%;
    }

    .modal.afterSendModal h2 {
        margin-bottom: 10px;
        font-size: 24px;
        color: #333;
    }

    .modal.afterSendModal p {
        margin: 0;
        font-size: 16px;
        color: #555;
    }

