
section {
    min-height: 70vh;
    
}

.about {
    padding: 10px;
}

.about h1 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-text-color);
    margin-bottom: 15px;
}

.about h2 {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: var(--primary-text-color);
    font-weight: 600;
}

.about h3 {
    font-size: 15px;
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.about h3 a {
    color: var(--active1);
    text-decoration: underline;
}

.about h3 span {
    font-weight: 600;
    color: var(--primary-text-color);
    text-transform: capitalize;
}

.about ul {
    margin-left: 30px;
}

@media (min-width: 680px) and (max-width: 1199px) {
    .about h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .about h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .about h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
  
}

@media (min-width: 1200px) {
    .about h1 {
        font-size: 24px;
        margin-bottom: 22px;
    }
    
    .about h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .about h3 {
        font-size: 18px;
        margin-bottom: 17px;
    }

}