@font-face {
    font-family: NunitoSans-Regular;
    src: url(../fonts/NunitoSans-Regular.woff2);
}

@font-face {
    font-family: PPTelegraf-Regular;
    src: url(../fonts/PPTelegraf-Regular.woff2);
}

@font-face {
    font-family: PPTelegraf-UltraBold;
    src: url(../fonts/PPTelegraf-UltraBold.woff2);
}
@font-face {
    font-family: Montserrat-Regular;
    src: url(../fonts/Montserrat-Regular.woff2);
}
:root {
    --main-bg: linear-gradient(158deg,
            rgba(30, 30, 30, 1) 0%,
            rgba(18, 18, 18, 1) 38%,
            rgba(0, 0, 0, 1) 67%,
            rgba(32, 32, 32, 1) 100%);
    --main-color: #eeeeee;
    --second-color: #b3b3b3;
    --focus-color: #24d295c2;
    --nun-regular: NunitoSans-Regular, sans-serif;
    --pptelegraf-regular: Montserrat-Medium, sans-serif;
    --pptelegraf-bold: Montserrat-SemiBold, sans-serif;
    --Montserrat-r: Montserrat-SemiBold, sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    color: var(--main-color);
    font-size: 13px;
    line-height: 130%;
    font-family: var(--nun-regular);
    font-weight: 400;
}

*::selection {
    background: #fcfcfc18;
    /* Safari */
}

*::-moz-selection {
    background: #fcfcfc18;
    /* Firefox */
}

::-webkit-scrollbar {
    background: var(--main-bg);
    width: 10px;

}

::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

body {}

body._lock {
    overflow: hidden;
    position: relative;
}

.text::first-letter {
    padding-left: 50px;
}

.text {
    text-transform: uppercase;
    font-size: 16px;
}

a,
button,
.burger {
    background: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    background: var(--main-bg);
    background-size: 350% 350%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}

.block {
    padding: 50px 0;
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1500px;
}

.header {
    padding: 15px 0;
    z-index: 4;
    min-height: 52px;
    position: absolute;
    width: 100%;
}

.header__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header__form {
    display: none;
}

.header__logo {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
}

.header__logo,
.header__logo>span {
    font-size: 24px;
    line-height: 40px;
    font-family: var(--pptelegraf-bold);
    text-transform: uppercase;
}

.header__logo>span {
    color: var(--text-in-span);
}

.header__menu {
    flex: 0 0 100%;
    padding: 0px;
    height: 0;
    visibility: hidden;

}

.header__menu._active {
    padding: 150px 0 50px;
    height: auto;
    visibility: visible;
    min-height: 100vh;
}

body._lock .header {
    background: var(--main-bg);
}

.header__list-item {
    display: block;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
    text-transform: uppercase;
}

.header__menu._active .header__list>li {
    opacity: 0;
    transform: translateX(-20%);
    -webkit-transform: translateX(-20%);
    -moz-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    -o-transform: translateX(-20%);
}

.header__menu._active .header__list>li:nth-child(1) {
    animation: header-links 0.4s ease-in-out forwards;
    -webkit-animation: header-links 0.4s ease-in-out forwards;
}

.header__menu._active .header__list>li:nth-child(2) {
    animation: header-links 0.6s forwards 0.2s;
    -webkit-animation: header-links 0.6s forwards 0.2s;
}

.header__menu._active .header__list>li:nth-child(3) {
    animation: header-links 0.9s forwards 0.4s;
    -webkit-animation: header-links 0.9s forwards 0.4s;
}

.header__menu._active .header__list>li:nth-child(4) {
    animation: header-links 1.2s forwards 0.5s;
    -webkit-animation: header-links 1.2s forwards 0.5s;
}
.header__menu._active .header__list>li:nth-child(5) {
    animation: header-links 1.5s forwards 0.6s;
    -webkit-animation: header-links 1.5s forwards 0.6s;
}
@keyframes header-links {
    0% {
        opacity: 0;
        transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        -moz-transform: translateX(-15%);
        -ms-transform: translateX(-15%);
        -o-transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }
}

