* {
    box-sizing: border-box;
}

body, p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

input, textarea {
    appearance: none;
    outline: none;
}

textarea {
    resize: none;
}

input[type="checkbox"] {
    margin: 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

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

* {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    width: 100%;
}

/* HEADER */

.header {
    width: 100%;
    height: 90px;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    top: 25px;
    color: #FFFFFF;
    padding: 17px 100px;
    align-items: center;
	z-index: 11;
}

.header__right {
    display: flex;
    flex-direction: row;
    column-gap: 16px;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__price {
    padding: 33px 16px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: inherit;
    text-transform: uppercase;
    position: absolute;
    top: 110px;
    right: 100px;
    width: 106px;
}

.header .button--fake {
    font-weight: 600;
}

@media (max-width: 1110px) {

    .header__contacts,
    .header__price,
    .header .button {
        display: none;
    }
}

h5 {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    text-transform: uppercase;
}

@media (max-width: 1550px) {
    h5 {
        font-size: 26px;
        font-weight: 600;
        line-height: 31.2px;
    }
}

@media (max-width: 850px) {
    .header {
        padding: 17px 16px;
    }
}

/* COVER PAGE */

.cover {
    background-color: #040D17;
    color: #FFFFFF;
    height: 100vh;
}

.cover__container {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 100px;
	position: relative;
	z-index: 10;
}

h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 120px;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
    max-width: 1100px;
}

@media (max-width: 1550px) {
    h1 {
        font-size: 80px;
        font-weight: 700;
        line-height: 96px;
    }
}

@media (max-width: 1110px) {
    h1 {
        font-size: 70px;
    }
}

@media (max-width: 850px) {
    h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
    }

    .cover__container {
        padding: 0 16px;
    }

    .mouse {
        width: 50px;
        left: calc(50% - 25px);
    }
}

.button {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 32px;
    color: inherit;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    user-select: none;
}

.button:hover {
    background-color: #16ABD8;
    color: #FFFFFF;
    border-color: #16ABD8;
}

.button--fake {
    cursor: pointer;
}



/* ADVANTAGES */

.advantages {
    background-color: #FAFAFA;
    padding: 50px 100px;
}

