@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primaryColor: #FFFFFF;
    --secondaryColor: #EBD96B;
    --accentColorDark: #000000;
    --accentColorGrey: #C2C8DA;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    color: var(--accentColorDark);
}

/* About Section */

.about {
    margin: 120px 72px;
}

.about-header {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 22px;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: 2.88px;
    position: relative;
    z-index: 2;
}

.about-header svg {
    position: absolute;
    top: 24px;
    left: 14%;
    transform: translateX(-50%);
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: space-between;
}

.about-content p {
    width: 580px;
    font-size: 24px;
    font-weight: 400;
    margin-top: 50px;
}


.about-content img {
    width: 549px;
    height: 346px;
    border-radius: 250px 0px;
    box-shadow: 0.6em 0.6em 1.2em #838f9e,
                -0.5em -0.5em 1em #ffffff;
}


/* End About Section */

/* Our Team Section */
.our-team-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 22px;
}

.our-team-header h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: 2.88px;
    position: relative;
    z-index: 2;
}

.our-team-header svg {
    position: absolute;
    top: 24px;
    left: 66%;
    transform: translateX(-50%);
    z-index: 1;
}

.list-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.team-cards {
    margin: 62px 50px;
    width: 330px;
    height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f0f3f5;
    box-shadow: 0.6em 0.6em 1.2em #838f9e,
                -0.5em -0.5em 1em #ffffff;
    border-radius: 20px;            
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* .team-cards:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
} */

.team-cards img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}


.team-cards h1 {
    color: #181818;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-cards p {
    color: #595566;
    font-size: 16px;
}

.social-media {
    margin-top: 20px;

}

.social-media a {
    padding: 0px 10px;
    font-size: 24px;
    color: #595566;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.social-media a:hover {
    color: var(--accentColorDark);
}


/* End Our Team Section */

@media screen and (max-width: 720px) {
    .about {
        margin: 20px 20px;
    }

    .about-header {
        margin-bottom: 10px;
    }

    .about-header h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .about-header svg {
        left: 18%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content p {
        width: auto;
        font-size: 18px;
        margin-top: 20px;
    }

    .about-content img {
        width: 100%;
        height: auto;
        border-radius: 250px 0px;
        box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.25);
        margin-top: 20px;
        -webkit-border-radius: 250px 0px;
        -moz-border-radius: 250px 0px;
        -ms-border-radius: 250px 0px;
        -o-border-radius: 250px 0px;
    }

    .our-team-header h1 {
        font-size: 32px;
    }


    .team-cards {
        margin: 20px auto;
    }
}

@media (min-width: 721px) and (max-width: 1080px) {
    .about {
        margin: 50px 50px;
    }

    .about-header h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .about-header svg {
        left: 16%;
    }

    .about-content p {
        width: auto;
        font-size: 20px;
        margin-top: 30px;

    }

    .about-content img {
        width: 400px;
        height: auto;
        border-radius: 200px 0px;
        box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.25);
        margin-top: 30px;
    }

    .our-team-header h1 {
        font-size: 40px;
    }

    .our-team-header svg {
        left: 68%;
    }

    .team-cards {
        margin: 30px 20px;
    }
}