
* {
    padding: 0;
    margin: 0;
    font-family: 'Nexa', sans-serif;
}

body {
    width: 100%;
    height: auto;
    background-image: url(./Web-maas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
}

section {
    width: 90%;
    margin: 0 auto;
}

#header {
    height: 100px;
}

#headerSection {
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo{
    height: inherit;
    display: flex;
    align-items: center;
}

#logo > a > img {
    height: 120px;
}

#EnquireBTN {
    background-color: #138AF2;
    color: white;
    padding: 10px 20px;
}

#EnquireBTN > i {
    margin-right: 10px;
}

#mainSection {
    height: 90vh;
}

#mainSection > article {
    height: inherit;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 50px;
    gap: 0px;
}

#mainSection > article > aside {
    flex-basis: 45%;
}

#bodyHeads {
    flex-basis: 50%;
}

#bodyHeads > h5 {
    font-size: 32px;
}

#bodyHeads > h2 {
    font-size: 55px;
}

#bodyHeads > a {
    margin-top: 10px;
    padding: 15px 20px;
    background-color: #138AF2;
    color: white;
    font-weight: bold;
}

#bodyHeads > p {
    margin-bottom: 30px;
    font-size: 17px;
}

#contInfo {
    width: 100%;
    height: 40px;
    background-color: #138AF2;
    position: fixed;
    bottom: 0;
}

#contInfo > article {
    display: flex;
    height: inherit;
    justify-content: space-around;
    color: white;
    align-items: center;
}

#contInfo > article > aside > a {
    color: white;
}

#contInfo > article > aside > a > i {
    margin-right: 5px;
}

#reviewAndExpe {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    
}

#reviewAndExpe > div {
    padding: 15px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 1px 2px 10px #68b1f1;
}

#googleReview {
    display: flex;
    gap: 10px;
}

#googleReview > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#googleReview > div i {
    color: #F9A825;
}

#googleReview p {
    margin: 0;
}

#ourExpe {
    text-align: center;
}

#ourExpe > h2 {
    color: #138AF2;
    font-weight: bold;
}

#ourExpe > h5 {
    font-size: 16px;
}


#formSec {
    width: 80%;
    background: linear-gradient(#138AF2, #68b1f1);
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 1px 2px 10px #68b1f1;
}

#formSec > h2 {
    color: white;
    text-align: center;
}

#formSec > p {
    color: white;
    font-size: 15px;
}

#formSec > hr {
    background-color: white;
    height: .5px;
    border-radius: 30%;
}

#formSec > form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

#formSec > form > input {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

#formSec > form > input[type="button"] {
    background-color: #363535;
    color: white;
    font-weight: bold;
}

@media (max-width: 608px) {
    #logo > a > img {
        height: 70px;
    }

    #mainSection {
        height: auto;
        margin-bottom: 100px;
    }

    #mainSection > article {
        flex-wrap: wrap;
    }

    #mainSection > article > aside {
        flex-basis: 100%;
    }
    
    #bodyHeads {
        flex-basis: 100%;
    }

    #bodyHeads > h5 {
        font-size: 32px;
    }
    
    #bodyHeads > h2 {
        font-size: 75px;
    }

    #mainSection > article > aside:nth-child(2){
        margin-top: 50px;
    }

    #formSec {
        width: 100%;
    }

    #contInfo > article {
        flex-wrap: wrap;
    }

    #contInfo {
        height: auto;
    }

    #contInfo > article > aside {
        padding: 10px auto;
    }
}