:root {
    --color-grey: #2c2c2c;
    --color-white: #ffffff;
    --accent-color: #00a8d2;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

address {
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Regular'),
    local('Montserrat-Regular'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Medium'),
    local('Montserrat-Medium'),
    url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat SemiBold'),
    local('Montserrat-SemiBold'),
    url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

body {
    position: relative;
    padding-top: 81px;
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn-reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.stop-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    padding-right: 17px;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-slide {
    height: auto;
}

.popup-hover {
    position: relative;
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.popup-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.popup-hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 81px;
    height: 79px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg width='81' height='79' viewBox='0 0 81 79' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='25.1624' height='6.2906' transform='matrix(-0.72074 0.693205 0.72074 0.693205 18.1355 57.1966)' fill='%2300a8d2'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M44.2696 65.7708C28.041 65.7708 14.8852 52.6834 14.8852 36.5393C14.8852 20.3952 28.041 7.30786 44.2696 7.30786C60.4981 7.30786 73.6539 20.3952 73.6539 36.5393C73.6539 52.6834 60.4981 65.7708 44.2696 65.7708ZM44.2696 73.0786C23.9839 73.0786 7.53917 56.7194 7.53917 36.5393C7.53917 16.3592 23.9839 0 44.2696 0C64.5552 0 80.9999 16.3592 80.9999 36.5393C80.9999 56.7194 64.5552 73.0786 44.2696 73.0786Z' fill='%2300a8d2'/%3E%3Cpath d='M42 24L42 48.9999L47.9954 48.9999L47.9955 23.9999L42 24Z' fill='%2300a8d2'/%3E%3Cpath d='M57.2336 33.9999L32.2336 33.9999L32.2336 39.9954L57.2336 39.9954L57.2336 33.9999Z' fill='%2300a8d2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.popup-hover:hover::before {
    opacity: 1;
}

.popup-hover:hover::after {
    opacity: 1;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: padding 0.3s ease;
    transition: padding 0.3s ease;
    padding: 35px 0;
    background: var(--color-white);
    z-index: 1000;
}

.header.shrink {
    padding: 10px 0;
}

.header__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .logo {
    z-index: 1001;
}

.logo {
    font-size: 0;
}

.menu__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 48px;
}

.menu__link {
    font-size: 15px;
    color: var(--color-grey);
}

.hvr-outline-out:before {
    border: 2px solid transparent;
}

.hvr-outline-out:hover:before {
    border-color: var(--accent-color);
}

.burger {
    display: none;
}

.hero {
    background: var(--color-white);
    overflow-x: hidden;
}

.hero__container {
    position: relative;
    padding: 97px 15px 90px;
    min-height: 703px;
}

.hero__container::after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: 295px;
    width: 1004px;
    height: 620px;
    background-image: url("../images/hero-img.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.hero__content {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 261px 299px auto;
    grid-template-columns: 261px 299px auto;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    z-index: 2;
}

.hero__content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.hero__content > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.hero__content > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.hero__content > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.hero__content > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.hero__content > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}

.hero__content > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.hero__content > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
}

.hero__content > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.hero__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    margin-bottom: 28px;
    font-size: 60px;
    color: var(--color-grey);
    font-weight: 600;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
    letter-spacing: 0.6px;
}

.hero__description {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    margin-bottom: 60px;
    font-size: 35px;
    color: var(--color-grey);
    letter-spacing: 0.5px;
}

.hero__title-span {
    color: var(--color-white);
}

.hero__description-span {
    color: #fffefe;
}

.hero__booking-btn {
    position: relative;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
    grid-column: auto;
    -ms-grid-column-align: start;
    justify-self: self-start;
    background: var(--color-grey);
    padding: 19px 67px 19px 22px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.313;
}

.hero__booking-btn::after {
    content: '';
    position: absolute;
    display: block;
    width: 34px;
    height: 34px;
    top: calc(50% - 17px);
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='34px' height='34px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7L15 12L10 17' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hero__video-btn {
    position: relative;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
    grid-column: auto;
    -ms-grid-column-align: center;
    justify-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.056;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.hvr-bounce-to-right:before {
    background: var(--accent-color);
}

.hero__video-btn::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.hero__video-btn:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 26px;
    border: 6px solid transparent;
    border-left: 11px solid #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.hero__video-btn:hover::before {
    border-color: var(--accent-color);
}

.hero__video-btn:hover::after {
    border-left-color: var(--accent-color);
}

.hero__data {
    position: relative;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / span 1;
    grid-column: auto;
    -ms-grid-column-align: end;
    justify-self: self-end;
    margin-top: -54px;
    width: 399px;
    height: 218px;
    background-image: url("../images/hero-dashed-line.png");
    background-repeat: no-repeat;
    background-position: bottom 64px left 5px;
}

.hero__data-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: rgb(44, 44, 44);
    line-height: 1.4;
}

.hero__data-item::after {
    content: '';
    position: absolute;
    display: block;
    width: 7px;
    height: 7px;
    background: #2c2c2c;
    border-radius: 50%;
}

.hero__data .hero__data-item:nth-child(3) {
    top: 0;
    right: 0;
}

.hero__data .hero__data-item:nth-child(3)::after {
    left: 3px;
    bottom: -16px;
}

.hero__data .hero__data-item:nth-child(2) {
    top: 20px;
    left: 81px;
}

.hero__data .hero__data-item:nth-child(2)::after {
    left: 0;
    bottom: -22px;
}

.hero__data .hero__data-item:nth-child(1) {
    bottom: 0;
    left: 0;
}

.hero__data .hero__data-item:nth-child(1)::after {
    left: -1px;
    top: -21px;
}

.about-us {
    padding: 122px 0 90px;
    background: var(--color-grey);
}

.about-us__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(auto, 50%) minmax(50%, 432px);
    grid-template-columns: minmax(auto, 50%) minmax(50%, 432px);
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    width: 100%;
}

