:root {
    --main-color: rgb(17, 84, 189);
}

.main-content-about-us {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 90vh;
    gap: 30px;
}

.about-us-h1 {
    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.creator-card {
    box-shadow: 0 0 7px #aaa;
    padding: 5px;
    width: 100%;
    max-width: 300px;
    margin: 30px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 10px;
    transition: transform 0.2s, box-shadow 0.2s ease-in;

    &:hover {
        transform: translateY(-10px);
        box-shadow: 0px 4px 15px 0 #aaa;
    }
}

.creator-card p {
    text-align: center;
}

.creator-card img {
    width: 200px;
    border-radius: 50%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--main-color);
    transition: box-shadow 0.2s ease-in;
}

.creator-card:hover img {
    box-shadow: 0 0 6px var(--main-color);
}

.main-motivation {
    background-color: #f1f8ff;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-section,
.know-the-team-section {
    padding: 20px;
}

.know-the-team-section {
    margin-bottom: 35px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-about-us-section{
    padding:65px 30px 40px 30px;
}

.hero-section hr {
    margin: 0;
    margin-bottom: 7px;
}

.text-motivation {
    width: 100%;
    max-width: 500px;
}

.img-motivation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-motivation img {
    max-width: 100%;
    width: 370px;
    box-shadow: 0 0 4px #888;
    border-radius: 10px;
}

.description {
    text-align: center;
}

.main-content-about-us h2 {
    font-weight: 600;
}

@media screen and (max-width:1260px) {
    .text-motivation {
        max-width: 800px;
    }

    .img-motivation {
        flex-grow: 1;
    }

    .img-motivation img {
        width: 800px;
        max-height: 370px;
        object-fit: cover;
        object-position: center;
    }
}