
#connect {
    text-align: center;
    font-weight: 600;
    margin: 40px 0 20px 0;
}

.mapsection {
    width: 100%;
    margin: 30px;
}

.contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 30px;
}
.contacts .formcontact,.contacts .details{
    width: 50%;
}
.contacts .details{
    width: 460px;
    height: 400px;
    border: 1px solid rgb(238, 238, 238);
    margin: 20px;
    background-color: rgb(242, 255, 231);
    padding: 30px;
    box-shadow: 6px 6px 10px rgb(209, 209, 209);
}
.contacts .details h5{
    color:rgb(73, 73, 73);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}
.contacts .details h6{
    color: black;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
}
.contacts .details p{
    color: black;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.9;
}
.contacts .details i{
    margin-right: 7px;
}
.formcontact .enquiryform {
    width: 95%;
    height: auto;
    margin: 20px;
    padding: 20px;
    margin-left: 40px;
    justify-content: space-evenly;
    align-items: center;
}
.formcontact .enquiryform h4,
.enquiryform p {
    text-align: center;
    color: darkgreen;
}

.formcontact .enquiryform h4 {
    font-weight: 600;
}

.formcontact .enquiryform .nameph {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.formcontact .enquiryform input,
.enquiryform textarea {
    width: 95%;
    margin: 15px;
    border: none;
    padding: 10px;
}

.formcontact .enquiryform button {
    border: 2px solid darkgreen;
    background-color: white;
    color: darkgreen;
    width: 140px;
    height: 35px;
    padding: 5px;
    text-align: center;
    font-weight: 500;
    position: relative;
    left: 200px;
}
.formcontact .enquiryform button i{
    margin-right: 2px;
}

.formcontact .enquiryform button:hover {
    background-color: rgb(211, 243, 185);
}
.formcontact .enquiryform h6{
    text-align: center;
    margin: 10px;
}

@media screen and (max-width: 600px) {
    #connect {
        margin: 20px 0;
    }

    .contacts {
        flex-direction: column;
    }

    .contacts .formcontact, .contacts .details {
        width: 100%;
    }

    .contacts .details {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        height: auto;
    }

    .formcontact .enquiryform {
        margin-left: 0;
    }

    .formcontact .enquiryform button {
        width: 100%;
        left: 0;
    }

    .mapsection {
        margin: 20px 0;
    }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    .contacts {
        flex-direction: column;
    }

    .contacts .formcontact, .contacts .details {
        width: 100%;
    }

    .contacts .details {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        height: auto;
    }

    .formcontact .enquiryform {
        margin-left: 0;
    }

    .formcontact .enquiryform button {
        width: 100%;
        left: 0;
    }

    .mapsection {
        margin: 20px 0;
    }
}