.about-us__content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.about-us__content > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.about-us__content > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.about-us__content > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.about-us__info-image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    padding: 72px 43px 72px;
    font-size: 0;
    background: -webkit-linear-gradient(left,
    var(--color-white) 71.9%,
    var(--color-grey) 28.1%);
    background: linear-gradient(to right,
    var(--color-white) 71.9%,
    var(--color-grey) 28.1%);
}

.about-us__info-image-img {
    max-width: 100%;
    height: 304px;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-us__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-column-align: end;
    justify-self: self-end;
    width: 100%;
    max-width: 429px;
    margin-bottom: 50px;
    font-size: 35px;
    line-height: 0.8;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.about-us__text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-column-align: end;
    justify-self: self-end;
    max-width: 432px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.438;
}

.advantages {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/advantages-dashed-line-x.png');
    background-position: top 173px center;
    background-repeat: no-repeat;
    background-size: auto;
    background-color: var(--color-grey);;
}

.advantages__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.advantages__title {
    margin-bottom: 55px;
    max-width: 566px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.286;
    text-align: center;
}

.advantages__list {
    min-height: 520px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.advantages__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc((100% - 3 * 54px) / 4);
    min-width: 237px;
    gap: 32px;
}

.advantages__item:nth-child(even) {
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.advantages__item:nth-child(2) {
    -webkit-transform: translate(9px, 18px);
    transform: translate(9px, 18px);
}

.advantages__item:nth-child(3) {
    -webkit-transform: translate(17px, 2px);
    transform: translate(17px, 2px);
}

.advantages__item:nth-child(4) {
    -webkit-transform: translate(8px, 31px);
    transform: translate(8px, 31px);
}

.advantages__item-number {
    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: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--color-grey);
    line-height: 0.7;
    background-color: var(--color-white);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

.advantages__item:hover .advantages__item-number {
    color: var(--color-white);
    background-color: var(--accent-color);
}

.advantages__item-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.advantages__item-title {
    margin-bottom: 15px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    line-height: 1.167;
    text-align: center;
}

.advantages__item-text {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 1.5;
    text-align: center;
}

.places {
    padding: 110px 0 81px;
    background: var(--color-grey);
    overflow-x: hidden;
}

.places__title {
    margin-bottom: 55px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-align: center;
}

.places__content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.map {
    position: relative;
    margin-top: 40px;
    width: 487px;
    height: 374px;
    background-image: url('../images/places-map.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.map::after {
    content: '';
    position: absolute;
    right: 114px;
    bottom: 83px;
    width: 101px;
    height: 47px;
    background-image: url('../images/map-name.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.map__places {
    position: absolute;
    bottom: 38px;
    left: 87px;
    width: 109px;
    height: 182px;
    background-image: url(../images/places-dashed-line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.map__place {
    position: absolute;
}

.map__places .map__place:nth-child(1) {
    top: -14px;
    left: -12px;
}

.map__places .map__place:nth-child(2) {
    top: 68px;
    left: 50px;
}

.map__places .map__place:nth-child(3) {
    bottom: 48px;
    left: 3px;
}

.map__places .map__place:nth-child(4) {
    bottom: -7px;
    left: 33px;
}

.map__places .map__place:nth-child(5) {
    right: -21px;
    bottom: -4px;
}

.map__btn {
    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: 27px;
    height: 27px;
    border: 2px solid transparent;
    border-radius: 50%;
    font-size: 14px;
    color: rgb(255, 255, 255);
    -webkit-animation: map-btn 2s infinite;
    animation: map-btn 2s infinite;
    background-color: #2c2c2c;
    -webkit-transition: border-color .3s, -webkit-transform .3s;
    transition: border-color .3s, -webkit-transform .3s;
    transition: border-color .3s, transform .3s;
    transition: border-color .3s, transform .3s, -webkit-transform .3s;
}

.map__btn:hover {
    border-color: var(--accent-color);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.map__btn.map__btn_active {
    background-color: var(--accent-color);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-animation: none;
    animation: none;
    cursor: auto;
}

@-webkit-keyframes map-btn {
    0% {
        background-color: #2c2c2c;
    }
    50% {
        background-color: var(--accent-color);
    }
    100% {
        background-color: #2c2c2c;
    }
}

@keyframes map-btn {
    0% {
        background-color: #2c2c2c;
    }
    50% {
        background-color: var(--accent-color);
    }
    100% {
        background-color: #2c2c2c;
    }
}

.places__list {
    position: relative;
    min-height: 300px;
}

.place {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    -webkit-transition: opacity 0.6s ease, visibility 0.6s, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s, -webkit-transform 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 445px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0;
}

.place.place_active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
}

.place__title {
    margin-bottom: 20px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    line-height: 1.05;
}

.place__description {
    margin-bottom: 24px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.438;
}

.place__image {
    padding: 35px 80px 35px 0;
    background: -webkit-linear-gradient(right, var(--color-white) 75.5%, var(--color-grey) 75.5%);
    background: linear-gradient(to left, var(--color-white) 75.5%, var(--color-grey) 75.5%);
}

.video {
    position: relative;
    height: 700px;
    width: 100%;
    font-size: 0;
    background: var(--color-grey);
}

.video__iframe {
    display: none;
    width: 100%;
    height: 100%;
}

.video__content {
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/video-img.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video__btn {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 320px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-transform: translateX(34px);
    transform: translateX(34px);
    font-size: 18px;
    line-height: 1.278;
    text-align: left;
    color: rgb(255, 255, 255);
}

.video__btn::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: border-color .3s, background-color .3s, -webkit-transform .3s;
    transition: border-color .3s, background-color .3s, -webkit-transform .3s;
    transition: border-color .3s, background-color .3s, transform .3s;
    transition: border-color .3s, background-color .3s, transform .3s, -webkit-transform .3s;
}

.video__btn:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 35px;
    border: 8px solid transparent;
    border-left: 14px solid #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: border-color .3s;
    transition: border-color .3s;
}

.video__btn:hover::before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-color: var(--accent-color);
    background-color: var(--accent-color);
}

.program {
    padding: 118px 0 90px;
    background: var(--color-grey);
}

.program__title {
    margin-bottom: 58px;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: rgb(255, 255, 255);
}

.program__swiper,
.reviews__swiper,
.gallery__swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.program__slider {
    position: relative;
}

.program__slider-pagination {
    position: absolute;
    top: 2px;
    bottom: unset;
    left: unset;
    right: 466px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    width: max-content;
    font-size: 15px;
    color: #a4a4a4;
    line-height: 0.8;
    z-index: 10;
}

.program__slider-day,
.program__slider-pagination .swiper-pagination-current {
    font-size: 25px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.program__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(auto, 50%) minmax(50%, 432px);
    grid-template-columns: minmax(auto, 50%) minmax(50%, 432px);
    -ms-grid-rows: 117px 1fr;
    grid-template-rows: 117px 1fr;
    width: 100%;
}

.program__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.program__item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.program__item > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.program__item > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.program__item-image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    padding: 34px 76px;
    font-size: 0;
    background: -webkit-linear-gradient(left, var(--color-white) 72%, var(--color-grey) 72%);
    background: linear-gradient(to right, var(--color-white) 72%, var(--color-grey) 72%);
}

.program__item-image-img {
    height: 380px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.program__item-title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row-align: end;
    align-self: end;
    margin-bottom: 18px;
    -ms-grid-column-align: end;
    justify-self: self-end;
    width: 100%;
    max-width: 466px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.program__item .scroll-wrapper {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-column-align: end;
    justify-self: self-end;
    height: 170px;
    overflow: auto;
}

.scroll-wrapper::-webkit-scrollbar {
    width: 2px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #a4a4a4;
}

.program__item-description {
    max-width: 466px;
    font-size: 16px;
    line-height: 1.438;
    color: rgb(255, 255, 255);
}

.program__slider-control {
    position: absolute;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    right: 466px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    top: 328px;
    z-index: 10;
}

.slider-btn {
    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: 9px;
    width: 47px;
    height: 47px;
    border: 1px solid transparent;
    -webkit-transition: border-color .3s;
    transition: border-color .3s;
}

.program__slider-control .slider-btn {
    border-color: var(--color-white);
}

.slider-btn svg path {
    -webkit-transition: fill .3s;
    transition: fill .3s;
}

.program__download-link {
    position: absolute;
    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;
    right: 466px;
    top: 429px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    font-size: 16px;
    line-height: 1.313;
    color: rgb(255, 255, 255);
    z-index: 10;
}

.program__download-link svg {
    margin-right: 15px;
}

.program__download-link:hover {
    text-decoration: underline;
}

.program__download-link:hover svg path {
    stroke: var(--accent-color);
}

.program__download-link:hover svg path:not(:last-child) {
    -webkit-animation: download-svg 1s infinite;
    animation: download-svg 1s infinite;
}

@-webkit-keyframes download-svg {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes download-svg {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.reviews {
    padding: 92px 0;
    background: var(--color-grey);
}

.reviews__title {
    margin-bottom: 62px;
    font-size: 35px;
    line-height: 0.6;
    font-weight: 600;
    text-align: center;
    color: rgb(255, 255, 255);
}

.reviews__slider {
    position: relative;
    padding: 55px;
    background: var(--color-white);
}

.reviews__slider-pagination {
    position: absolute;
    top: 94px;
    bottom: unset;
    left: 57px;
    width: max-content;
    font-size: 16px;
    color: var(--color-grey);
    font-weight: 600;
    line-height: 1.188;
    z-index: 10;
}

.feedback {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 55px;
    -moz-column-gap: 55px;
    column-gap: 55px;
}

.feedback__info {
    max-width: 507px;
    width: 50%;
}

.feedback__name {
    margin-bottom: 70px;
    font-size: 20px;
    line-height: 0.8;
    font-weight: 600;
    color: rgb(44, 44, 44);
}

.feedback__info .scroll-wrapper {
    padding-right: 55px;
    height: 230px;
    overflow: auto;
}

.feedback__text {
    font-size: 16px;
    color: rgb(44, 44, 44);
    line-height: 1.438;
}

.feedback__image {
    width: 50%;
    max-width: 400px;
    font-size: 0;
}

.feedback__image-img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.reviews__slider-control {
    position: absolute;
    bottom: 54px;
    left: 54px;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    z-index: 10;
}

.reviews__slider-control .slider-btn {
    border-color: var(--color-grey);
}

.reviews__slider-control .slider-btn:hover,
.program__slider-control .slider-btn:hover {
    border-color: var(--accent-color);
}

.reviews__slider-control .slider-btn:hover svg path,
.program__slider-control .slider-btn:hover svg path {
    fill: var(--accent-color);
}

.slider-btn.swiper-button-disabled,
.slider-btn.swiper-button-disabled:hover {
    border-color: #a4a4a4;
    cursor: auto;
}

.slider-btn.swiper-button-disabled svg path,
.slider-btn.swiper-button-disabled:hover svg path {
    fill: #a4a4a4;
}

.gallery {
    padding: 91px 0 83px;
    background: var(--color-grey);
}

.gallery__title {
    margin-bottom: 59px;
    font-size: 35px;
    line-height: 0.6;
    font-weight: 600;
    text-align: center;
    color: rgb(255, 255, 255);
}

.gallery__slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
}

.gallery__pages {
    width: 100%;
    padding: 10px 0;
}

.gallery__grid {
    display: -ms-grid;
    display: grid;
    --gap: 20px;
    -ms-grid-columns: calc(350 * 100% / (1110 - 3 * var(--gap))) var(--gap) calc(187 * 100% / (1110 - 3 * var(--gap))) var(--gap) calc(231 * 100% / (1110 - 3 * var(--gap))) var(--gap) calc(342 * 100% / (1110 - 3 * var(--gap)));
    grid-template-columns:
            calc(350 * 100% / (1110 - 3 * var(--gap)))
            calc(187 * 100% / (1110 - 3 * var(--gap)))
            calc(231 * 100% / (1110 - 3 * var(--gap)))
            calc(342 * 100% / (1110 - 3 * var(--gap)));
    -ms-grid-rows: 190px 190px;
    grid-template-rows: repeat(2, 190px);
    grid-column-gap: var(--gap);
}

.gallery__grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.gallery__grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.gallery__grid > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.gallery__grid > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
}

.gallery__grid > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.gallery__grid > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}

.gallery__grid > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
}

.gallery__grid > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 7;
}

