.certificate_section{
    padding-top: 130px;
    margin-bottom: 50px;
}

.certificate_title{
    margin-bottom: 16px;

    font-size: 48px;
    font-weight: 400;
}

.certificate_service{
    padding-bottom: 70px;
    padding-top: 70px;
    border-bottom: 1px solid #EFF0F5;
}

.certificate_service:last-child{
    border-bottom: unset;
}

.certificate_title_section{
    font-size: 36px;
    font-weight: 400;
}

.certificate_section_group{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 235px);
    gap: 22px;
}

.certificate_section_element{
    width: 100%;
    height: 100%;
}

.certificate_section_wrap_img{
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.certificate_section_wrap_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.certificate_section_price{
    margin-top: 15px;

    color: #006738;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.certificate_section_caption{
    margin-top: 5px;
    color: #000;
    font-size: 16px;
    font-weight: 400;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.certificate_section_button{
    margin-top: 15px;
    height: 40px;
    width: 100%;

    border-radius: 10px;
    background-color: #006738;

    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.certificate_section_element:hover .certificate_section_wrap_img img{
    transform: scale(1.04);
}

.certificate_section_element:hover .certificate_section_button{
    background-color: #003836;
}

.certificate_section_element:hover .certificate_section_price{
    color: #003836;
}

@media(max-width: 768px){
    .certificate_title{
        text-align: center;
    }

    .about_hero_anchor{
        justify-content: center;
    }
    
    .certificate_title_section{
        text-align: center;
    }

    .certificate_section_group{
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .certificate_section_wrap_img{
        height: auto;
    }

    .certificate_title {
        font-size: clamp(28px, 4vw, 48px);
    }

    .certificate_title_section {
        font-size: clamp(22px, 3.5vw, 36px);
    }

    .certificate_section_price {
        font-size: clamp(16px, 2.5vw, 20px);
    }

    .certificate_section_caption {
        font-size: clamp(14px, 2.3vw, 16px);
        -webkit-line-clamp: 3;
    }

    .certificate_section_button {
        font-size: clamp(12px, 2vw, 14px);
    }
}

@media(max-width: 415px){
    .certificate_service {
        padding-bottom: 35px;
        padding-top: 35px;
        border-bottom: unset;
    }
}