@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poiret+One&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
}

img,
svg {
    vertical-align: middle;
    width: 100%;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a:not(.button):hover {
    color: #F221C4;
}

html {
    background: rgb(142, 142, 142);
}

.html__fonts {
    font-size: 16px;
}


body {
    max-width: 100%;
    width: 100%;
    margin: auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    line-height: 1.15;
}

.container {
    max-width: 1570px;
    width: 81.770833%;
    /* 1570/1920 */
    margin: 0 auto;
}

h3 {
    font-size: 3rem;
}

.title {
    font-weight: 400;
    margin-bottom: 50px;
}

.center {
    text-align: center;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    background: -o-linear-gradient(339deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    background: linear-gradient(111deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

.loader {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

button {
    font-family: 'Montserrat';
    background: none;
    border: none;
    cursor: pointer;
}

.button {
    width: 100%;
    font-family: 'Montserrat';
    font-size: 1.25rem;
    font-weight: 500;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #F221C4;
    background: #F221C4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFF;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.button.button_big {
    font-size: 1.5rem;
    height: 66px;
}

.button.button_transparent {
    background: none;
    color: #F221C4;
}

.button.button_arrow {
    -webkit-column-gap: 6.122449%;
    -moz-column-gap: 6.122449%;
    column-gap: 6.122449%;
    /* 30/490 */
}

.button.button_arrow svg {
    max-width: 90px;
    width: 18.367347%;
    /* 90/490 */
}

.button:hover {
    -webkit-box-shadow: 0 0 20px #F221C4;
    box-shadow: 0 0 20px #F221C4;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
    border-bottom: 3px solid #606872;
}

.header__wrapper {
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* header .logo{
    background-image: url(../img/sequins.gif);
    background-position: center;
    background-size: cover;
} */

.logo {
    cursor: pointer;
    max-width: 360px;
    width: 22.929936%;
    /* 360/1570 */
}

.logo path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    -webkit-animation: dash 15s linear infinite;
    animation: dash 15s linear infinite;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 400;
        stroke-dashoffset: 400;
    }

    20% {
        stroke-dashoffset: 0;
        stroke: #F221C4;
    }

    80% {
        stroke-dashoffset: 0;
        stroke: #F221C4;
    }

    100% {
        stroke-dasharray: 400;
        stroke-dashoffset: 400;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 400;
        stroke-dashoffset: 400;
    }

    20% {
        stroke-dashoffset: 0;
        stroke: #F221C4;
    }

    80% {
        stroke-dashoffset: 0;
        stroke: #F221C4;
    }

    100% {
        stroke-dasharray: 400;
        stroke-dashoffset: 400;
    }
}


.loader .logo path {
    -webkit-animation: dash_loader 1s linear forwards;
    animation: dash_loader 1s linear forwards;
}

@-webkit-keyframes dash_loader {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash_loader {
    to {
        stroke-dashoffset: 0;
    }
}

.headerContacts__list {
    padding-top: 1.5%;
    list-style: none;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 875px;
    width: 55.732484%;
    /* 875/1570 */
    margin-left: 3.43949%;
    /* 54/1570 */
    margin-right: auto;
}

.headerContacts__list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 6.896552%;
    -moz-column-gap: 6.896552%;
    column-gap: 6.896552%;
    /* 20/290 */
}

.headerContacts__icon {
    max-width: 24px;
    width: 8.275862%;
    /* 24/290 */
}

.headerContacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.headerSocial__list {
    max-width: 187px;
    width: 11.910828%;
    /* 187/1570 */
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10.695187% 1fr 10.695187% 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 10.695187%;
    -moz-column-gap: 10.695187%;
    column-gap: 10.695187%;
    /* 20/187 */
    list-style: none;
}

.headerSocial__list>li {
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.headerSocial__list>li:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.headerSocial__list>li svg {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
}


h1 {
    font-family: 'Poiret One', sans-serif;
    color: #000;
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3.2px;
    line-height: 1;
}

.home {
    padding-top: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.homeContent__list {
    list-style: none;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -ms-grid-columns: 1fr 4.140127% 1fr 4.140127% 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4.140127%;
    -moz-column-gap: 4.140127%;
    column-gap: 4.140127%;
    /* 65/1570 */
    margin-top: 30px;
}

.homeContent__list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 50px;
    height: 100%;
}

.homeContent__img {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.homeContent__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.homeContent__video {
    width: 100%;
}

.homeContent__video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.homeContent__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.homeContent__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 17px;
}

.home__link {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.home__link:hover {
    -webkit-box-shadow: 0 0 20px #F221C4;
    box-shadow: 0 0 20px #F221C4;
}

.home__link svg {
    height: 50%;
}


.footer {
    background: #030303;
    color: white;
    padding: 50px 0 25px;
}

.footer a {
    color: white;
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footerContacts__list {
    max-width: 1270px;
    width: 80.89172%;
    /* 1270/1570 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footerContacts__list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.footerContacts__list>li svg {
    width: 23px;
    max-width: 23px;
}

.footerContacts__list>li>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.development {
    max-width: 165px;
    width: 10.509554%;
    /* 165/1570 */
}

.copy {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 1rem;
}

.copy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: -o-radial-gradient(50% 50%, 50% 50%, #F221C4 0%, rgba(242, 33, 196, 0.00) 100%);
    background: radial-gradient(50% 50% at 50% 50%, #F221C4 0%, rgba(242, 33, 196, 0.00) 100%);
}

.gallary {
    margin-top: 70px;
}

.gallary__text {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #000;
}

.gallary__wrapper {
    position: relative;
    margin-top: 30px;
}

.gallary__top,
.gallary__bottom {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 99;
}

.gallary__top {
    top: -2px;
}

.gallary__top img,
.gallary__bottom img {
    height: 100%;
    display: block;
}

.gallary__bottom {
    bottom: -2px;
}

.gallary__img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallary__button {
    opacity: 0;
    position: absolute;
    max-width: 210px;
    width: 54.545455%;
    /* 210/385 */
    height: 55px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFF;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1.8px solid rgba(242, 33, 196, 0.43);
    background: -o-linear-gradient(339deg, rgba(255, 255, 255, 0.10) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    background: linear-gradient(111deg, rgba(255, 255, 255, 0.10) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.gallary__img:hover .gallary__button {
    opacity: 1;
}

.gallarySwiper__button::after {
    content: '';
    display: none;
}

.gallarySwiper__button {
    width: auto;
    height: auto;
    margin: 0;
    width: 3.4375%;
    /* 66/1920 */
    max-width: 66px;
}

.gallary__swiper {
    max-width: 1470px;
    width: 93.630573%;
    /* 1470/1570 */
    margin: 0 auto;
}

.gallarySwiper__button.swiper-button-next {
    right: 7.291667%;
    /* 140/1920 */
}

.gallarySwiper__button.swiper-button-prev {
    left: 7.291667%;
    /* 140/1920 */
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination__line.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
}

.gallary__wrapper .pagination__line.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: -30px;
    z-index: 999;
}


.pagination__line.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    max-width: 157px;
    width: 8.177083%;
    /* 157/1920 */
    height: 2px;
    border-radius: 0;
}

.pagination__line.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F221C4;
}

.installmentPlan {
    margin-top: 140px;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFC8EC), to(rgba(215, 215, 215, 0.22)));
    background: -o-linear-gradient(top, #FFC8EC 0%, rgba(215, 215, 215, 0.22) 100%);
    background: linear-gradient(180deg, #FFC8EC 0%, rgba(215, 215, 215, 0.22) 100%);
}

.installmentPlan .container {
    max-width: 1700px;
    width: 88.541667%;
    /* 1700/1920 */
    margin: 0 3.125% 0 auto;
    /* 60/1920 */
}

.installmentPlan__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 52.941176%;
    grid-template-columns: 1fr 52.941176%;
    /* 900/1700 */
}

.installmentPlan__img {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.installmentPlan__img img {
    width: 100%;
    height: calc(100% - 50px);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
}

.installmentPlan__carts {
    list-style: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3.125% 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.125%;
    -moz-column-gap: 3.125%;
    column-gap: 3.125%;
    /* 25/800 */
}

.installmentPlan__carts>li {
    border-radius: 10px;
    overflow: hidden;
}

.installmentPlan__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 35px;
    font-size: 2.25rem;
    padding: 50px 0;
}

.installmentPlan__content .button {
    max-width: 370px;
    width: 46.25%;
    /* 370/800 */
}

.catalog {
    margin-top: 75px;
}

.catalog .container {
    max-width: 1610px;
    width: 83.854167%;
    /* 1610/1920 */
}

.product__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    font-family: 'Poiret One';
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 10px;
}

.product__rating {
    font-family: 'Montserrat', sans-serif;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 15px 1fr;
    grid-template-columns: 15px 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #F221C4;
    font-size: 1rem;
    font-weight: 600;
}


.pagination__circle.swiper-pagination {
    text-align: left;
    margin-left: 5%;
}

.pagination__circle.swiper-pagination .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    background: white;
    opacity: 1;
}

.pagination__circle.swiper-pagination .swiper-pagination-bullet-active {
    background: #F221C4;
}

.product__gallary__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.product__gallary__item:hover .gallary__button {
    opacity: 1;
}

.catalog__button::after {
    content: '';
    display: none;
}

.catalog__button {
    width: auto;
    height: auto;
    position: relative;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: #F221C4;
    border: 2px solid #F221C4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.catalog__button svg {
    width: 100%;
}

.catalogButton__wrapper {
    max-width: 100px;
    width: 6.369427%;
    /* 100/1570 */
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0 0 auto;
    margin-bottom: 25px;
}

.swiper-button-prev.catalog__button {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background: white;
}

.swiper-button-prev.catalog__button svg path {
    stroke: #F221C4;
}

.catalog__wrapper .button {
    max-width: 370px;
    width: 23.566879%;
    /* 370/1570 */
    margin: 0 auto;
    margin-top: 50px;
}

.review {
    margin-top: 100px;
    position: relative;
}

.review__item {
    border-radius: 40px;
    overflow: hidden;
}

.review__item img {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.review__item:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.review__swiper {
    max-width: 1430px;
    width: 91.082803%;
    /* 1430/1570 */
}

.review__swiper .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-image: url(../img/review/bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.review__swiper .swiper-slide {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.review__swiper .swiper-slide.swiper-slide-active .review__item {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.review .swiper-pagination {
    margin-top: 30px;
}

.delivery {
    margin-top: 100px;
}

.delivery__wrapper h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

.delivery__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    margin-top: 30px;
    font-size: 1.5rem;
}

.delivery__list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.delivery__list>li ul{
    padding-left: 2%;
    box-sizing: border-box;
}

.delivery__img img {
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center right;
    object-position: center right;
}

.contacts {
    margin-top: 120px;
}

.contacts__maps iframe {
    position: relative;
    z-index: 2;
    height: 360px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contacts__content>ul {
    position: relative;
    z-index: 3;
    list-style: none;
    border-radius: 10px;
    border: 1.8px solid #F221C4;
    background: -o-linear-gradient(339deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    background: linear-gradient(111deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.contacts__maps {
    position: relative;
}

.contacts__wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.contacts__content,
.contacts__wrapper .container {
    height: 100%;
}

.social_list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 15px 30px 15px 30px;
    grid-template-columns: repeat(3, 30px);
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.social_list>li {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.social_list>li:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.social_list svg {
    border-radius: 50%;
    display: block;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
}

.application {
    position: relative;
}

.application__bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.application__content {
    position: absolute;
    max-width: 490px;
    width: 25.520833%;
    /* 490/1920 */
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 140px;
}

.application__content a {
    color: white;
}

.application__inst-logo {
    max-width: 93px;
    width: 18.979592%;
    /* 93/490 */
    margin: 0 auto;
    margin-bottom: 10px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: -o-linear-gradient(339deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    background: linear-gradient(111deg, rgba(255, 255, 255, 0.50) -4.87%, rgba(255, 255, 255, 0.00) 103.95%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99999;
    overflow: auto;
}

.modal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 50px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.modal__inner {
    position: relative;
    max-width: 888px;
    width: 46.25%;
    /* 888/1920 */
    background: #FFEBED;
    padding: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.modal__img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 532px;
    width: 59.90991%;
    /* 532/888 */
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.modal__img img {
    width: 100%;
    height: 85%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
}

.modal__window {
    position: relative;
    border-radius: 5px;
    border: 1px solid #F221C4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.modal__content {
    position: relative;
    z-index: 2;
    font-size: 1.375rem;
    width: 100%;
    margin-left: 6.744186%;
    /* 58/860 */
    padding: 50px 0 65px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 35px;
    color: #2D2C30;
}

#thank .modal__content {
    text-align: center;
}

.modal__title p {
    margin-top: 10px;
}

.modal__content form {
    max-width: 336px;
    width: 41.895262%;
    /* 336/802 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
}

input[type=text] {
    height: 56px;
    border-radius: 50px;
    background: #FAF9FB;
    border: none;
    width: 100%;
    display: block;
    color: rgba(0, 0, 0, 0.60);
    font-family: 'Montserrat';
    font-size: 1.25rem;
    padding-left: 4%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pers_data {
    font-size: 0.875rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 16px 10px 1fr;
    grid-template-columns: 16px 1fr;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    cursor: pointer;
}

.pers_data input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.pers_data input+svg path {
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pers_data input:checked+svg path {
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 22px;
    width: 2.55814%;
    /* 22/860 */
    z-index: 5;
}