body {
    font-family: "Poppins", sans-serif;
    background-color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-weight: 300;
    line-height: 1.7;
}

main {
    /* padding: 1% 11% 0% 11%; */

}

section,
footer,
nav {
    padding: 1% 11% 0% 11%;
}

ul {
    list-style-type: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;

    .close,
    .bars {
        display: none;
    }

    .logo {
        background-image: url("../assets/logo.jpg");
        height: 11dvh;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }

    ul {
        display: flex;
        width: 30%;

        li {
            width: 33%;
            cursor: pointer;
        }
    }
}

.banner {
    height: 80dvh;
    display: flex;
    align-items: center;
    background-color: #f9fcff;
    background-image: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);

    .col1 {
        width: 50%;

        h6 {

            font-size: 1rem;
            font-weight: 300;
        }

        h1 {
            font-size: 4rem;
            font-weight: 600;
        }

        .contactUS {
            border: 1px solid black;
            width: max-content;
            text-align: center;
            padding: 2%;
            border-radius: 5px;
            cursor: pointer;
        }
    }

    .col2 {
        width: 50%;
        background-image: url("../assets/bannerBG.svg");
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.about {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 5%;
    /* background-color: whitesmoke;
    padding: 0% 4%; */

    .col1 {
        width: 60%;

        h6,
        h2 {
            margin: 0;
            padding: 0;
        }

        h6 {
            font-size: 1rem;
        }

        h2 {
            font-size: 3rem;
        }
    }

    .col2 {
        width: 35%;
        background-image: url("../assets/aboutus.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        min-height: 50dvh;
        /* height: 100%; */

    }
}

.contact {
    display: flex;
    justify-content: space-between;

    h4,
    h2 {
        margin: 0;
        padding: 0;
    }

    h4 {
        font-size: 1rem;
    }

    h2 {
        font-size: 3rem;
    }

    .textArea {
        width: 40%;
    }

    .image {
        background-image: url("../assets/contact.png");
        width: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        min-height: 50dvh;
    }
}

.map {
    margin-top: 5%;
    border-radius: 10px;
}

footer {
    display: flex;
    margin-top: 5%;
    /* padding: 3% 0%; */
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(197 189 189 / 33%);

    h4 {
        margin: 0;
        padding: 0;
    }

    .logo {
        background-image: url("../assets/logo.jpg");
        min-height: 20dvh;
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .col1 {
        width: 50%;
    }

    .col2,
    .col3 {
        line-height: 2;
        width: 20%;
    }

}

.copyright {
    text-align: center;
    background-color: whitesmoke;
    margin: 0;
    padding: 2% 0%;
}