:root {
    --color-purple: #684394;
    --color-blue: #009FE3;
    --color-pink: #D34291;
    --color-black: #000000;
    --color-white: #FFF;
    --color-grey: #F0F0F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

ul, ol {
    list-style: none;
    padding-left: 0;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
}

.btn {
    color: var(--color-white);
    padding: clamp(4px, 5vw, 8px) clamp(16px, 5vw, 20px);
    background: var(--color-pink);
    text-decoration: none;
    font-size: clamp(18px, 3vw, 23px);
    font-weight: 300;
    transition: linear .15s;
    text-align: center;
}

@media (max-width: 500px) {
    .btn {
        display: block;
        width: 100%;
    }
}

.grecaptcha-badge {
    display: none !important;
}

html, body {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}


body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.page {
    padding-top: clamp(14px, 3vw, 25px);
}

.section {

}

.section .section__title {
    font-size: clamp(32px, 5vw, 55px);
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin: 0 auto;
}

.section .section__introduction {
    font-size: clamp(16px, 5vw, 18px);
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    width: 100%;
    max-width: 970px;
    margin: 27px auto 0 auto;
}
.section .section__introduction p:not(:first-child){
    margin-top:20px;
}
.section .section__introduction strong {
    font-weight: 500;
}
.section .section__introduction ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section .section__introduction ul li{
    padding-left:20px;
}
.section .section__introduction ul li::before{
    content:'';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background:var(--color-pink);
    position: absolute;
    top:calc(50% - (7px / 2));
    left:0;
}

@media (max-width: 750px){
    .section .section__introduction ul{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }
    .section .section__introduction ul li{
        text-align: left;
    }
    .section .section__introduction ul li::before{
        top:11px;
    }
}
.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(14px, 5%, 25px);
}

.navigation {
    width: 100%;
    padding: clamp(14px, 3vw, 25px) 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--color-white);
}

.navigation .navigation__container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(14px, 5%, 25px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .navigation__logo {
    max-width: 20%;
}

.navigation .navigation__logo img {
    max-width: 100%;
}

.navigation .btn--menu {
    display: none;
}

.navigation .navigation__list {
    margin-top: clamp(13px, 1.5vw, 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 clamp(18px, 2vw, 45px);
}

.navigation .navigation__list .navigation__list__item:not(.navigation__list__item--free)::before {
    content: '';
    width: 0;
    height: 3px;
    background: var(--color-blue);
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: linear .15s;
}

.navigation .navigation__list .navigation__list__item a {
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
}

.navigation .navigation__list .navigation__list__item:hover::before {
    width: 100%;
}

.navigation .navigation__list .navigation__list__item.active::before {
    width: 100%;
}

.navigation .navigation__list .navigation__list__item .btn {
    color: var(--color-white);
    border: 2px solid var(--color-pink);
}

.navigation .navigation__list .navigation__list__item .btn:hover {
    background: var(--color-white);
    color: var(--color-pink);
}

@media (max-width: 850px) {
    .navigation {
        position: fixed;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,.6);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,.6);
    }
    .navigation .navigation__list {
        display: none;
    }

    .navigation .btn--menu {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
        background: none;
        padding: 0;
        cursor: pointer;
        border: none;
    }

    .navigation .btn--menu .bar {
        width: 100%;
        height: 3px;
        background: var(--color-pink);
        border-radius: 3px;
        position: absolute;
        top: 0;
        left: 0;
        transition: linear .15s;
    }

    .navigation .btn--menu .bar:nth-child(1) {
    }

    .navigation .btn--menu .bar:nth-child(2) {
        top: 9px;
    }

    .navigation .btn--menu .bar:nth-child(3) {
        top: 18px;
    }

    .navigation .btn--menu .btn--title {
        font-size: 10px;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        line-height: 1.5;
        font-weight: 400;
        color: var(--color-black);
        display: block;
    }

    .navigation .btn--menu:hover .bar {
        background: var(--color-blue);
    }
}

