.container {
    margin-top: 30px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

.head {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.certificates {
    margin-top: 20px;
}

.certificate {
    position: relative;
    height: 150px;
    width: 250px;
    border: none;
    outline: none;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.lock {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.5;
    border-radius: inherit;
    z-index: 10;
    pointer-events: all;
}
.lock_svg {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    z-index: 10;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

@media screen and (min-width: 300px) {
    .head {
        font-size: 18px;
    }
    /* .certificate {
        height: 220px;
    } */
}

.before {
    display: none;
}

@media screen and (min-width: 1000px) {
    .container {
        margin: 0;
    }
}
@media screen and (max-width: 1000px) {
    .container {
        background: none;
        padding: 0;
        margin-top: 40px;
    }
    .head {
        padding-left: 20px;
    }
    .content {
        padding-left: 20px;
    }
    .slider_container {
        width: 100vw;
    }
    .before {
        display: block;
    }
}