.advantages__group {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.advantages__block {
    background-color: #FFFFFF;
    border: none;
    border-radius: 16px;
    padding: 65px 35px;
    height: 415px;
    width: calc(25% - 15px);
    user-select: none;
}

.advantages__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.advantages__block:hover {
    background-color: rgba(4, 13, 23, 1);
    color: #FFFFFF;
    box-shadow:
        0px 95px 209px 0px rgba(0, 0, 0, 0.1),
        0px 380px 380px 0px rgba(0, 0, 0, 0.09),
        0px 856px 514px 0px rgba(0, 0, 0, 0.05),
        0px 1522px 609px 0px rgba(0, 0, 0, 0.01),
        0px 2377px 666px 0px rgba(0, 0, 0, 0);
}

.advantages__block .regular {
    display: flex;
}

.advantages__block:hover .regular {
    display: none;
}

.advantages__block .hover {
    display: none;
}

.advantages__block:hover .hover {
    display: flex;
}

.advantages__text {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0.02em;
}

.advantages h5 {
    color: #16ABD8;
}

@media (max-width: 1550px) {
    .advantages__block {
        padding: 35px;
        height: 295px;
    }

    .advantages__text {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 1110px) {
    .advantages__group {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .advantages__block {
        width: calc(50% - 10px);
    }
}

@media (max-width: 850px) {
    .advantages {
        padding: 50px 16px;
    }

    .advantages__group {
        flex-direction: column;
    }

    .advantages__block {
        width: 100%;
    }
}

/* ABOUT */

.about {
    background-color: #FAFAFA;
    padding: 100px 100px 150px;
}

.about h2 {
    font-size: 100px;
    font-weight: 600;
    line-height: 120px;
    letter-spacing: 0.02em;
    color: #16ABD8;
    text-transform: uppercase;
}

.about__description {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #616161;
    margin-top: 12px;
    margin-bottom: 10px;
}

@media (max-width: 1550px) {
    .about h2 {
        font-size: 80px;
        font-weight: 600;
        line-height: 96px;
    }

    .about__description {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 1110px) {
    .about {
        padding-top: 50px;
        padding-bottom: 100px;
    }
}

@media (max-width: 850px) {
    .about {
        padding: 50px 16px;
    }

    .about h2 {
        font-size: 36px;
        font-weight: 600;
        line-height: 43.2px;
    }
}

.points {
    margin-top: 10px;
}

.points__line {
    border-bottom: 1px solid #616161;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    column-gap: 24px;
}

.points__number {
    width: 260px;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: #16ABD8;
}

.points__text {
    color: #040D17;
    font-size: 64px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -0.04em;
    flex-shrink: 100;
}

.points__line.show:hover .points__text {
    color: #16ABD8;
}

.points__line.show:hover img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(22%) saturate(1552%) hue-rotate(147deg) brightness(98%) contrast(96%);
}

.points__line.show {
    cursor: pointer;
}

.show .points__text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    z-index: 100;
}

.about__photos {
    display: none;
}

.about__photos.active {
    display: block;
}

.about__photos.active+.show .points__text img {
    transform: rotate(180deg);
}


@media (max-width: 1550px) {
    .points__line {
        padding: 30px 0;
    }

    .points__line.show img {
        height: 30px;
    }

    .points__number {
        font-size: 40px;
        font-weight: 700;
        line-height: 40px;
    }

    .points__text {
        font-size: 40px;
        font-weight: 400;
        line-height: 40px;
    }
}

@media (max-width: 1110px) {
    .points__line {
        padding: 16px 0;
    }

    .points__line.show img {
        height: 20px;
    }

    .points__number {
        font-size: 24px;
        font-weight: 700;
        line-height: 24px;
        width: 150px;
    }

    .points__text {
        font-size: 24px;
        font-weight: 400;
        line-height: 28.8px;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 850px) {
    .points {
        margin-top: 38px;
    }

    .points__line {
        flex-direction: column;
        row-gap: 12px;
    }

    .points__line.show {
        padding-bottom: 28px;
    }

    .show .points__text {
        width: 100%;
    }

    .show .points__text img {
        width: 16px;
    }
}

/* PRODUCTION */

.production {
    background-color: #FFFFFF;
    padding: 100px 100px 150px;
}

h3 {
    font-size: 75px;
    font-weight: 600;
    line-height: 90px;
    letter-spacing: 0.02em;
    color: #16ABD8;
    text-transform: uppercase;
}

.catalog {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 16px;
    position: relative;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    row-gap: 35px;
    padding: 35px 35px;
    border: 1px solid #F4F4F4;
    height: 414px;
    width: calc(25% - 12px);
    align-items: center;
}

.catalog-item img {
    width: -webkit-fill-available;
    height: 248px;
    filter: grayscale(100%);
    object-fit: scale-down;
}

.catalog-item:hover img {
    filter: none;
}

h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #040D17;
    min-height: 58px;
    text-transform: uppercase;
    align-self: start;
}

.catalog__show-all {
    padding: 35px;
    background-color: #16ABD8;
    color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: calc(25% - 12px);
}

.catalog__show-all .title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    cursor: pointer;
    text-transform: uppercase;
}

.catalog__show-all .button--fake {
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}

.catalog .button--fake {
    font-weight: 600;
}

.catalog-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 1000;
    width: 100%;
    height: 100vh;
    padding: 35px 100px 50px;
    overflow-x: scroll;
}

.catalog-modal.active {
    display: flex;
    flex-direction: column;
}

.catalog-modal .modal__close {
    transform: translateX(50px);
}

.catalog-modal h3 {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    color: #040D17;
    text-transform: uppercase;
}