.gallery__grid-image {
    background: transparent;
    display: block;
    position: relative;
    font-size: 0;
}

.gallery__grid-image-img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery__grid-image_1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 328px;
    width: 100%;
    max-height: 290px;
    height: 100%;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.gallery__grid-image_2 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-row-align: start;
    align-self: self-start;
    -ms-grid-column-align: start;
    justify-self: self-start;
    max-width: 147px;
    width: 100%;
    max-height: 126px;
    height: 100%;
}

.gallery__grid-image_3 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column-align: start;
    justify-self: self-start;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 208px;
    width: 100%;
    max-height: 145px;
    height: 100%;
}

.gallery__grid-image_4 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 298px;
    width: 100%;
    max-height: 167px;
    height: 100%;
    margin-right: 34px;
}

.gallery__grid-image_5 {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-column-align: end;
    justify-self: self-end;
    max-width: 285px;
    width: 100%;
    max-height: 380px;
    height: 100%;
}

.gallery__slider-control {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 11px;
    -moz-column-gap: 11px;
    column-gap: 11px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
}

.swiper-pagination-bullet:hover {
    border-color: var(--accent-color);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-white);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    border-color: var(--color-white);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: unset;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.gallery__slider-prev-btn,
.gallery__slider-next-btn {
    position: relative;
    display: block;
    width: 8px;
    height: 15px;
}

