

#hero {
    --text-color: #eeeeee;
    --heading-color: #ffffff;
    background-image: url('/assets/landing/hero-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#hero .wrapper {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#hero .bg {
    background: linear-gradient(89deg, #000000bf, transparent);
    background: #00000094;
    backdrop-filter: blur(1px);
}

#hero .flex {
    padding: 3rem 0;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero h1 {
    font-size: 3rem;
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 17em;
    line-height: 1.6em;
    margin-bottom: .4em;
    font-weight: 600;
}

#hero .paragraph {
    max-width: 36em;
    line-height: 1.8em;
}

#hero .btn {
    /* --button-bg: #fafafa;
    --button-color:#062388; */
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    font-size: 1em;
    font-weight: 600;
}

#hero .btn img {
    height: 1.1em;
}

#about .flex {
    display: flex;
    gap: 2rem;
    align-items: start;
}

#about .image img {
    display: block;
    width: 40vw;
    max-width: 600px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

#services h2 {
    text-align: center;
}

#services p.paragraph {
    text-align: center;
}

#services .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    margin-top: 2rem;
}

#services .card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

#services .card:hover{
    box-shadow: 1px 1px 15px 0px #dddddd;
}

#services .image img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#services .card .content {
    padding: 2rem 1.5rem;
}

#services .card h3 {
    margin-top: 0;
}

#team h2{
    text-align: center;
}

#team .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    padding-top: 2rem;
}

#team .card{
    padding: 2rem;
    background-color: #ffffff;
    border-radius: .3em;
}

#team .card .header{
    display: flex;
    align-items: center;
    gap: 1rem;
}

#team .card h3{
    margin-top: 0;
    margin-bottom: .3em;
}

#team .card .header img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 1px 1px 5px 0px #dddddd;
}

#team .qualification {
    display: block;
}

#team .title {
    font-weight: 500;
    display: block;
}

#team .card .description {
    font-size: .95em;
}

@media screen and (max-width: 1000px) {
    #services .grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
}

@media screen and (max-width: 900px) {
    #about .image {
        display: none;
    }
    #about h2{
        text-align: center;
    }
    #about .heading.left {
        justify-content: center;
    }
    #team .grid {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

@media screen and (max-width: 700px) {
    #hero .flex {
        flex-direction: column;
    }
    
    #services .grid {
        grid-gap: 1rem;
        grid-template-columns: 1fr;
    }

    #services .card .content{
        padding: 2rem 1rem;
    }
    
    #team .card {
        padding: 2rem 1rem;
    }

    #team .card .header img {
        width: 60px;
        height: 60px;
    }
}

