.header-screen {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
}
.image-landscape {
    justify-content: flex-start;
    height: 300px;
    background: url('../assets/about-wallpaper2.png') center / cover no-repeat;
}
.title-wrapper {
    text-align: center;
    margin-bottom: 48px;
}
.title-wrapper .small {
    margin-top: 16px;
}
.title-wrapper {
    /* max-width: 1360px; */
    display: flex;
    align-items: center;
}
.title-wrapper .xx-big span {
    background-color: rgba(255, 246, 242, 0.5);
}

.dual-section {
    background-color: #FFF6F2;
}
.dual-section-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.dual-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-basis: 50%;
}
.dual-item:nth-child(1) {
    margin-right: 60px;
}
.dual-item:nth-child(3) {
    margin-left: 60px;
}
.dual-item .big {
    margin-bottom: 40px;
}
.dual-section .divider {
    display: none;
}

.features-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    max-height: 364px;
    max-width: 324px;
}
.feature-card img {
    border-radius: 16px;
}
.feature-card .primary {
    margin-top: 10px;
    margin-bottom: 10px;
}
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}
.features-container img:hover {
    cursor: pointer;
    opacity: 0.8;
    
}
.personal-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.personal-section {
    background-color: #FFF6F2;
    text-align: center;
}
.personal-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.instructor-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 400px;
    width: 324px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
}
.instructor-card img {
    border-radius: 50%;
}
.instructor-card .primary {
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .personal-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .dual-section-container {
        flex-direction: column;
    }
    .dual-item {
        flex-basis: 100%;
    }
    .dual-item:nth-child(1) {
        margin-right: 0;
        margin-top: 40px;
    }
    .dual-item:nth-child(3) {
        margin-left: 0;
        margin-bottom: 40px;
    }
    .dual-section .divider {
        display: block;
    }
}

@media (max-width: 850px) {
    .features-container {
        display: flex;
        flex-direction: column;
    }
    .personal-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    .instructor-card {
        width: 250px;
    }
    .feature-card {
        width: 250px;
    }
    .feature-card img {
        width: 250px;
        height: auto;
    }
}

@media (max-width: 350px) {
    .instructor-card {
        width: 200px;
    }
    .feature-card {
        width: 200px;
    }
    .feature-card img {
        width: 200px;
        height: auto;
    }
    .instructor-card img {
        width: 200px;
        height: 200px;
    }
}