/* *,
*::before,
*::after {
    box-sizing: border-box;
}

.containter {
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
    text-align: center;
    padding: 70px 0;
}

.bgColor {
    background-color: rgb(236, 235, 235);
    padding: 10px 0px 40px 0px;
    overflow: hidden;
}

@media screen and (max-width: 1680px) {
    .containter {
        width: 1200px;
    }
}

@media screen and (max-width: 1280px) {
    .containter {
        width: calc(100% - 40px);
    }
}

.main {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    background-color: var(--primary-light);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_item {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_item {
        width: 33.3333%;
    }
}

.card {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_content {
    background-color: var(--primary-light);
}

.card_content h2 {
    padding: 0.5em;
    background-color: var(--secondary-white);
    text-align: center;
}

.card_text {
    color: black;
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 1.25em;
    font-weight: 400;
    padding: 15px 5px 0px 5px;
    text-align: center;
    font-family: 'Poppins-Medium';
}

.videosubtitle p {
    font-size: 1.2em;
    font-family: 'Poppins-Medium';
}

video {
    width: 55%;
    height: auto;
    margin: 0px 40px 5px 40px;
    border-radius: 5px;
    border: 1px black solid;
}

@media only screen and (max-width: 1024px) {
    video {
        width: 90%;
    }
    .videosubtitle p {
        font-size: 0.9em;
        padding: 0px 30px 0px 30px;
    }
} */



.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.2em;
    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%;
    }
    .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: 220px;
    }
    .card-setup .details {
        position: relative;
        width: 100%;
        height: 100px;
    }
    .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: 280px;
    }
    .card-setup .details {
        position: relative;
        width: 100%;
        height: 80px;
    }
    .content h3 {
        font-size: 1.2em;
        line-height: 1.5em;
        padding-bottom: 40px;
    }
}



.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);
    }
}



.videosubtitle p {
    font-size: 1.2em;
    font-family: 'Poppins-Medium';
}

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;
    }
}