.jk-afgi-main-tt {
    margin-bottom: 90px;
}
.about-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
}

.about-section h1 {
    text-align: center;
    color: #0073e6;
    margin-bottom: 20px;
    font-family: "Ubuntu", serif;
    font-size: 39px;
}

.about-section h2 {
    color: #005bb5;
    margin-top: 20px;
    margin-bottom: 10px;
    padding:  0  20px 0 20px;
    font-family: "Ubuntu", serif;
}

.about-section h3 {
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
    font-family: "Ubuntu", serif;
}

.about-section p {
    margin: 10px 0;
    padding:  0  30px 0 30px;
    color: var(--black-color);
    font-size: 19px;
    line-height: 1.3;
}

.about-section ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: disc;
    padding:  0  30px 0 30px;
    color: var(--black-color);
}

.about-section ul li {
    margin-bottom: 5px;
    
}


.hosts-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 20px;
    margin-bottom: 40px;
}

.host {
    text-align: center;
    max-width: 300px;
}

.host img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.host h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: var(--black-color);
    
}

.host p {
    font-size: 0.9em;
    color: var(--black-color);
    padding: 0px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .hosts-section {
        flex-direction: column;
        align-items: center;
    }

    .host {
        max-width: 100%;
    }

    .about-section h1 {
        font-size: 25px;
    }


}

@media (max-width: 769px) {
    .about-section p {
        margin: 10px 0;
        padding:  10px;
        color: var(--black-color);
        font-size: 15px;
        line-height: 1.3;
    }
}


.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


