#hero {
    margin-top: 20px;
}

#hero>div {
    border-radius: 24px;
    background-color: rgb(var(--gray-color));
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
    height: 100%;
}

#hero .left {
    width: 32%;
    min-width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 24px;
}

#hero .subp {
    font-size: 24px;
}

#hero .right {
    width: 60%;
    height: 100%;
}

#hero .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    max-height: 650px;
}

/*
    Who We Are Section
*/

#what-is {
    margin-top: 100px;
    padding: 0 120px;
}

#what-is>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1680px;
    height: 100%;
    margin: 0 auto;
    border-radius: 24px;
    padding: 80px 24px;
    background-color: rgb(var(--gray-color));
}

#what-is .wrapper {
    max-width: 801px;
    width: 100%;
    margin: 0 auto;
}

#what-is h2 {
    margin-bottom: 24px;
    text-align: center;
}

#what-is p {
    font-size: 16px;
    text-align: center;
}

#book-a-visit {
    margin-top: 120px;
}

/* 
    Services Section
*/

#solutions {
    margin-top: 100px;
}

#solutions .section-inner {
    border-radius: 24px;
    background-color: rgb(var(--gray-color));
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
    height: 100%;
}

#solutions .left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#solutions .left h2 {
    text-align: left;
    margin-bottom: 16px;
}

#solutions .left p:not(:last-of-type) {
    margin-bottom: 16px;
}

#solutions .right {
    width: 55%;
}

#solutions .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

@media screen and (max-width: 1024px) {
    

    #hero .left {
        width: 40%;
    }

    #hero .right {
        width: 55%;
    }

    h1 {
        font-size: 40px;
        line-height: 1.2em;
    }

    .subp {
        font-size: 20px !important;
    }

    #services {
        flex-wrap: wrap;
        justify-content: center;
    }

    #services .service {
        width: 30%;
        margin-bottom: 40px;
    }

    h2 {
        font-size: 36px;
        line-height: 1.5em;
        text-align: center;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 768px) {

    #hero>div {
        flex-direction: column;
        align-items: center;
        padding: 50px 14px 14px 14px;
        overflow: hidden;
    }

    #hero .left {
        width: 100%;
        margin-bottom: 40px;
        padding-left: 0;
    }

    #hero h1 {
        font-size: 24px;
        line-height: 1.2em;
        text-align: center;
        margin-bottom: 12px;
        max-width: 340px;
        margin: auto;
    }

    .subp {
        font-size: 14px !important;
        text-align: center;
    }

    #hero .right {
        width: 100%;
        max-width: 550px;
        margin: auto;
        padding-top: 0;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.5em;
    }

    #what-is {
        margin-top: 60px;
    }

    #solutions > div {
        flex-direction: column-reverse;
        padding: 18px 14px;
        min-height: 0;
    }

    #solutions .left {
        width: 100%;
        margin-bottom: 0;
    }

    #solutions .left p {
        font-size: 14px;
        line-height: 1.5em;
    }

    #solutions button {
        width: 100%;
    }

    #solutions .right {
        width: 100%;
        border-radius: 0;
        margin-bottom: 24px;
    }

    #solutions .right img {
        max-width: 500px;
        height: auto;
        border-radius: 12px;
        margin: 0 auto;
        display: block;    
    }
    
}