:root {
    --purple-c: #400556;
    --pink-c: #fc0e8b;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
}

body,
input {
    font-size: 16px;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

p {
    margin-top: 0;
}

ul,
menu {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

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

button {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0;
}

a img {
    border: none;
}

img {
    max-width: 100%;
}

input {
    -webkit-appearance: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-appearance: none;
    outline: none;
    border: none;
}

* {
    outline: none !important;
    word-wrap: break-word;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}

.overflowHid {
    overflow: hidden;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: block;
    display: flex;
    -webkit-flex-flow: row wrap;
}

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

.gradient {
    background-image: linear-gradient(to right, var(--purple-c) 0%, transparent 100%);
    transition: ease 0.5s;
    background-color: var(--pink-c);
}

.gradient:hover {
    background-color: var(--purple-c);
}

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

.header {
    width: 100%;
    background: rgb(0 0 0 / 50%);
    padding: 12px 0;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
}

.header__left {
    align-items: center;
}

.header__logo {
    font-size: 0;
    margin-left: 30px;
}

.header__lang {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 17px;
}

.header__lang-item {
    position: relative;
    width: 100%;
    text-align: center;
}

.header__lang-dd {
    width: 100%;
    height: 0;
    position: absolute;
    top: 10px;
    background: #fff;
    border-radius: 0px 0px 20px 20px;
    padding: 10px 0;
    padding-bottom: 0;
    padding-top: 10px;
    z-index: -1;
    transition: 0.5s ease;
    opacity: 0;
}

.header__lang:hover .header__lang-dd {
    height: 104px;
    opacity: 1;
    box-shadow: 0px 3px 4px #00000080;
}

.header__lang-dd-item {
    margin: 10px 0px;
}

.header__right {
    align-items: center;
}

.header__nav-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.header__nav-btn-line {
    width: 21px;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: 2px 0;
    border-radius: 2px;
    transition: ease 0.4s;
    position: relative;
}

.header__nav-btn.open-menu .header__nav-btn-line:nth-child(2) {
    opacity: 0;
}

.header__nav-btn.open-menu .header__nav-btn-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__nav-btn.open-menu .header__nav-btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

.header__nav-list {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #292928;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -1;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
}

.header__nav-list.open-menu {
    visibility: visible;
    opacity: 1;
}

.header__nav-item {
    margin-bottom: 10px;
}

.header__nav-link {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

.header__nav-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
    filter: brightness(.5);
    transform: scale(1.3);
    transition: 0.7s ease;
    opacity: 0;
    pointer-events: none;
}

.header__nav-item:hover .header__nav-img {
    transform: scale(1);
    opacity: 1;
}

.header-des {
    position: absolute;
    top: 79px;
    left: 50%;
    color: #fff;
    z-index: 1;
    transform: translateX(-50%);
    text-align: center;
}

.header-des__title {
    margin-bottom: 15px;
    font-size: 48px;
}

.header-des__p {
    font-size: 28px;
}

.office {
    height: 35px;
    padding: 0 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 0px 0px 20px;
    margin-left: 20px;
    position: relative;
    cursor: pointer;
}

.office__item {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.office__dd {
    width: 100%;
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 20px 0px 0px 20px;
    right: 0;
    top: 90px;
    box-shadow: 0px 0px 5px #afafaf;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.office__dd:after {
    content: "";
    width: 17px;
    height: 17px;
    display: block;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    background: #fff;

}

.office__dd:before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    top: -60px;
}

.office__dd-item {
    padding: 10px 0;
    text-align: center;
    background: #fff;
    border-radius: 20px 0px 0px 20px;
    position: relative;
    z-index: 1;
}

.office:hover .office__dd {
    top: 60px;
    opacity: 1;
}

.slide {
    width: 100%;
    background: #000;
    height: 100vh;
}

.slide .slick-list {
    height: 100%;
}

.slide__item {
    position: relative;
    overflow: hidden;
}

.slide__img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transition: 2.0s ease;
    transform: scale(1);
    filter: brightness(.5);
    transition-delay: 0.6s;
    object-fit: cover;
}

.slick-slide {
    transition: all ease-in-out .5s;
    opacity: 1;
}

.slick-active {
    transition: all ease-in-out .5s;
    opacity: 1;
}

.slick-active .slide__img {
    animation: zoom 10s ease-in-out infinite;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.slick-current {
    opacity: 1;
}

.slide__video {
    width: 100%;
    height: 100%;
    animation: zoom 10s ease-in-out infinite;
    filter: brightness(.5);
    object-fit: cover;
}

.slide__des {
    color: #fff;
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -20%);
    z-index: 1;
    transition: 1.5s ease;
    opacity: 0.1;
    text-align: center;
}

.lide__text {
    font-size: 30px;
    font-weight: 400;
    transform: translateX(50%);
    transition: 1.5s ease;
}

.slide__btn {
    width: 100%;
    max-width: 286px;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    border-radius: 25px;
    text-align: center;
    padding: 15px 10px;
    transition: 1.5s ease;
    transform: translateX(50%);
}

.slick-active .slide__des {
    left: 50%;
    opacity: 1;
}

.slick-active .lide__text,
.slick-active .slide__btn {
    transform: translateX(0%);
}

.slide__title {
    color: rgba(255, 255, 255, 0.80);
    font-size: 180px;
}

.about {
    background: #000;
    padding-top: 57px;
}

.about__title {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}

.about__video {
    max-width: 1050px;
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
}

.parallax-block {
    background-image: url(../img/about/bg-1.png),
        url(../img/about/bg-2.png),
        url(../img/about/bg-3.png),
        url(../img/about/bg-4.png);
    background-size: 219px, 319px, 524px, 375px;
    background-repeat: no-repeat;
    background-position: 2% 0, 13% 0, 40% 0, 90% 0;
}

.about__des {
    max-width: 1080px;
    color: #fff;
    margin: 0 auto;
    margin-top: 70px;
    align-items: center;
    padding: 0 15px;
}

.about__text {
    width: calc(100% - 200px);
}

.about__text-title {
    font-size: 21px;
    margin-bottom: 15px;
}

.about__text span {
    color: var(--pink-c);
    font-size: 21px;
    margin-bottom: 37px;
    display: block;
}

.about__slide {
    width: 200px;
    height: 439px;
    margin-top: -45px;
    margin-bottom: -66px;
    background-image: url(../img/phone-slide.png);
    padding-left: 11px;
    padding-right: 7px;
    padding-top: 43px;
    padding-bottom: 81px;
    font-size: 0;
}

.about__slide .slick-list {
    background: #000;
}

.about__slide-img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

.catalog {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.pentahedron {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: #3E82F7;
}

.point {
    fill: #8491A3;
}

.rhombus {
    fill: #2DA94F;
    stroke: #2DA94F;
}

.x {
    fill: #FDBD00;
}

.circle {
    fill: #ED412D;
}

svg {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 25%;
    left: 0%;
    transform: translate(0%, 0%);
    z-index: -1;
    opacity: 0.2;
}

.catalog__span {
    font-size: 21px;
    font-weight: 400;
}

.catalog__title {
    font-size: 36px;
    font-weight: 700;
}

.catalog__list {
    margin-top: 200px;
}

.catalog__item {
    width: calc((100%) / 3);
    margin-bottom: 120px;
}

.catalog__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.catalog__item-img {
    animation: catalog-img-r ease 5s infinite;
    max-width: 200px;
}

@keyframes catalog-img-r {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);

    }

    100% {
        transform: rotate(0deg);

    }
}

