.web {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #BBE7FC;
    padding: 50px 0 70px 0;
}
.web .ms-row {
    gap: 20px;
    max-width: 1000px;
}
.web .ms-row p {
    margin: 0;
    font-weight: bold;
    color: #1A469D;
}
.web .ms-row span {
    font-size: 16px;
    color: #090A0A;
    font-weight: bold;
}

.main-card {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 0;
    padding-top: 30px;
    justify-content: center;
}
.main-card.card-bottom {
    padding-top: 0;
}
.main-card .card {
    flex: 1 0 0;
    background: white;
    border-radius: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.main-card .card a {
    text-decoration: none;
    border-radius: 20px 20px 0 0;
    flex: 1 1 0;
}
.main-card .card a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: 0.3s ease-in;
}
.main-card .card:hover a img {
    transform: scale(1.03);
    filter: brightness(0.8);
}

.main-card .card .content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.main-card .card .content span.title {
    color: #0C82BC;
    font-size: 15px;
}
.main-card .card .content span {
    color: #0C82BC;
    font-size: 13px;
    background: #FFEE96;
}
.main-card .card .content p {
    color: #090A0A;
    font-size: 13px;
    flex: 1;
}
.main-card .card .content small.actor {
    color: #667075;
    font-size: 10px;
    align-self: center;
    text-decoration: none;
    justify-self: flex-end;
    text-align: center;
}
.card.card-temp {
    display: none;
}

.ms-title img {
    width: auto;
    height: 60px;
    margin-bottom: -10px;
}

@media (min-width: 768px) and   (max-width: 992px) { 
    .main-card {
        display: grid;
        grid-template-columns: 50% 50%;
        justify-content: center;   
        padding-bottom: 50px;
    }
    .card.card-temp {
        display: flex !important;
    }
    .card-bottom { 
        display: none;
    }
}

@media (max-width: 768px) {
    section .web {
        padding-bottom: 60px;
    }
    .web .ms-title img {
        align-self: center;
    }
    .main-card {
        flex-direction: column;
        padding-top: 20px;
    }
    section .web .ms-row {
        padding: 0;
    }
    .main-card .card { 
        overflow: unset;
    }
    .ms-content span {
        font-size: 14px !important;
        margin-top: 20px;
        text-align: center;
    }
    .card.card-temp {
        display: none;
    }
    .ms-title img {
        width: 24px;
        height: auto;
        margin-bottom: -10px;
    }
    .main-card.card-bottom {
        padding-bottom: 30px !important;
    }
}