.gallery__slider-prev-btn::before,
.gallery__slider-prev-btn::after,
.gallery__slider-next-btn::before,
.gallery__slider-next-btn::after {
    content: '';
    position: absolute;
    display: block;
    width: 10px;
    height: 1px;
    left: 0;
    background: var(--color-white);
    -webkit-transition: background .2s;
    transition: background .2s;
}

.gallery__slider-prev-btn::before,
.gallery__slider-next-btn::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gallery__slider-prev-btn::after,
.gallery__slider-next-btn::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.gallery__slider-prev-btn::before {
    top: 10px;
}

.gallery__slider-prev-btn::after {
    top: 3px;
}

.gallery__slider-next-btn::before {
    top: 10px;
}

.gallery__slider-next-btn::after {
    top: 3px;
}

.gallery__slider-prev-btn:hover::before,
.gallery__slider-prev-btn:hover::after,
.gallery__slider-next-btn:hover::before,
.gallery__slider-next-btn:hover::after {
    background: var(--accent-color);
}

.mfp-arrow-left:after {
    border-right-color: var(--accent-color);
}

.mfp-arrow-right:after {
    border-left-color: var(--accent-color);
}

.booking {
    padding: 92px 0 125px;
    background-image: url('../images/booking-bg-img.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.booking__title {
    margin-bottom: 66px;
    font-size: 35px;
    font-weight: 600;
    line-height: 0.6;
    text-align: center;
    color: rgb(255, 255, 255);
}

.booking__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-column-align: center;
    justify-self: center;
    max-width: 336px;
}

