.swiper-container .banner-mobile {
    display: none;
}
.swiper-banner {
    width: 100%;
    height: 100vh;
    position: relative;
}
iframe {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
}

.slide-first img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main {
    padding: 100px 40px;
}

.description{
    text-align: center;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.projects-grid .project {
    height: 442px;
    position: relative;
}
.projects-grid .project .description {
    font-weight: 500;
    font-size: 26px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.projects-grid .project .description {
    opacity: 0;
    transition: 0.4s;
}
.grid-projects .project:hover .description {
    opacity: 1;
}
.projects-grid .project:hover img {
    transition: 0.4s;
    filter: opacity(0.4) brightness(1.1);
}

.projects-grid .project img {
    transition: 0.4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-more-projects {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
   
}

.link-more-projects {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 32px;
    line-height: 49px;
    letter-spacing: 0.2em;
    color: #000;
    transition: 0.4s ease;
}

@media (max-width: 992px) {
    .main {
        padding: 100px 40px 67px;
    }
    .swiper-banner {
        height: 100%;
        margin-top: 165px;
    }
    .projects-grid .project {
        height: 340px;
    }
    .box-more-projects {
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .main {
        padding: 40px 20px 7px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .projects-grid .project {
        height: 340px;
    }
    .projects-grid .project .description {
        font-size: 15px;
        line-height: 1;
    }
    .box-more-projects {
        margin-top: 40px;
    }

    .link-more-projects {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .projects-grid .project {
        height: 191px;
    }
}