.catalog-modal .catalog {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.catalog-modal .catalog-item {
    padding: 24px;
    width: calc(16% - 3px);
    height: 267px;
    row-gap: 10px;
    align-items: center;
}

.catalog-modal .catalog-item img {
    width: 150px;
    filter: grayscale(100%);
    object-fit: scale-down;
}

.catalog-modal .catalog-item:hover img {
    filter: none;

}

.catalog-modal .catalog-item h6 {
    width: -webkit-fill-available;
    min-height: 66px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-transform: none;
}

@media (max-width: 1550px) {
    h3 {
        font-size: 50px;
        font-weight: 600;
        line-height: 60px;
        letter-spacing: 0.02em;
    }

    .catalog-item {
        height: auto;
        row-gap: 20px;
        justify-content: space-between;
    }

    .catalog-item img {
        width: 200px;
        height: 150px;
    }

    .catalog-item h6 {
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        min-height: 48px;
    }

    .catalog__show-all .title {
        font-size: 26px;
        font-weight: 600;
        line-height: 31.2px;
    }

    .catalog-modal .catalog-item {
        width: calc(25% - 12px);
    }
}

@media (max-width: 1110px) {
    .production {
        padding: 100px;
    }

    .catalog-item {
        width: calc(50% - 8px);
        align-items: flex-start;
    }

    .catalog__show-all {
        width: calc(50% - 8px);
    }

    .catalog-modal .catalog-item {
        width: 250px;
        height: 250px;
    }

    .catalog-modal .catalog-item {
        width: calc(33% - 10px);
    }
}

@media (max-width: 1020px) {
    .catalog-modal .catalog {
        column-gap: 10px;
        row-gap: 10px;
    }

    .catalog-modal .catalog-item {
        width: calc(33% - 5px);
    }
}

@media (max-width: 850px) {
    .production {
        padding: 50px 16px;
    }


    .catalog-item {
        width: 100%;
        align-items: center;
    }

    .catalog__show-all {
        width: 100%;
        height: 300px;
    }

    .catalog__show-all .title {
        align-self: flex-start;
    }

    .catalog-modal .catalog-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .catalog-modal {
        padding: 50px 16px;
    }

    .catalog-modal .modal__close {
        transform: none;
        position: absolute;
        top: 60px;
    }

    .catalog-modal .catalog {
        column-gap: 16px;
        row-gap: 16px;
    }

    .catalog-modal .catalog {
        margin-top: 64px;
    }

    .catalog-modal h3 {
        font-size: 26px;
        font-weight: 600;
        line-height: 31.2px;
        position: absolute;
        top: 50px;
    }

    .catalog-modal .catalog-item {
        width: calc(50% - 8px);
        height: auto;
    }

    .catalog-modal .catalog-item h6 {
        min-height: 58px;
    }

    .catalog-modal .catalog-item img {
        width: 100px;
        height: auto;
    }
}

/* GOST */

.gost {
    display: flex;
    background-color: #040D17;
    background-image: url(./images/gost-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 600px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.gost__text {
    color: #FFFFFF;
    font-size: 80px;
    font-weight: 400;
    line-height: 96px;
    text-transform: uppercase;
    width: 65%;
}

.gost__text .bold {
    font-size: 80px;
    font-weight: 700;
    line-height: 96px;
}

@media (max-width: 1550px) {
    .gost {
        height: 466px;
    }

    .gost__text {
        font-size: 60px;
        font-weight: 400;
        line-height: 72px;
    }

    .gost__text .bold {
        font-size: 60px;
        font-weight: 700;
        line-height: 72px;
    }
}

@media (max-width: 1025px) {
    .gost__text {
        width: 80%;
    }
}

@media (max-width: 850px) {
    .gost {
        padding: 90px 16px;
        height: auto;
    }

    .gost__text {
        font-size: 32px;
        font-weight: 400;
        line-height: 40px;
        width: 100%;
    }

    .gost__text .bold {
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
    }
}

/* PROJECTS */

.projects {
    padding: 150px 100px 100px;
}

.projects__group {
    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 18px;
    margin-top: 48px;
    row-gap: 18px;
}

h4 {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.projects__item {
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
    width: calc(50% - 9px);
    height: 500px;
    background-image: url(./images/project.png);
    border-radius: 10px;
    background-position: center;
    background-size: cover;
}

.projects__item:nth-child(2) {
    background-image: url(./images/project2.png);
}

.projects__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.projects__item:hover::after {
    opacity: 1;
}

.projects__item .name {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: rgba(250, 250, 250, 1);
    text-transform: uppercase;
    opacity: 0;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
}

.projects__item:hover .name {
    opacity: 1;
}

.projects .button {
    border-color: #040D17;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 60px;
}

.projects .button:hover {
    border-color: #16ABD8;
}

.objects {
    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 18px;
    row-gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.objects .projects__item.hidden {
    display: none;
}

@media (max-width: 1550px) {
    h4 {
        font-size: 36px;
        font-weight: 600;
        line-height: 43.2px;
    }

    .projects__item .name {
        font-size: 24px;
    }
}

@media (max-width: 1110px) {
    .projects {
        padding: 100px;
    }

    .projects__item {
        height: 500px;
        overflow: hidden;
    }

    .projects__item img {
        width: auto;
    }

}

@media (max-width: 850px) {
    .projects {
        padding: 100px 16px 50px;
    }

    .projects h4 {
        text-align: start;
    }

    .projects__group {
        margin-top: 40px;
        flex-direction: column;
    }

    .projects__item {
        height: 237px;
        width: 100%;
    }

    .projects .button {
        font-size: 16px;
    }
}

/* CLIENTS AND PROVIDERS */

.clients {
    padding: 50px 100px 150px;
    background-color: #FFFFFF;
}

.providers {
    padding: 0 100px 150px;
    background-color: #FFFFFF;
}

.logo-group {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-group img {
    filter: grayscale(100%);

}

.logo-group img:hover {
    filter: none;
}

@media (max-width: 850px) {
    .clients {
        padding: 50px 16px 150px;
    }

    .providers {
        padding: 0 16px 150px;
    }

    .logo-group {
        flex-direction: column;
        row-gap: 32px;
        margin-top: 40px;
    }

    h4 {
        text-align: center;
    }
}

/* FOOTER */

.footer {
    background-color: #040D17;
    padding: 32px 40px;
    color: rgba(244, 244, 244, 1);
    text-transform: uppercase;
}

.footer__content {
    display: grid;
    grid-template-columns: 45% 55%;
    column-gap: 64px;
}

.footer__left {
    display: inline-flex;
    flex-direction: row;
    column-gap: 32px;
    justify-content: space-between;
}

.footer__right {
    width: fit-content;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.footer__menu {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    column-gap: 40px;
    flex-wrap: wrap;
    height: 60px;
    align-content: flex-start;
}

.footer__menu li {
    cursor: pointer;
}

.footer .button-group {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer__copyright {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.footer__copyright .policy {
    cursor: pointer;
}

@media (max-width: 1550px) {
    .footer__content {
        grid-template-columns: 60% 40%;
        column-gap: 20px;
    }

    .footer__left {
        justify-content: flex-start;
        column-gap: 20px;
    }
}

@media (max-width: 1360px) {
    .footer__content {
        grid-template-columns: 100% 0;
        font-size: 14px;
        line-height: 16.8px;
    }

    .footer__left {
        justify-content: space-between;
    }

    .footer__right {
        display: none;
    }

    .footer .button {
        font-size: 14px;
    }

    .footer__copyright {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: -0.01em;
    }

}

@media (max-width: 850px) {
    .footer {
        padding: 32px 16px;
    }

    .footer__left {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        row-gap: 32px;
    }

    .footer__copyright {
        flex-direction: column;
        align-items: flex-start;

    }
}

/* MAP AND CONTACTS */

.yandex-map {
    width: 100%;
    height: 820px;
}

.ymaps-2-1-79-ground-pane {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.map {
    position: relative;
}

.adress {
    padding: 50px 50px 100px;
    background-color: #040D17;
    color: rgba(250, 250, 250, 1);
    width: 775px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-left: 100px;
    margin-bottom: 50px;
    position: absolute;
    bottom: 0px;
    z-index: 100;
}

.adress h3 {
    font-size: 64px;
    font-weight: 600;
    line-height: 76.8px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 1);
}

.adress h5 {
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 1);
}

.adress__content {
    display: flex;
    flex-direction: row;
    column-gap: 114px;
    margin-top: 32px;
}

.adress__block {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 45%;
}

.adress__description .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
}

.adress__description .text {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

@media (max-width: 1440px) {
    .yandex-map {
        height: 727px;
    }

    .adress h3 {
        font-size: 50px;
        font-weight: 600;
        line-height: 60px;
        letter-spacing: 0.02em;
    }

    .adress h5 {
        font-size: 26px;
        line-height: 31.2px;
    }

    .adress__description .title,
    .adress__description .text {
        font-size: 16px;
        line-height: 19.2px;
    }

    .adress__content {
        column-gap: 0;
    }
}

@media (max-width: 1110px) {
    .adress {
        padding: 50px 100px;
        width: 100%;
        border-radius: 0;
        margin: 0;
        position: unset;
    }

    .yandex-map {
        height: 450px;
    }
}

@media (max-width: 850px) {
    .adress {
        padding: 32px 16px;
    }

    .adress h3 {
        font-size: 36px;
        font-weight: 600;
        line-height: 43.2px;
    }

    .adress h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .adress__block {
        width: 100%;
    }

    .adress__content {
        flex-direction: column;
        row-gap: 50px;
    }
}

/* MODAL WINDOWS */


.modal {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.56);
    top: 0;
    left: 0;
    position: fixed;
	z-index: 10000;
}

.modal__container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
    padding: 24px;
    background-color: rgba(250, 250, 250, 1);
    color: rgba(97, 97, 97, 1);
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 100vh;
    box-shadow:
        0px 95px 209px 0px rgba(0, 0, 0, 0.1),
        0px 380px 380px 0px rgba(0, 0, 0, 0.09),
        0px 856px 514px 0px rgba(0, 0, 0, 0.05),
        0px 1522px 609px 0px rgba(0, 0, 0, 0.01),
        0px 2377px 666px 0px rgba(0, 0, 0, 0);
}


.modal__close {
    align-self: end;
    cursor: pointer;
}

.modal h5 {
    color: #040D17;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
}

.modal .button {
    background-color: rgba(22, 171, 216, 1);
    color: #FFFFFF;
    padding: 16px auto;
	border: none;
}

.modal .button:hover {
    background-color: #040D17;
    color: #FFFFFF;
	border: none;
}

.modal__description {
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(97, 97, 97, 1);
    margin-bottom: 32px;
    margin-top: 8px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

@media (max-width: 850px) {
    .modal__container {
        width: 100vw;
        padding: 16px;
        overflow: scroll;
    }

    .modal h5 {
        font-size: 24px;
        line-height: 26px;
    }

    .modal__description {
        font-size: 18px;
        line-height: 21px;
    }
}

.input {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 12px;
    border: 1px solid rgba(113, 125, 150, 0.25);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 2px;
    cursor: inherit;
}

.input::placeholder,
.textarea::placeholder {
    color: rgba(113, 125, 150, 0.25);
}

.input:focus {
    border: 1px solid rgba(64, 169, 255, 1);
    box-shadow: 0px 0px 0px 2px rgba(24, 144, 255, 0.2);
}

.textarea {
    border: 1px solid rgba(113, 125, 150, 0.25);
    border-radius: 2px;
    cursor: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 12px;
}

.textarea:focus {
    border: 1px solid rgba(64, 169, 255, 1);
    box-shadow: 0px 0px 0px 2px rgba(24, 144, 255, 0.2);
}

.menu__list {
    margin: 32px 0;
}

.menu__list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(97, 97, 97, 1);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.menu__list li:hover {
    color: rgba(64, 169, 255, 1);
}


.menu__contacts {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28.8px;
}

.menu__price {
    background-color: #16ABD8;
    color: #FFFFFF;
    padding: 33px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    width: 106px;
    margin-top: 24px;
    align-self: end;
}

.application {
    background-image: url(./images/application-bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.application .modal__close {
    margin-bottom: 64px;
}

.stopScroll {
    overflow: hidden;
}

@media (max-width: 850px) {
    .menu__list {
        margin: 26px 0;
    }

    .menu__list li {
        font-size: 18px;
        line-height: 20px;
        padding: 10px 0;
    }

    .menu__contacts {
        font-size: 18px;
        row-gap: 0;
    }

    .application .modal__close {
        margin-bottom: 32px;
    }
}

/* ANIMATIONS */

/* modal */

.modal {
    /* transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(100%);
    opacity: 0; */
    display: none;
}

.modal.active {
    /* transform: translateX(0);
    opacity: 1;
    z-index: 101; */
    display: flex;
}

/* arrows  */

.animate {
    animation: moveUpDown 0.5s linear infinite alternate;
}


@keyframes moveUpDown {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

.points__line.show:hover img {
    animation: moveUpDown 0.5s linear infinite alternate;
}

/* cover-page */
.mouse {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 50px);
    animation: opacity 2.5s linear infinite alternate;
}

@media (max-width: 850px) {
    .mouse {
        width: 50px;
        left: calc(50% - 25px);
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}


/* SLIDER */
.slider {
    margin-top: 40px;
}

.slick-initialized .slick-slide {
    text-align: -webkit-center;
}

.slick-slide img {
    width: 90%;
    border-radius: 20px;
}

body .slick-next:before {
    content: url(./images/arrow-next.svg);
}

body .slick-prev:before {
    content: url(./images/arrow-prev.svg);
}

body .slick-prev {
    left: 0px;
    z-index: 10000;
}

body .slick-next {
    right: 10px;
}

  #bg-video {
	position: absolute;
    left: 0;
    top: 0;
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    overflow: hidden;
    z-index: 0;
  }