@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
}
  
@font-face {
    font-family: 'CovesLight';
    src: url('/fonts/coves/CovesLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: 'CovesBold';
    src: url('/fonts/coves/CovesBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
  
body {
    margin: 0;
    overflow-x: hidden;
}

/* BANNER SECTION */

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.sub-navbar {
    z-index: 3;
}

.sub-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.sub-navbar ul li{
    font-family: 'Inter';
    font-size: 18px;
    color: #39A78E;
    list-style: none;
    padding: 80px 0;
    margin: 0;
}

.top-banner {
    background-image: url('../img/quality/calidad_banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 180px;
    color: white;
    position: relative;
    z-index: 1;
}

/* NAVIGATION SECTION */

.navigation{
    margin-top: 80px;
}

.nav-size{
    max-width: 900px;
    border-radius: 15px;
    background-color: #f0f0f0;
}

.navigation button{
    font-family: 'Inter';
    padding: 20px 70px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-weight: bold;
}

.navigation button.active {
    background-color: #39A78E;
    color: white;
    border-radius: 15px;
}

/* CONTENT SECTION */

.calidad-content {
    display: none;
}

.calidad-content.active {
    display: flex;
}

.content-text{
    max-width: 500px;
}

.calidad-content .row{
    margin-top: 80px;
}

.content-img img{
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    border-radius: 25px;
}

.content-text h2{
    font-family: 'Inter';
    margin-bottom: 20px;
}

.content-text p{
    font-family: 'CovesLight';
}

/* ACHIVEMENTS SECTION */

.achivements{
    margin-top: 80px;
    margin-bottom: 80px;
}

.achivements-title{
    text-align: center;
}

.achivements-title h2{
    font-family: 'Inter';
    font-weight: 700;
    color: #004F73;
    margin-top: 20px;
}

.achivements-title span{
    font-family: 'Inter';
    color: #00a98c;
}

.certificates .row{
    margin-top: 40px;
}

.certificates img{
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}