.modal--menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 9999;
    display: none;
}

.modal--menu.is-open {
    display: block;
}

.modal--menu .modal__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 clamp(14px, 5%, 25px);
}

.modal--menu .modal__logo {
    height: 70%;
    display: block;
}

.modal--menu .modal__logo img {
    height: 100%;
}

.modal--menu .btn--close {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
}

.modal--menu .btn--close .bar {
    width: 100%;
    height: 3px;
    background: var(--color-pink);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;

}

.modal--menu .btn--close .bar:nth-child(1) {
    transform: translate(0%, 12px) rotate(45deg);
}

.modal--menu .btn--close .bar:nth-child(2) {
    transform: translate(0%, 12px) rotate(-45deg);
}

.modal--menu .btn--close .btn--title {
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
    display: block;
}

.modal--menu .btn--close:hover .bar {
    background: var(--color-blue);
}

.modal--menu .modal__content {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 50px 0 50px 0;
}

.modal--menu .modal__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    flex-shrink: 0;
}

.modal--menu .modal__list__item {
    width: 100%;
    text-align: center;
}

.modal--menu .modal__link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.modal--menu .modal__list__item--notices {
    margin-top: 12px;

}

.modal--menu .modal__list__item--notices .modal__link {
    font-size: 18px;
}

.modal--menu .modal__list__item--free {
    margin: 15px 0;
}

.modal--menu .modal__list__item--free .modal__link {
    color: var(--color-white);
    font-size: 20px
}
@media (max-width: 500px){
    .modal--menu .modal__list__item--free .modal__link {
        width: auto;
        display: inline-block;
    }
}


.modal--menu .network__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0 0;
    flex-shrink: 0;
}

.modal--menu .network__list .network__item {
}

.modal--menu .network__list .network__item a {
    width: 32px;
    height: 32Px;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: linear .15s;
}

.modal--menu .network__list .network__item a svg * {
    fill: var(--color-white);
}

.modal--menu .network__list .network__item a.network__link--facebook svg {
    width: 10Px;
}

.modal--menu .network__list .network__item a.network__link--instagram svg {
    width: 16Px;
}

.breadcrumb {
    margin: 26px 0 20px 0;
}

.breadcrumb .container {
}

.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb__list .breadcrumb__item {
}

.breadcrumb .breadcrumb__list .breadcrumb__item:not(:last-child)::after {
    content: '/';
    display: inline-block;
    width: 6px;
    margin: 0 3px;
    font-size: clamp(12px, 5vw, 14px);
}

.breadcrumb .breadcrumb__list .breadcrumb__item span {
    font-size: clamp(12px, 5vw, 14px);
}

.breadcrumb .breadcrumb__list .breadcrumb__link {
    color: var(--color-black);
    text-decoration: none;
    cursor: pointer;
    transition: linear .15s;
}

