.tbt-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    padding-top: 120px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1420px) {
    .tbt-cont {
        flex-direction: column;
        align-items: center;
    }
}

.carousel2-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;

    position: relative;
    max-width: 1400px;
    width: 100%;
}
/*
.carousel2-container:hover {
    border-color: black;
}
*/
.carousel2-top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

.carousel2-button-left,
.carousel2-button-right {
    width: 40px;
    height: 70px;
    cursor: pointer;
    background: transparent;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel2-button-left {
    background-image: url('./../img/arrow-left.svg');
    margin-right: 10px;
}

.carousel2-button-right {
    background-image: url('./../img/arrow-right.svg');
    margin-left: 10px;
}

.carousel2-button-left:hover {
    transform: scale(1.1) translateX(-4px);
    filter: blur(0.8px);
}

.carousel2-button-right:hover {
    transform: scale(1.1) translateX(4px);
    filter: blur(0.8px);
}

.carousel2-button-left:active {
    transform: scale(1) translateX(-1px);
    filter: blur(0px);
}

.carousel2-button-right:active {
    transform: scale(1) translateX(1px);
    filter: blur(0px);
}

.buy-button {
    padding: 10px 2px;
    margin-bottom: 28px;
    text-decoration: none;
    text-align: center;
    font-family: 'Bebas Neue';
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    color: white;

    box-sizing: border-box;
    /*background: linear-gradient(180deg, #B3E66F 0%, #5BD56B 100%), #212529;*/
    background-color: rgba(33, 37, 41, 1);
    border: 2px solid #000000;
    border-radius: 34px;
    max-width: 320px;
    min-width: 180px;
    max-height: 80px;

    opacity: 1;
}

.buy-button:hover {
    /*background: linear-gradient(180deg, #03E66F 0%, #0BD56B 100%), #012529;*/
    background-color: black;
}

.window {
    position: relative;
    width: 580px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background-color: transparent;
}


.carousel2 {
    display: flex;
    position: relative;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.slide {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: #EAEAEA;
    box-sizing: border-box;
    height: 100%;
}

.green {
    background-color: #4CAF50;
}

.blue {
    background-color: #2196F3;
}

.red {
    background-color: #F44336;
}

.slide h2 {
    text-align: center;
    padding: 4px 0;
    padding-bottom: 0;
    margin-bottom: 0px;

    font-family: 'Times New Roman';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
}

.slide .slide-content {
    padding: 2px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: auto;
    align-items: center;
}

.slide-img {
    width: 60%;
    padding-right: 10px;
}

.slide-img img{
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: contain;
}

.slide .slide-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide .slide-text {
    font-family: 'Times New Roman';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #000000;
}

@media (max-width: 800px) {
    .tbt-cont {
        padding-top: 10px;
    }

    .carousel2-top-row {
        width: 100%;
    }

    .carousel2-container {
        padding-left: 0px;
        padding-bottom: 0;
        padding-top: 0;
    }

    .window {
        height: 460px;
    }

    .slide h2 {
        font-size: 22px;
    }

    .slide .slide-text {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (min-width: 1900px) {
    .window {
        width: 720px;
        height: 580px;
    }
}

.slide-link {
    opacity: 0;
}