@import url('../css/style.css');



.about-hero-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 44vh;
    color: var(--white-color);
}

.about-hero-title {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    line-height: 4rem;
}

.about-hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    font-weight: 600;
    width: 50%;
}

.about-content-section {
    color: #6D6F72;

}







.border-bottom-primary {
    border-bottom: 1px solid #3f368d;
}


.about-end-section-mini-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-color);
}

.about-end-section-bold-title {
    font-weight: 700;
    color: var(--primary-color);
    width: 70%;
}


.about-end-gray-section {
    background-color: #F7F7F7;
    color: #3f368d;
    font-size: 3rem;
    font-weight: 500;
}

.about-end-gray-section-btn {
    font-size: 1.3rem;
    color: white;
    background: #3f368d;
    height: fit-content;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 300;
}
.img-hover {
    position: relative;
    overflow: hidden; /* Taşmayı sürekli gizli tutar */
    aspect-ratio: 3/2; /* Resim oranını korur */
    background-color: #3f368d;
}

.img-hovered {
    transition: transform .3s ease; /* Transform geçişini kontrol eder */
    width: 100%;
    height: auto; /* Resmin aspect-ratio'sunu korur */
    display: block; /* Resmi blok olarak gösterir */
}

.img-hover:hover .img-hovered {
    transform: scale(1.5); /* Büyüme efekti */
    /* Transform etkisiyle genişlemesini kontrol eder */
}

.img-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 992px) {

}

@media only screen and (max-width: 768px) {
    .about-hero-title {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.8rem;
        width: 70%;
    }
    
 
}

@media only screen and (max-width: 576px) {

}