.burger {
    padding: 5px;
    width: 35px;
    height: 30px;
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 26px;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header__burger-body {
    width: 25px;
    height: 20px;
    position: relative;
}

.burger__line {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: var(--main-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.burger__line--1 {
    top: 0;
}

.burger__line--2,
.burger__line--3 {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.burger__line--4 {
    bottom: 0;
}

.burger._active .burger__line--1,
.burger._active .burger__line--4 {
    opacity: 0;
}

.burger._active .burger__line--2 {
    height: 2px;
    transform: translateY(50%) rotate(45deg);
    -webkit-transform: translateY(50%) rotate(45deg);
    -moz-transform: translateY(50%) rotate(45deg);
    -ms-transform: translateY(50%) rotate(45deg);
    -o-transform: translateY(50%) rotate(45deg);
}

.burger._active .burger__line--3 {
    height: 2px;
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
}

.block-header {
    display: flex;
    gap: 10px;
    padding: 20px;
    padding-bottom: 0;
    padding-top: 16px;
    margin-bottom: 40px;
    position: relative;
}

.block-header__top {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--main-color);
    top: 0;
    left: 0;
}

.block-header_big_marg {
    margin-bottom: 50px;
}

.block-header__item_num {
    flex: 0 0 30%;
}

.block-header__item_title,
.block-header__item-city {
    flex: auto;
}

.block-header__item-title,
.block-header__item_num,
.block-header__item-city {
    text-transform: uppercase;
    font-size: 13px;
}

.block-header__item-city {
    text-align: right;
}

.hero {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.hero__video-media {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero__title {
    display: none;
}

.hero__box-link {
    text-align: center;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero__link {
    width: 90px;
    height: 90px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* about============ */
.about__body {
    position: relative;
    background: url(../img/bg/ellipse.png) no-repeat;
    background-size: 600px;
    background-position: center;
    animation: about 10s ease infinite;
    -webkit-animation: about 10s ease infinite;
}

@keyframes about {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 20% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}


.about__text {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.about__box-img {
    width: 100%;
    padding-top: 150%;
    position: relative;
}

.about__img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.about__box-link {
    text-align: center;
}

.about__link {
    width: 110px;
    height: 110px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about__name {
    line-height: 100%;
    font-size: 100px;
    font-family: var(--pptelegraf-bold);
    position: relative;
    text-align: center;
    text-transform: uppercase;
    animation: text 8s infinite linear;
    padding-left: 100%;
    white-space: nowrap;
    z-index: 3;
    -webkit-animation: text 8s infinite linear;
    margin-bottom: 50px;
}

@keyframes text {
    0% {
        transform: translate(0, -30%);
        -webkit-transform: translate(0, -30%);
        -moz-transform: translate(0, -30%);
        -ms-transform: translate(0, -30%);
        -o-transform: translate(0, -30%);
    }

    100% {
        transform: translate(-350%, -30%);
        -webkit-transform: translate(-350%, -30%);
        -moz-transform: translate(-350%, -30%);
        -ms-transform: translate(-350%, -30%);
        -o-transform: translate(-350%, -30%);
    }
}

.projects__top-text {
    margin-bottom: 40px;
    max-width: 500px;
}

.projects__top {
    display: flex;
    flex-direction: column-reverse;
}

.projects__top-link {
    font-size: 13px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-bottom: 40px;
}

.projects__top-link>p {
    display: block;
    white-space: nowrap;
    margin-left: -10px;
}

.projects__top-link>p:nth-child(2) {
    padding-left: 20px;
}

.projects__bottom-cards {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}

.projects__card {
    width: calc(100%/1 - 10px);
    margin: 5px;
    margin-bottom: 20px;
    display: flex;
    position: relative;
}

.projects__card-box-img {
    width: 100%;
    padding-top: 130%;
    position: relative;
}

.projects__card-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: 1;
}

.projects__card-info {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 30px;
}

.projects__card-address {
    display: flex;
    gap: 5px;
    margin-bottom: 2px;
}

.projects__card-address-item {
    text-transform: uppercase;
    font-family: var(--pptelegraf-bold);
}

.projects__card-title {
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--pptelegraf-bold);
    margin-bottom: 5px;
}

.projects__card-arrow {
    width: 30px;
    object-fit: contain;
}

.projects__card-area-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.call__subtitle {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.call__title {
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.call__box-link {
    text-align: center;
}

.call__link {
    width: 110px;
    height: 110px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.prpjects {
    padding: 100px 0;
}

.intro__body {
    padding: 200px 0 0px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.title {
    font-size: 46px;
    text-transform: uppercase;
    font-family: var(--pptelegraf-bold);
}

.intro__title {
    text-align: right;
}


.intro__box-img {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.intro__box-img_long {
    padding-top: 100%;
}

.intro__img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.employees__columns {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    margin: 0 -30px;
}

.employees__column {
    width: calc(100%/1 - 30px);
    margin: 15px;
}

.employees__column_cards {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.employees__card-box-img {
    width: 100%;
    padding-top: 130%;
    position: relative;
}

.employees__card-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: 1;
}

.employees__card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.employees__card-name,
.employees__card-job {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--pptelegraf-bold);
}

.employees__card-bottom-line {
    width: 100%;
    height: 1px;
    background: var(--main-color);
}

.price__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.price__card {
    width: 100%;
    max-width: 600px;
}

.price__card-mid {
    padding: 20px;
}

.price__card-title,
.price__card-price {
    text-transform: uppercase;
}

.price__card-line {
    width: 100%;
    height: 1px;
    background: var(--main-color);
}

.price__card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
}

.price__card-mid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price__card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price__card-list-item {
    padding-left: 20px;
    position: relative;
    text-transform: uppercase;
}

.price__card-list-item::after {
    content: '';
    position: absolute;
    top: 5.5px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.price__card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.price__card-form {
    text-transform: uppercase;
}

.price__card-list-social {
    display: flex;
    gap: 3px;
}

.price__card-social-link,
.price__card-social-item {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--pptelegraf-bold);
}

.conect__form-box {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.conect__form-input,
.conect__form-textarea,
.conect__form-btn {
    background: transparent;
    padding: 20px;
    border-bottom: 1px solid var(--main-color);
    text-align: left;
    color: var(--main-color);
    text-transform: uppercase;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.conect__form-input:focus,
.conect__form-textarea:focus {
    border-bottom: 1px solid var(--focus-color);
}

.conect__form-input::placeholder,
.conect__form-textarea::placeholder {
    color: var(--main-color);
}

.content__title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.content__body {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.gallery {
    padding-bottom: 0;
}

.gallery__columns {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}

.gallery__column {
    width: calc(100%/2 - 10px);
    margin: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery__box-img_long {
    width: 100%;
    position: relative;
    padding-top: 130%;
}

.gallery__box-img_wide {
    width: 100%;
    position: relative;
    padding-top: 65%;
}


.gallery__img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    z-index: 1;
}

.choice {
    padding: 150px 0;
}

.choice__slide {
    position: relative;
}

.choice__slide-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.choice__slide-box-img {
    width: 90%;
    position: relative;
    padding-top: 90%;
    margin: 0 auto;
}

.choice__slide-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.choice__slide-title {
    top: -20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 1.2s;
    -webkit-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -o-transition: all 1.2s;
}

.swiper-slide-next>.choice__slide-title {
    opacity: 0.1;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.swiper-slide-prev>.choice__slide-title {
    opacity: 0.1;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.choice__slide-text::first-letter {
    padding-left: 30px;
}

.choice__slide-text {
    color: var(--second-color);
    opacity: 1;
    text-transform: uppercase;
    margin-bottom: 5px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    max-width: 500px;
}

.swiper-slide-next>.choice__slide-info>.choice__slide-text {
    opacity: 0.1;
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
}

.swiper-slide-prev>.choice__slide-info>.choice__slide-text {
    opacity: 0.1;
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
}

.choice__slide-adress {
    display: flex;
    gap: 3px;
}

.choice__slide-adress-item {
    color: var(--second-color);
    opacity: 1;
    text-transform: uppercase;
    transition: all 1.4s;
    -webkit-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -ms-transition: all 1.4s;
    -o-transition: all 1.4s;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.swiper-slide-next>.choice__slide-info>.choice__slide-adress>.choice__slide-adress-item {
    opacity: 0.1;
    transform: translateY(13px);
    -webkit-transform: translateY(13px);
    -moz-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
}

.swiper-slide-prev>.choice__slide-info>.choice__slide-adress>.choice__slide-adress-item {
    opacity: 0.1;
    transform: translateY(13px);
    -webkit-transform: translateY(13px);
    -moz-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
}

.choice__swiper-pagination {
    display: block;
    position: relative;
    top: 0;
    z-index: 1;
    height: 18px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: var(--second-color);
    opacity: 0.7;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    width: 2px;
    height: 20px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.swiper-pagination-bullet-active {
    height: 100%;
    opacity: 1;
    color: var(--main-color);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 54px;
    border-radius: 50%;
    width: 18px;
    height: 100%;
    background: white;
}

.wpcf7-submit:hover {
    color: #737373;
}

@media screen and (max-width:900px) {
    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 24px;
        border-radius: 50%;
        width: 18px;
        height: 100%;
        background: white;
    }

    .choice__swiper-pagination {
        display: block;
        position: relative;
        top: 0;
        z-index: 1;
        height: 18px;
        display: flex;
        align-items: end;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: 0px;
    }

}