.booking__form-label {
    display: block;
    margin-bottom: 19px;
    font-size: 15px;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    letter-spacing: -0.3px;
}

.booking__form-legend {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    letter-spacing: -0.3px;
}

.booking__form-radio {
    margin-bottom: 40px;
}

.booking__form-radio-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.booking__form-radio-label {
    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: 35px;
    height: 35px;
    border: 1px solid var(--color-white);
    font-size: 20px;
    line-height: 1.05;
    color: rgb(255, 255, 255);
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: border-color .3s;
    transition: border-color .3s;
}

.booking__form-radio-label:hover {
    border-color: var(--accent-color);
}

.booking__form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-white);
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    background: transparent;
    outline: none;
}

.booking__form-radio-label.error,
.booking__form-input.error {
    border-color: red;
}

.booking__form-radio-input:checked + .booking__form-radio-label {
    background-color: var(--color-white);
    color: var(--color-grey);
}

.booking__form-radio-input:checked + .booking__form-radio-label:hover {
    border-color: var(--color-white);
}

.booking__form-input::-webkit-input-placeholder {
    color: rgb(194, 194, 194);
}

.booking__form-input::-moz-placeholder {
    color: rgb(194, 194, 194);
}

.booking__form-input:-ms-input-placeholder {
    color: rgb(194, 194, 194);
}

