.carousel-container {
    height: 100vh;
}

.carousel-container .grid-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100%;
}

.carousel-container .grid-wrapper>div:nth-child(1) .brand-logo {
    padding: 80px 200px;
}

.carousel-container .grid-wrapper>div:nth-child(1) {
    position: relative;
    background-color: var(--secondary-color);
}

.carousel-container .grid-wrapper>div:nth-child(1) .text-wrapper {
    display: flex;
    flex-direction: row;
    padding: 0 40px;
    margin-top: 80px;
    gap: 0 20px;
}

.carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel {
    margin-top: 35px;
}

.carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel .swiper-slide {
    font-family: 'Metropolis',sans-serif;
    font-weight: 700;
    font-size: 142px;
    letter-spacing: 0.03em;
    line-height: 1em;
    height: 38px;
    color: var(--secondary-color);
    text-shadow: 2px 0 var(--primary-color), -2px 0 var(--primary-color), 0 2px var(--primary-color), 0 -2px var(--primary-color),
        1px 1px var(--primary-color), -1px -1px var(--primary-color), 1px -1px var(--primary-color), -1px 1px var(--primary-color);
}

.carousel-container .grid-wrapper>div:nth-child(1) .titleCarousel {
    margin-top: 20px;
}

.carousel-container .grid-wrapper>div:nth-child(1) .titleCarousel .swiper-slide {
    font-family: 'Quicksand',sans-serif;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: 0.04em;
    height: 38px;
    line-height: 58px;
    color: #EBEDE4;
}

.carousel-container .grid-wrapper>div:nth-child(1) .textCarousel {
    position: relative;
    margin-top: 20px;
    height: 500px;
    width: 500px;
}

.carousel-container .grid-wrapper>div:nth-child(1) .textCarousel .swiper-slide {
    font-family: 'Metropolis',sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    width: fit-content;
    letter-spacing: 0.04em;
    color: #EBEDE4;
}

.carousel-container .grid-wrapper>div:nth-child(1) .textCarousel .swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: -200px;
}

.carousel-container .grid-wrapper>div:nth-child(1) .subtitle {
    font-family: 'Quicksand',sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #EBEDE4;
}

.carousel-container .grid-wrapper>div:nth-child(1) .nav-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    z-index: 1;
}

.carousel-container .grid-wrapper>div:nth-child(1) .nav-wrapper p {
    font-family: 'Quicksand',sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 36px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EBEDE4;
}

.carousel-container .grid-wrapper>div:nth-child(1) .buttons>img {
    cursor: pointer;
}

.carousel-container .grid-wrapper>div:nth-child(2) {
    position: relative;
    padding: 100px;
    background-color: var(--primary-color);
}

.carousel-container .grid-wrapper>div:nth-child(2)>p {
    position: absolute;
    font-family: 'Metropolis',sans-serif;
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

.carousel-container .grid-wrapper>div:nth-child(2)>p:first-child {
    top: 50px;
    right: 50px;
}

.carousel-container .grid-wrapper>div:nth-child(2)>p:last-child {
    bottom: 20px;
    right: 50px;
}

.carousel-container .grid-wrapper>div:nth-child(2) .imgCarousel {
    height: 100%;
}

.carousel-container .grid-wrapper>div:nth-child(2) .imgCarousel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media(max-width: 1600px) {
    .carousel-container {
        height: 900px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .brand-logo {
        padding: 40px 200px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .text-wrapper {

        margin-top: 40px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .textCarousel {
        margin-top: 10px;
        height: 400px;
        width: 400px;
    }
}

@media(max-width: 1400px) {
    .carousel-container {
        height: auto;
    }

    .carousel-container .grid-wrapper {
        grid-template-columns: 1fr;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .textCarousel {
        height: 400px;
        width: 700px;
    }

    .carousel-container .grid-wrapper>div:nth-child(2) .imgCarousel {
        width: 90vw;
    }

    .carousel-container .grid-wrapper>div:nth-child(2) {
        padding: 80px 20px;
        background-color: var(--primary-color);
    }
}

@media(max-width: 992px) {
    .carousel-container {
        overflow: hidden;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .brand-logo {
        padding: 40px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel .swiper-slide {
        font-size: 102px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .titleCarousel .swiper-slide {
        font-size: 45px;
        line-height: 40px;

    }

    .carousel-container .grid-wrapper>div:nth-child(1) .textCarousel {
        margin-left: -160px;
        margin-top: 30px;
        height: 500px;
        width: 75vw;
    }
}

@media(max-width: 480px) {
    .carousel-container .grid-wrapper>div:nth-child(1) .brand-logo {
            display: none;
        }
    .carousel-container .grid-wrapper>div:nth-child(1) .text-wrapper {
        flex-direction: column;
        padding: 0 15px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel .swiper-slide {
        font-size: 142px;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .titleCarousel .swiper-slide {
        width: 70vw;
    }

    .carousel-container .grid-wrapper>div:nth-child(2) {
        padding: 0;
    }
        .carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel {
            margin-top: 0;
        }
.carousel-container .grid-wrapper>div:nth-child(1) .numberCarousel .swiper-slide {
    font-size: 40px;
    height: fit-content !important;
}
.carousel-container .grid-wrapper>div:nth-child(1) .titleCarousel .swiper-slide {
    font-size: 26px;
    height: 20px;
    line-height: 30px;
}
.carousel-container .grid-wrapper>div:nth-child(1) .textCarousel .swiper-slide {
    font-size: 14px;
    line-height: 20px;
}
    .carousel-container .grid-wrapper>div:nth-child(1) .textCarousel {
        margin-left: 0;
        height: 300px;
    }

    .carousel-container .grid-wrapper>div:nth-child(2) .imgCarousel {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100vw;
    }

    .carousel-container .grid-wrapper>div:nth-child(2)>p {
        display: none;
    }

    .carousel-container .grid-wrapper>div:nth-child(1) .nav-wrapper {
        padding: 40px 15px;
    }
}