.breadcrumb .breadcrumb__list .breadcrumb__link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.page-header {
    width: 100%;
    height: 100vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .container {

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.page-header .page-header__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header .page-header__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.page-header .page-header__title {
    color: var(--color-white);
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: clamp(8px, 5vw, 14px);
    font-size: clamp(32px, 5vw, 70px);
}

.page-header .page-header__title span {
    display: inline-block;
    z-index: 100;
    padding: 0 12px;
}

.page-header .page-header__title span::before {
    content: '';
    width: 0;
    height: clamp(30px, 5vw, 50px);
    background-color: var(--color-purple);
    position: absolute;
    left: 0;
    bottom: clamp(-15px, 5vw, -10px);
    z-index: -1;
}

.page-header .page-header__title span:nth-child(1)::before {
    animation: slideIn 0.4s 0s ease-out forwards;
}
.page-header .page-header__title span:nth-child(2)::before {
    animation: slideIn 0.4s 0.3s ease-out forwards;
}
.page-header .page-header__title span:nth-child(3)::before {
    animation: slideIn 0.4s 0.6s ease-out forwards;
}
.page-header .page-header__title span:nth-child(4)::before {
    animation: slideIn 0.4s 0.9s ease-out forwards;
}
.page-header .page-header__title span:nth-child(5)::before {
    animation: slideIn 0.4s 1.2s ease-out forwards;
}
.page-header .page-header__title span:nth-child(6)::before {
    animation: slideIn 0.4s 1.5s ease-out forwards;
}

@keyframes slideIn {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.section--rows {
}

.section--rows::before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-blue);
    z-index: -1;
}

.section--rows::after {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background: var(--color-purple);
    z-index: -1;
}

.section--rows .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section--rows .section {
    width: 50%;
    max-width: 518px;
    padding: 75px 0;
}

.section--rows .section .section__title {
    color: var(--color-white);
    width: 100%;
    text-align: left;
    font-size: clamp(32px, 5vw, 55px);
    line-height: 1.5;
    font-weight: 400;
}

.section--rows .section .section__description {
    color: var(--color-white);
    width: 100%;
    text-align: left;
    margin: 27px 0 0 0;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 1.5;
    font-weight: 300;
}

.section--rows .section .section__controls {
    margin: 44px 0 0 0;
}

.section--rows .section--planning .section__controls .btn:hover {
    background: var(--color-white);
    color: var(--color-blue);
}

.section--rows .section--prices .section__controls .btn:hover {
    background: var(--color-white);
    color: var(--color-purple)
}

@media (max-width: 1080px) {
    .section--rows {
        overflow: hidden;
    }

    .section--rows .section {
        width: 100%;
        max-width: 100%;
        padding: 50px clamp(0px, 2%, 25px);
    }

    .section--rows::before,
    .section--rows::after {
        display: none;
    }

    .section--rows .section--planning::before {
        content: '';
        width: calc(100% + 200px);
        height: 100%;
        position: absolute;
        top: 0;
        left: -100px;
        background: var(--color-blue);
        z-index: -1;
    }

    .section--rows .section--prices::before {
        content: '';
        width: calc(100% + 200px);
        height: 100%;
        position: absolute;
        top: 0;
        left: -100px;
        background: var(--color-purple);
        z-index: -1;
    }

    .section--rows .section .section__title {
        width: 100%;
        text-align: center;
        font-size: clamp(32px, 5vw, 55px);
        line-height: 1.5;
        font-weight: 400;
    }

    .section--rows .section .section__description {
        width: 100%;
        text-align: center;
    }

    .section--rows .section .section__description br {
        display: none;
    }

    .section--rows .section .section__controls {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.section--redirect-contact {
    padding: 66px 0 87px 0;
}

.section--redirect-contact .section__title {
    width: 100%;
    text-align: center;
}

.section--redirect-contact .section__description {
    width: 100%;
    text-align: center;
    margin: 27px 0 0 0;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 1.5;
    font-weight: 300;
}

.section--redirect-contact .section__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 44px 0 0 0;
}

.section--redirect-contact .section__controls .btn {
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.section--redirect-contact .section__controls .btn:hover {
    color: var(--color-blue);
    background: var(--color-white);
}

@media (max-width: 1080px) {
    .section--redirect-contact {
        padding: 50px 0;
    }

    .section--redirect-contact .section__description br {
        display: none;
    }
}


.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 68px 0 0 0;
}

.slider-wrapper .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.slider-wrapper .slider-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-wrapper .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-wrapper .slider-controls {
    position: absolute;
    bottom: 15px;
    right: 15Px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slider-wrapper .slider-btn {
    background: var(--color-purple);
    color: #252e38;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: linear .15s;
}

.slider-wrapper .slider-btn svg {
    width: 12px;
    margin-bottom: -3px;
}

.slider-wrapper .slider-btn svg * {
    fill: var(--color-white);
    transition: linear .15s;
}

.slider-wrapper .slider-btn:hover {
    background: var(--color-white);
}

.slider-wrapper .slider-btn:hover svg * {
    fill: var(--color-purple);
}


.page-footer {
    background: var(--color-grey);
    padding: 42px 0 35px;
}

.page-footer .page-footer__deco {
    position: absolute;
    bottom: 0;
    left: 30%;
    z-index: 10;
    max-width: 80%;
}

@media (max-width: 1650px) {
    .page-footer .page-footer__deco {
        left: 20%;
    }
}

@media (max-width: 1200px) {
    .page-footer .page-footer__deco {
        left: 15%;
    }
}

.page-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 100;
}

.page-footer .page-footer__address {
    margin-top: 26px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
    font-weight: 300;
}

.page-footer .page-footer__address a {
    color: var(--color-black);
    text-decoration: none;
    transition: linear .15s;
}

.page-footer .page-footer__address a:hover {
    color: var(--color-blue);
}

.page-footer .page-footer__address p:not(:first-child) {
    margin-top: 12px;
}

.page-footer .page-footer__address a:hover {
    text-decoration: underline;
}

.page-footer .page-footer__column:nth-child(1) {
    width: 15%;
}

.page-footer .page-footer__logo {
    max-width: 100%;
}

.page-footer .page-footer__logo img {
    max-width: 100%;
}

.page-footer .page-footer__column:nth-child(2) {
    width: 80%;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 0;
}

.page-footer .block {
    flex: 0 0 auto;
}

.page-footer .block .block__title {
    color: var(--color-black);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.5;
    font-weight: 400;
    text-decoration: none;
    transition: linear .15s;
}

.page-footer .block .block__title:hover {
    text-decoration: underline;
}

.page-footer .block .block__list {
    margin: 24px 0 0 0;
}

.page-footer .block .block__list .block__item {
}

.page-footer .block .block__list .block__item a {
    color: var(--color-black);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    font-weight: 300;
    text-decoration: none;
    transition: linear .15s;
}

.page-footer .block .block__list .block__item a:hover {
    text-decoration: underline;
}

.page-footer .block:nth-child(1) a:hover,
.page-footer .block:nth-child(2) a:hover {
    color: var(--color-blue);
}

.page-footer .block:nth-child(3) a:hover,
.page-footer .block:nth-child(4) a:hover {
    color: var(--color-purple);
}

.page-footer .block:nth-child(5) a:hover,
.page-footer .block:nth-child(6) a:hover {
    color: var(--color-pink);
}

.page-footer .network__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 24px 0 0 0;
}

.page-footer .network__list .network__item {
}

.page-footer .network__list .network__item a {
    width: 32px;
    height: 32Px;
    background: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: linear .15s;
}

.page-footer .network__list .network__item a:hover {
    background: var(--color-blue);
}

.page-footer .network__list .network__item a svg * {
    fill: var(--color-white);
}

.page-footer .network__list .network__item a.network__link--facebook svg {
    width: 10Px;
}

.page-footer .network__list .network__item a.network__link--instagram svg {
    width: 16Px;
}

@media (max-width: 1080px) {
    .page-footer .page-footer__column:nth-child(2) {
        width: 70%;
    }

    .page-footer .block {
        max-width: calc(100% / 3);
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 750px) {
    .page-footer {
        padding-bottom: 70px;
    }

    .page-footer .page-footer__address {
        text-align: center;
    }

    .page-footer .page-footer__column:nth-child(1) {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .page-footer .page-footer__column:nth-child(2) {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px 0;
    }

    .page-footer .block {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .page-footer .block .block__title {
        width: 100%;
        text-align: center;
    }

    .page-footer .block .block__list {
        margin-top: 0px;
    }

    .page-footer .block .block__list .block__item {
        text-align: center;
    }

    .page-footer .block .block__list .block__item a {

    }

}


form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form {
    width: 100%;
    max-width: 770px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

form label {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(16px, 5vw, 18px);
    text-transform: uppercase;

    z-index: 10;
    line-height: 50px;
    pointer-events: none;
    color: var(--color-black);
    transition: linear 0.3s;
}

form label span {
    margin: 0 0 0 3px;
}

form label.focused {
    color: var(--color-pink);
    font-size: 14px;
    line-height: 20px;
    top: -15px;
}

form input {
    width: 100%;
    border: none;
    padding: 0;
    border-bottom: 2px solid var(--color-pink);
    z-index: 5;
    line-height: 50px;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    border-radius: 0;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(16px, 5vw, 18px);
}

form textarea {
    width: 100%;
    height: 175px;
    resize: none;
    border: none;
    padding: 14px 0 0 0;
    border-bottom: 2px solid var(--color-pink);
    z-index: 5;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(16px, 5vw, 18px);
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    border-radius: 0;
}

form .wpcf7-spinner {
    display: none;
}

form .form__row {
    position: relative;
}

form .wpcf7-form-control-wrap {
    width: 100%;
    height: 100%;
    display: block;
}

form .wpcf7-not-valid-tip {
    width: 100%;
    font-size: 14px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    text-align: right;
}

form .wpcf7-response-output {
    border: none !important;
    width: 100% !important;
    text-align: center !important;
    margin: 20px 0 0 0 !important;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    line-height: 1.5;
}

form .btn--submit {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;

    display: inline;
    width: auto;
    line-height: 1.5;
    color: var(--color-white);
    padding: clamp(4px, 5vw, 8px) clamp(16px, 5vw, 20px);
    background: var(--color-blue);
    text-decoration: none;
    border:1px solid var(--color-blue);
    font-size: clamp(18px, 3vw, 23px);
    transition: linear .15s;
    text-align: center;
    cursor: pointer;
}
form .btn--submit:hover{
    background:var(--color-white);
    color:var(--color-blue);
}

@media (max-width: 500px) {
    form .btn--submit {
        width: 100%;
    }
}

.form .form__column {
    width: calc(50% - 35px);
}

.form .form__group {
    width: 100%;
    margin-bottom: 50px;
}

.form .form__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form__copyrights {
    margin: 30px 0 0 0;
    width: 100%;
    text-align: center;
}

.form__copyrights p {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 300;
}

@media all and (max-width: 750px) {
    .form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .form .form__column {
        width: 100%;
    }
}

@media all and (max-width: 500px) {
    form input {
        width: 100%;
    }

    form textarea {
        width: 100%;
    }

    .form .btn--submit {
        width: 100%;
    }
}


.page-deco--left {
    position: absolute;
    top: -160px;
    left: 0;
    z-index: 10;
    max-width: 30%;
    pointer-events: none;
}

.page-deco--right {
    position: absolute;
    top: 100px;
    right: -100px;
    z-index: 10;
    max-width: 40%;
    pointer-events: none;
}

@media (max-width: 1900px) {
    .page-deco--right {
        right: -300px;
    }
}

@media (max-width: 1700px) {
    .page-deco--left {
        right: -300px;
    }

    .page-deco--right {

    }
}

@media (max-width: 1550px) {
    .page-deco--left {
        top: -210px;
        max-width: 20%;
    }

    .page-deco--right {
        top: 225px;
        right: -200px;
        max-width: 30%;
    }
}

@media (max-width: 1080px) {
    .page-deco--left {
        top: -150px;
    }

    .page-deco--right {
        top: 275px;
        right: -100px;
        max-width: 35%;
    }
}

@media (max-width: 750px) {
    .page-deco--left {
        top: -150px;
        max-width: 30%;
    }

    .page-deco--right {

    }
}

@media (max-width: 500px) {
    .page-deco--left {
        top: -150px;
        max-width: 40%;
    }

    .page-deco--right {
        top: 300px;
        right: -100px;
        max-width: 35%;
    }
}