.hover-img {
    position: relative;
}

.hover-img:before {
    content: "";
    display: block;
    width: 450px;
    height: 195px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    transition: ease 0.4s;
}

.hover-img-1:before {
    background-image: url(../img/catalog/mask-1.png);
}

.hover-img-2:before {
    background-image: url(../img/catalog/mask-2.png);
}

.hover-img-3:before {
    background-image: url(../img/catalog/mask-3.png);
}

.hover-img-4:before {
    background-image: url(../img/catalog/mask-4.png);
}

.hover-img-5:before {
    background-image: url(../img/catalog/mask-5.png);
}

.hover-img-6:before {
    background-image: url(../img/catalog/mask-6.png);
}

.hover-img-7:before {
    background-image: url(../img/catalog/mask-7.png);
}

.catalog__item-title {
    margin-left: 30px;
}

.catalog__item:hover .hover-img:before {
    transform: translate(-50%, -50%) scale(1);
}

.catalog__item:nth-child(2),
.catalog__item:nth-child(5),
.catalog__item:nth-child(2),
.catalog__item:nth-child(5) {
    transform: translateY(-120px);
}

.life {
    background-color: #000;
    color: #fff;
    padding: 46px 0;
    position: relative;
}

.life .wrapper {
    max-width: 1098px;
}

.life:after {
    content: "";
    display: block;
    width: 360px;
    height: 521px;
    background-image: url(../img/life/life-img.png);
    position: absolute;
    bottom: 0%;
    right: 15%;
    z-index: 1;
}

.life__title span {
    font-style: 30px;
    font-weight: 400;
}

.life__title {
    font-size: 36px;
    font-weight: 700;
}