.booking__form-input::-ms-input-placeholder {
    color: rgb(194, 194, 194);
}

.booking__form-input::placeholder {
    color: rgb(194, 194, 194);
}

.booking__form-input-error {
    display: none;
    margin-top: 5px;
    font-size: 14px;
    color: red;
}

.booking__form-btn {
    padding: 14px 14px 17px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-grey);
    background: var(--color-white);
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.booking__form-btn:hover {
    color: var(--color-white);
    background: var(--accent-color);
}

.footer {
    padding: 27px 0 29px;
    background: var(--color-white);
}

.footer__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.social {
    -webkit-column-gap: 26px;
    -moz-column-gap: 26px;
    column-gap: 26px;
}

.social__link {
    display: block;
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 45px 45px;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.social__link:hover {
    opacity: 0.9;
}

.social__link_vk {
    background-image: url(../images/vk-social.png);
}

.social__link_inst {
    background-image: url(../images/inst-social.png);
}

.social__link_tg {
    background-image: url(../images/tg-social.png);
}

.footer__phone {
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-grey);
    -webkit-transition: color .3s;
    transition: color .3s;
}

.footer__phone:hover {
    color: var(--accent-color);
}

.gratitude {
    position: fixed;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.gratitude__content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 135px 10px 45px;
    margin: 0 15px;
    max-width: 555px;
    width: 100%;
    text-align: center;
    background-color: var(--color-white);
}

.gratitude__content::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-grey);
}

.gratitude__content::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 50%;
    width: 25px;
    height: 25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: url(../images/gratitude-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
}

.gratitude__close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    overflow: hidden;
}

.gratitude__close-btn-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #2c2c2c;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.gratitude__close-btn:hover .gratitude__close-btn-line {
    background-color: #b61111;
}

.gratitude__close-btn .gratitude__close-btn-line:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.gratitude__close-btn .gratitude__close-btn-line:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.gratitude__title {
    margin-bottom: 27px;
    font-size: 25px;
    color: rgb(44, 44, 44);
    font-weight: 600;
    line-height: 0.84;
}

.gratitude__text {
    margin-bottom: 60px;
    max-width: 366px;
    font-size: 14px;
    color: rgb(44, 44, 44);
    line-height: 1.5;
}

.gratitude__action-btn {
    padding: 17px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: var(--color-grey);
    -webkit-transition: background .3s;
    transition: background .3s;
}

.gratitude__action-btn:hover {
    background: var(--accent-color);
}

.loader {
    position: fixed;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.lds-facebook,
.lds-facebook div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: var(--accent-color);
    -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    -webkit-animation-delay: -0.24s;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    -webkit-animation-delay: -0.12s;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}