.main-gaming-container {
    max-width: 100%;
}

.slideshow-container {
    max-width: 1440px;
    position: relative;
    margin: auto;
    overflow-x: hidden;
}

.next {
    right: 0;
}

.text {
    color: white;
    font-size: 15px;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: Poppins-Light;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 6s;
    animation-name: fade;
    animation-duration: 6s;
}

@media screen and (max-width: 768px) {
    .main-gaming-container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: .9
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .9
    }
    to {
        opacity: 1
    }
}

@media only screen and (max-width: 768px) {
    .prev,
    .next,
    .text {
        font-size: 11px;
        overflow-x: hidden;
    }
    .slideshow-container {
        overflow-x: hidden;
        margin: 0px;
    }
}

.bgColor {
    background-color: rgb(236, 235, 235);
    padding: 10px 0px 40px 0px;
    overflow: hidden;
}

.setup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-setup {
    width: 1440px;
    display: flex;
    flex-wrap: wrap;
}

.card-setup {
    position: relative;
    width: calc(50% - 20px);
    min-height: 250px;
    background: #f2f2f2;
    margin: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.card-setup .imgBx {
    position: absolute;
    width: 50%;
    height: 100%;
}

.card-setup .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-setup .details {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 5px;
}

.content h3 {
    font-size: 1.3em;
    line-height: 1.6em;
    font-family: Poppins-Light;
}

.details {
    padding-top: 20px;
    text-align: center;
    background: #f2f2f2;
    color: black;
}

@media (max-width: 1280px) {
    .container {
        width: 100%;
    }
    .content h3 {
        line-height: 1.3em;
    }
    .card-setup {
        width: calc(90% - 20px);
        margin: 10px auto;
    }
    .content h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .card-setup {
        width: calc(50% - 20px);
        margin: 10px auto;
    }
    .card-setup .imgBx {
        position: relative;
        width: 100%;
        height: 180px;
    }
    .card-setup .details {
        position: relative;
        width: 100%;
        height: 150px;
    }
    .content h3 {
        font-size: 1em;
        line-height: 1.5em;
    }
}

@media (max-width: 500px) {
    .card-setup {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .card-setup .imgBx {
        position: relative;
        width: 100%;
        height: 220px;
    }
    .card-setup .details {
        position: relative;
        width: 100%;
        height: 80px;
    }
    .content h3 {
        font-size: 1.2em;
        line-height: 1.5em;
    }
}


/* hover to move img up */
.setup img {
    transition: 0.5s;
    animation-duration: 0.8s;
    animation-name: moveUpandDown;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.setup img:hover {
    animation-iteration-count: infinite;
}

@keyframes moveUpandDown {
    from {
        transform: translate(0, -20px);
    }
    to {
        transform: translate(0, -0px);
    }
}


/* for video */
.videosubtitle p {
    font-size: 1.3em;
    font-family: Poppins-Light;
}

video {
    width: 55%;
    height: auto;
    margin: 0px 40px 5px 40px;
    border-radius: 5px;
    border: 1px black solid;
}

@media only screen and (max-width: 1000px) {
    video {
        width: 80%;
    }
    .videosubtitle p {
        font-size: 0.9em;
        padding: 0px 30px 0px 30px;
    }
}