.life__slide {
    max-width: 540px;
    border: 3px solid #fff;
    font-size: 0;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.life__slide:before {
    content: "";
    display: block;
    width: 110px;
    height: 169px;
    background-image: url(../img/trophy.png);
    position: absolute;
    bottom: -10%;
    left: -45px;
    z-index: 1;
    animation: trophy ease 4s infinite;
}

@keyframes trophy {
    0% {
        bottom: -10%;
    }

    50% {
        bottom: 0%;
    }

    100% {
        bottom: -10%;
    }
}

.life__slide-item {
    position: relative;
    overflow: hidden;
}

.life__slide-des {
    width: 100%;
    min-height: 113px;
    text-align: right;
    background: rgb(255, 255, 255);
    background: linear-gradient(78deg, rgba(255, 255, 255, 0) 7%, rgba(0, 0, 0, 0.8687850140056023) 50%);
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 2;
    padding: 15px 20px;
    right: -50%;
    transition: 0.5s ease;
    transition-delay: 0.4s;
    opacity: 0;
}

.slick-active .life__slide-des {
    right: 0;
    opacity: 1;
}

.life__slide-img {
    width: 100%;
    height: 100%;
    height: 345px;
    object-fit: cover;
}

.life__slide-title {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: ease 0.4s;
}

.life__slide-title strong {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

.life__slide-item:hover .life__slide-title {
    color: var(--pink-c);
}

.slick-prev,
.slick-next {
    width: 28px;
    height: 41px;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before,
.slick-next:before {
    width: 28px;
    height: 41px;
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

.slick-prev:before {
    background-image: url(../img/arrow-l.png);
}

.slick-next:before {
    background-image: url(../img/arrow-r.png);
}

.life__slide .slick-slide {
    height: auto;
}

.program {
    padding: 70px;
    background-image: url(../image/program-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.program__wrap {
    width: 100%;
    max-width: 978px;
    margin: 0 auto;
    padding: 0 14px;
}

.program__title {
    font-size: 30px;
    font-weight: 400;
}

.program__text {
    margin-top: 60px;
}

.program__left {
    width: calc(100% - 300px);
    font-size: 18px;
    line-height: 30px;
}

.program__right {
    width: 300px;
}

.program__right li {
    position: relative;
    padding-bottom: 17px;
    padding-left: 30px;

}

.program__right li:before {
    content: "";
    display: block;
    width: 19px;
    height: 21px;
    background-image: url(../img/check.png);
    position: absolute;
    top: -5px;
    left: 0px;
}

.program__link {
    color: #fff;
    font-size: 18px;
    border-radius: 25px;
    padding: 19px 24px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 60px;
}

.bev-video{
    padding: 70px;
    background: #000;
}

.bev-video__new{
    width: 100%;
}

.contacts {
    padding: 65px 0;
    position: relative;
    background-image: url(../img/contacts/contacts-bg-1.png),
        url(../img/contacts/contacts-bg-2.png),
        url(../img/contacts/contacts-bg-3.png),
        url(../img/contacts/contacts-bg-4.png);
    background-repeat: no-repeat;
    background-position: 90% 10%, 10% 10%, 90% 90%, 10% 90%;

}

.contacts:before {
    content: "";
    display: block;
    width: 89px;
    height: 119px;
    background-image: url(../img/globus-img.png);
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
}

.contacts-wrap {
    width: 100%;
    max-width: 1191px;
    margin: 0px auto;
    padding: 0 14px;
}

.contacts__title span {
    font-size: 30px;
    font-weight: 400;
    display: block;
}

.contacts__title {
    font-size: 36px;
    font-weight: 700;
    margin-left: 63px;
}

.contacts__list {
    margin-top: 50px;
}

.contacts__item {
    width: calc((100%) / 3);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
}

.contacts__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
}

.contacts__info-item {
    margin-bottom: 28px;
    line-height: 24px;
}

.contacts__info-item h3 {
    margin-bottom: 5px;
}

.point-icon,
.phone-icon,
.mail-icon {
    position: relative;
    padding-left: 75px;
    min-height: 77px;
}

.point-icon:before {
    content: "";
    display: block;
    width: 53px;
    height: 53px;
    background-image: url(../img/point.png);
    position: absolute;
    top: 0px;
    left: 0;
}

.phone-icon:before {
    content: "";
    display: block;
    width: 53px;
    height: 53px;
    background-image: url(../img/phone.png);
    position: absolute;
    top: 0px;
    left: 0;
}

.mail-icon:before {
    content: "";
    display: block;
    width: 53px;
    height: 53px;
    background-image: url(../img/mail.png);
    position: absolute;
    top: 0px;
    left: 0;
}

.footer {
    padding: 30px 14px;
    text-align: center;
}

/* inner-page */
.gallery {
    padding: 110px 0;
}

.gallery__title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
}

.gallery__title strong {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.gallery__list {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.gallery__item {
    width: calc((100%) / 4);
    position: relative;
}

.gallery__img {
    display: block;
    -webkit-transform-style: preserve-3d;
    transition: all .4s ease-out;
    transform-style: preserve-3d;
    transition: -webkit-transform .7s cubic-bezier(.4, .2, .2, 1);
    transition: transform .7s cubic-bezier(.4, .2, .2, 1), -webkit-transform .7s cubic-bezier(.4, .2, .2, 1);

}

.gallery__hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff95;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--pink-c);
    opacity: 0;
    overflow: visible;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform .7s cubic-bezier(.4, .2, .2, 1);
    transition: transform .7s cubic-bezier(.4, .2, .2, 1),
        -webkit-transform .7s cubic-bezier(.4, .2, .2, 1);
    backface-visibility: hidden;
    transition: all .5s ease-out;
    -webkit-backface-visibility: hidden;
}

.gallery__link {
    padding: 8px 15px;
    display: block;
    border: 1px solid var(--pink-c);
    border-radius: 5px;
    margin-top: 16px;
}

.gallery__item:hover .gallery__img {
    transform: rotateY(-180deg) translateZ(90px);
    z-index: 2;
}

.gallery__item:hover .gallery__hover {
    transform: rotateY(0deg) translateZ(90px);
    z-index: 3;
    opacity: 1;
}


/* inner-page */

@media screen and (max-width:960px) {
    .header-des__title {
        font-size: 30px;
    }

    .header-des__p {
        font-size: 18px;
    }

    .slide__title {
        font-size: 100px;
    }

    .lide__text {
        font-size: 19px;
    }

    .slide__btn {
        max-width: 170px;
        font-size: 14px;
        line-height: 10px;
    }

    .catalog__item {
        width: calc((100%) / 2);
    }

    .catalog__item:nth-child(2),
    .catalog__item:nth-child(5),
    .catalog__item:nth-child(2),
    .catalog__item:nth-child(5) {
        transform: translateY(0px);
    }

    .life__slide {
        margin: 0 auto;
        margin-top: 50px;
    }
}

@media screen and (max-width:768px) {
    .header__logo {
        margin-left: 10px;
    }

    .header__lang {
        margin-left: 10px;
    }

    .office {
        margin-left: 10px;
    }

    .slide {
        min-height: auto;
        max-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
    }

    .slide .slick-track {
        min-height: auto;
        max-height: 400px;
    }

    .slide .slide__item {
        min-height: auto;
        max-height: 400px;
    }

    .slide .slick-slide img,
    .slide .slick-slide video {
        display: block;
        min-height: auto;
        max-height: 400px;
        object-fit: cover;
    }

    .slide .slick-slide {
        min-height: auto;
        max-height: 400px;
    }

    .slide__des {
        transform: translate(-50%, -15%);
        top: 61%;
    }

    .about__text {
        padding-right: 20px;
    }

    .slide__title {
        font-size: 34px;
    }

    .program__text {
        flex-direction: column;
        font-size: 16px;
    }

    .program__left {
        width: 100%;
        margin-bottom: 20px;
    }

    .program__right {
        width: 100%;
    }

    .contacts__list {
        flex-direction: column;
        align-items: center;
    }

    .contacts__item {
        width: 100%;
        max-width: 360px;
    }

    .catalog__list {
        flex-direction: column;
        align-items: center;
    }

    .catalog__item-img {
        max-width: 87px;
    }

    .catalog__item:hover .hover-img:before {
        transform: translate(-35%, -50%) scale(1);
    }

    .life__slide {
        width: calc(100% - 100px);
        margin: 0px 50px;
        margin-top: 50px;
    }

    .program__link {
        font-size: 16px;
    }

    .gallery__item {
        width: calc((100%) / 3);
    }
}

@media screen and (max-width: 486px) {
    .about__text {
        width: 100%;
    }

    .about__slide {
        display: none;
    }

    .life__slide {
        width: calc(100% - 25px);
        margin: 0px 12px;
        margin-top: 50px;
    }

    .life__slide-title strong {
        font-size: 22px;
    }

    .life__slide .slick-prev,
    .life__slide .slick-next {
        display: none !important;
    }

    .office {
        padding: 0 10px;
    }

    .program {
        padding: 70px 0;
    }

    .header__nav-item {
        text-align: center;
    }

    .header__nav-link {
        font-size: 18px;
        text-align: center;
    }

    .header {
        padding: 5px 0;
    }

    .header__logo {
        max-width: 110px;
    }

    .gallery__item {
        width: calc((100%) / 2);
    }
}