@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: rgba(76, 143, 76, 0.5757);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Calibri';
}


header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    background-color: var(--color-primary);

    height: 80px;

    padding: 10px;
    padding-top: 25px;
    margin-top: -15px;
}


/* Бургер-иконки скрыты по умолчанию */
.burger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 30px;
    cursor: pointer;
    z-index: 1000;
}

.burger-icon span {
    display: block;
    height: 3px;
    width: 20px;
    background-color: white;
    border-radius: 10px;
}

.burger-close-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.burger-close-icon span {
    display: block;
    height: 3px;
    width: 20px;
    background-color: var(--color-primary);
    border-radius: 10px;
}

#burger-close span:nth-of-type(1) {
    transform: rotate(45deg) translateY(5px) translateX(6px);
}

#burger-close span:nth-of-type(2) {
    transform: rotate(-45deg);
}

.header-nav ul {
    display: flex;
    gap: 20px;
    flex-direction: row;
    list-style: none;
}

.logo img {
    width: 90px;

    transition: .3s;
    cursor: pointer;
}

.logo img:hover {
    transform: scale(1.1);
}

nav {
    display: flex;
    gap: 20px;
}

.link {
    color: white;
    text-decoration: none;

    font-size: 1.5rem;
    font-weight: bolder;
}

.link:hover,
.tek {
    text-decoration: underline;
}

main {
    background-image: url(img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 90vh;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;

    background-color: rgba(0, 0, 0, 0.85);
    padding: 25px 20px;
    border-radius: 10px;
}

.main-content__wrapper {
    display: flex;
    align-items: center;
}

.event-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: red;
    gap: 5px;

    font-weight: bolder;
    font-size: 30px;
}

.event-link a {
    color: red;
    text-decoration: none;
    font-size: 20px;
}


.event-link a:hover {
    text-decoration: underline;
}


.main-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    text-align: center;
}

.main-text p {
    font-weight: bold;
    font-size: 25px;
}

.main-text h1 {
    font-size: 50px;
    color: rgb(252, 55, 55);
}

.about {
    padding: 40px 0px;

    display: flex;
    flex-direction: column;

    background-color: rgba(76, 143, 76, 0.3);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-around;

    padding-top: 40px;
}

.about-content p {
    font-size: x-large;

}

.advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.article {
    border: 3px dotted var(--color-primary);
    border-radius: 20px;

    width: 450px;
    min-height: 100px;

    text-align: start;
    display: flex;
    align-items: center;

    transition: .3s;

    font-weight: bold;

    cursor: pointer;
    padding: 5px;

    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.article:hover {
    border-style: solid;
    background-color: var(--color-primary);

    transform: scale(1.1);
}

.article-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-photo__nav__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-photo__nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.about-photo {
    background-image: url(img/tir1.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    width: 700px;
    height: 400px;

    border-radius: 20px;

    position: relative;
    margin: 0 auto;
}

.button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;

    transition: .3s;
}

.button-div:hover {
    transform: scale(1.3);
}

.left-button,
.right-button {
    border: 0;

    width: 35px;
    height: 35px;
    background-color: transparent;

    cursor: pointer;
}

.left-button {
    background-image: url(img/arrow_back.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.right-button {
    background-image: url(img/arrow_next.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-photo__nav__secondary {
    display: none;
    justify-content: center;
    gap: 20px;
}

.separator {
    width: 100px;
    height: 1px;
    background-color: var(--color-primary);
}

.about-content img {
    border-radius: 20px;
    width: 350px;
}


footer {
    background-color: var(--color-primary);
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    font-weight: bolder;
    color: white;
}


/* ОТЗЫВЫ */

.top-div {
    background-image: url(img/камуфляж.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.top-div h1 {
    background-color: rgba(0, 0, 0, 0.5);

    padding: 25px 20px;
    border-radius: 10px;
    color: white;

    text-align: center;
}

.send-comment {
    display: flex;
    flex-direction: column;
    align-items: start;

    gap: 20px;

    margin-bottom: 40px;
}

label {
    font-weight: 500;
}

textarea,
input {
    resize: none;
    border: 4px solid transparent;
    border-radius: 10px;
    padding: 10px;

    font-size: large;
    font-weight: 600;
}

input {
    padding: 3px;
    font-size: medium;
}

.pin-comments__area {
    display: flex;
    gap: 10px;

    align-items: center;
}

.comment-area {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.input-file {
    position: relative;
    display: inline-block;
}

.input-file span {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 4px;
    background-color: forestgreen;
    line-height: 22px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}

.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.input-file input[type=file]:focus+span {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.input-file:hover span {
    background-color: #59be6e;
}

.input-file:active span {
    background-color: #2E703A;
}

.input-file input[type=file]:disabled+span {
    background-color: #eee;
}

.submit-button {
    max-width: fit-content;
    border: 2px solid forestgreen;
    padding: 10px 15px;
    border-radius: 15px;
    background-color: forestgreen;
    color: white;
    font-size: larger;
    font-weight: bold;
    cursor: pointer;

    transition: .3s;
}

.submit-button:hover {
    background-color: white;
    color: forestgreen;
}

.comments-div {
    background-color: rgba(76, 143, 76, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 40px 0;
}

.comments-collection {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    margin-top: 40px;
}

.comment {
    border: 2px solid var(--color-primary);
    border-radius: 20px;

    padding: 10px 15px;

    width: 600px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-and-date {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.user {
    display: flex;
    align-items: center;

    gap: 5px;
}

.username {
    font-size: large;
    font-weight: bolder;
}

/*Необходима оценка*/
.rating-area {
    overflow: hidden;
    margin-bottom: 5px;
}

.rating-area:not(:checked)>input {
    display: none;
}

.rating-area:not(:checked)>label {
    float: right;
    width: 42px;
    padding: 0;
    cursor: pointer;
    font-size: 32px;
    line-height: 32px;
    color: lightgrey;
    text-shadow: 1px 1px #bbb;
}

.rating-area:not(:checked)>label:before {
    content: '★';
}

.rating-area>input:checked~label {
    color: coral;
    text-shadow: 1px 1px #c60;
}

.rating-area:not(:checked)>label:hover,
.rating-area:not(:checked)>label:hover~label {
    color: coral;
}

.rating-area>input:checked+label:hover,
.rating-area>input:checked+label:hover~label,
.rating-area>input:checked~label:hover,
.rating-area>input:checked~label:hover~label,
.rating-area>label:hover~input:checked~label {
    color: coral;
    text-shadow: 1px 1px goldenrod;
}

.rate-area>label:active {
    position: relative;
}

.comment-actions {
    display: flex;
    justify-content: center;

    gap: 10px;
}

.comment-actions__button {
    border: 2px solid;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: large;
    font-weight: bold;
    background-color: transparent;
    color: white;
}

.delButton {
    border-color: red;
    background-color: red;
    cursor: pointer;
}

.delButton:hover {
    background-color: white;
    color: red;
}

.editButton {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    cursor: pointer;
}

.editButton:hover {
    background-color: white;
    color: var(--color-primary);
}

/*--------------------------------------------------------*/

/*Оценка*/
.rating-result span {
    padding: 0;
    font-size: 32px;
    line-height: 1;
    color: white;
}

.rating-result>span:before {
    content: '★';
}

.rating-result>span.active {
    color: coral;
}

.rating {
    display: flex;
    align-items: center;

    gap: 10px;
    justify-content: left;
}

/*--------------------------------------------------------*/
.date {
    font-size: small;
    font-weight: bolder;
}

.comment-text {
    font-size: large;
    font-weight: 450;
}

.images {
    display: flex;
    justify-content: center;
    gap: 10px;

    max-height: 250px;
}

.image {
    display: flex;
    align-items: center;
    transition: .3s;
    cursor: pointer;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.image:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* Цены */

.event {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.event p {
    background-color: rgba(255, 0, 0, 0.6);
    width: 40%;
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    line-height: 30px;
    font-size: 20px;
    border: 2px dashed red;
}

.services-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 30px;
}

.services-welcome {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.services-welcome p {
    max-width: 50%;
    font-size: large;
    font-weight: 450;
}

.prices-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin: 30px 0;

    background-color: rgba(76, 143, 76, 0.3);
    padding: 40px 100px;

    border-radius: 15px;
}

.price-div {
    background-color: white;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 20px;

    width: 500px;
    height: 100px;

    transition: .2s;
}

.price-div__info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.price-div__info__kol {
    font-size: larger;
    font-weight: bolder;
}

.price-div__info__price {
    font-weight: bold;
    color: red;
}

.price-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30%;
}

.price-photo img {
    width: 90px;
    height: 90px;
}

.games-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 20px;
    margin-bottom: 40px;
}

.games-div__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.game-div {
    background-color: rgba(76, 143, 76, 0.3);
    padding: 20px 40px;
    border-radius: 15px;

    max-width: 400px;
    height: 370px;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.game__collection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game {
    display: flex;
    gap: 10px;

    background-color: white;
    border-radius: 10px;
    padding: 10px;

    height: 50px;

    transition: .2s;
}

.game-photo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
}

.game-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly
}

.game-info__condition {
    font-weight: 500;
}


.game-info__prize {
    font-weight: bolder;
    color: red;
}

.game-info__cost {
    font-weight: bold;
}


.sertificates__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    gap: 20px;

    margin-bottom: 40px;
}

.sertificates-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

    background-color: rgba(76, 143, 76, 0.3);
    padding: 20px 40px;
    border-radius: 15px;

    max-width: 650px;
}

.sertificates-div p {
    font-weight: bold;
    font-size: large
}

.sertificates-collection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sertificate {
    display: flex;
    text-align: center;
    align-items: center;

    background-color: white;
    border-radius: 15px;
    padding: 5px;

    height: 100px;
    border: 2px dotted var(--color-primary);

    transition: .2s;

    background-image: url(img/камуфляж.jpg);

    color: white;
    font-weight: 600;
}

.price-div:hover,
.game:hover,
.sertificate:hover {
    transform: scale(1.1)
}

.sertificate:hover {
    border-style: solid;
}

.sertificate__background {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 15px;
}

.sertificate__background p {
    font-size: small;
}

.last-div {
    height: 75px;
    grid-column: span 2;
    width: auto;
}

/* Контакты */

.contacts-collection {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 40px 0;
}

.contact-div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(76, 143, 76, 0.3);
    padding: 20px 40px;
    border-radius: 15px;

    min-width: 60%;
    height: 100%;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact {
    display: flex;
    gap: 15px;
}

.contact-map iframe {
    border-radius: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    width: 40%;
}

.contact-info__part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info__part p {
    font-size: large;
    font-weight: 500;
}

.contact-map {
    width: 100%;
}

.contact-map iframe {
    width: 100%;
}

/* Стили пагинации */
.pagination {
    margin: 30px 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.pagination__link {
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(76, 143, 76, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pagination__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 143, 76, 0.1), transparent);
    transition: left 0.5s;
}

.pagination__link:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a8c4a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 143, 76, 0.4);
    border-color: transparent;
}

.pagination__link:hover::before {
    left: 100%;
}

.pagination__link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 143, 76, 0.3);
}

.pagination__link_active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a8c4a 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(76, 143, 76, 0.35);
    cursor: default;
}

.pagination__link_active:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(76, 143, 76, 0.35);
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a8c4a 100%);
}

.pagination__ellipsis {
    align-self: center;
    padding: 0 12px;
    color: #6b7280;
    font-weight: 600;
    font-size: 18px;
}

/* Адаптивность для мобильных */
@media only screen and (max-width: 750px) {
    .pagination {
        gap: 6px;
        margin: 25px 0;
    }
    
    .pagination__link {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .pagination__ellipsis {
        padding: 0 8px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .pagination {
        gap: 4px;
    }
    
    .pagination__link {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
}

/* БУРГЕР-МЕНЮ - ОТОБРАЖАЕТСЯ ТОЛЬКО ДО 900px */
@media only screen and (max-width: 900px) {
    .burger-icon {
        display: flex;
    }

    .header-nav {
        position: fixed;
        align-items: start;
        right: -300px;
        top: 0;
        bottom: 0;
        background-color: white;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        z-index: 999;
        padding: 20px 25px;
        width: 250px; 
        transition: .3s ease-in-out;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .link {
        color: var(--color-primary);
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 450px) {
    .header-nav {
        width: 100%;
        padding: 0;
        padding-top: 30px;
        right: -100%;
    }

    .header-nav ul {
        margin-left: 20px;
    }

    .burger-close-icon {
        position: fixed;
        right: 20px;
        top: 20px;
    }
}

/* ГЛАВНАЯ - ОПТИМИЗАЦИЯ*/
@media only screen and (max-width: 1360px) {
    .about-photo {
        width: 600px;
        height: 300px;
    }

    .about-photo__nav {
        gap: 10px;
    }

    .left-button,
    .right-button {
        width: 25px;
        height: 25px;
    }

    .button-div {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 1200px) {
    .main-text p {
        font-size: 20px;
    }

    .main-text h1 {
        font-size: 40px;
    }

    .main-content img {
        height: 150px;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .advantages {
        flex-direction: row;
        gap: 10px;
    }

    .separator {
        display: none;
    }

    .article {
        width: 250px;
        min-height: 70px;
    }

    .about-content p {
        font-size: large;
    }

    .about-photo {
        width: 650px;
        height: 350px;
    }
}

@media only screen and (max-width: 900px) {
    .main-content {
        padding: 15px 10px;
    }

    .event-link p {
        font-size: 20px;
    }

    .event-link a {
        font-size: 11px;
    }

    .main-text {
        gap: 15px;
    }

    .main-text p {
        font-size: 15px;
    }

    .main-text h1 {
        font-size: 30px;
    }

    .main-content img {
        height: 100px;
    }

    .about-content {
        padding-top: 20px;
        gap: 40px;
    }

    .advantages {
        flex-direction: column;
    }

    .article {
        width: 100%;
        min-height: auto;
        height: 50px;
    }

    .article p {
        font-size: medium;
    }

    .about-photo {
        width: 390px;
        height: 200px;
    }

    main {
        height: 60vh;
    }

    .button-div {
        display: none;
    }

    .about-photo__nav__secondary,
    .secondary {
        display: flex;
    }
}

/* УСЛУГИ - ОПТИМИЗАЦИЯ */
@media only screen and (max-width: 1300px) {
    .prices-collection {
        padding: 20px 30px;
        column-gap: 10px;
    }

    .price-div {
        width: auto;
    }

    .game-div {
        padding: 10px 5px;
    }

    .sertificate__background p {
        font-size: small;
    }

    .game-div__description {
        text-align: center;
    }

}

@media only screen and (max-width: 950px) {
    .event p {
        width: 50%;
    }

    .prices-collection {
        gap: 10px;
    }

    .price-div {
        width: 300px;
        height: 75px;
    }

    .price-div__info {
        justify-content: center;
        gap: 5px;
    }

    .price-photo img {
        width: 60px;
        height: 60px;
    }

    .price-div__info p {
        font-size: medium;
    }

    .games-div__wrapper {
        gap: 20px;
    }

    .game-div {
        width: 350px;
        height: 400px;
    }

    .game-info p {
        font-size: small;
    }

    .game {
        height: 60px;
        width: 300px;
    }


    .last-div {
        height: 75px;
        grid-column: span 2;
        width: auto;
    }
}

@media only screen and (max-width: 750px) {
    .forpc {
        display: none;
    }

    .event p {
        width: 60%;
    }

    .prices-collection {
        padding: 20px;
    }

    .price-div {
        width: 250px;
    }

    .games-div__wrapper {
        flex-direction: column;
        gap: 0;
        width: 100%;
        gap: 20px;
    }

    .game-div {
        width: 97%;
        height: auto;
    }

    .game {
        height: auto;
        width: 350px;
    }

    .game-info p {
        font-size: medium;
    }

    .sertificates-div {
        padding: 20px;
        max-width: none;
        width: 350px;
    }

    .sertificates-collection {
        grid-template-columns: 2fr 2fr;
    }

    .last-sertificate {
        grid-column: span 2;
    }

    .last-div {
        height: 75px;
        grid-column: span 2;
        width: auto;
    }
}

/* ОТЗЫВЫ - ОПТИМИЗАЦИЯ*/
@media only screen and (max-width: 600px) {
    .last-div {
        grid-column: auto;
    }

    .prices-collection {
        grid-template-columns: 1fr;
    }

    .price-div {
        width: 95%;
    }
}

@media only screen and (max-width: 700px) {
    .comment {
        max-width: none;
        width: 80%;
    }

    .send-comment {
        align-items: center;
    }

    .comment-area {
        align-items: center;
    }

    .name-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #text {
        width: 80%;
    }

    .pin-text {
        display: none;
    }

    .input-name {
        flex-direction: column;
        align-items: baseline;
    }
}

/* КОНТАКТЫ - ОПТИМИЗАЦИЯ */
@media only screen and (max-width: 720px) {
    .contact {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        width: 100%;
        margin-top: 0;
    }
}