.contactform-container {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    margin-bottom: 100px;
}

.contact-div {
    max-width: 1154px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contactform-info {
    width: 60%;
    margin-right: 5%;
}

.contactform-info h1 {
    text-transform: uppercase;
    font-weight: 700;
}

.contactform-info .contactform-email {
    color: #8098FF;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.contactform-info .contactform-para {
    color: #fff;
    margin-bottom: 20px;
    margin-right: auto;
    font-family: "HC_Light", sans-serif;
    font-size: 16px;
    line-height: 30px;
}


.contactform-form .form-block1 {
    width: 650px;
    min-width: 500px;
    justify-content: space-between;
    margin-bottom: 10px;
    display: flex;
}

.block1-content select option {
    color: #000;
}

#block1-name {
    width: 24%;
}

#block1-email {
    width: 42%;
}

.contactform-form .form-block2 {
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    grid-row-gap: 10px;
    margin-bottom: 10px;
}

.contactNum input[type="number"]::-webkit-inner-spin-button,
.contactNum input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contactNum input[type="number"] {
    -moz-appearance: textfield;
    /* For Firefox */
}

.contactform-form .form-block3 {
    margin-bottom: 10px;
}

/*Footer tagline*/
#footer .col-3 .footer-tagline h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}

/*Responsive*/
@media screen and (max-width: 767px) {
    #home {
        position: relative;
    }

    #home nav {
        position: absolute;
        top: -78px;
        width: 100%;
    }

    nav .navlogo {
        font-size: 5.5vw;
        padding-right: 100px;
        padding-top: 8px;
    }

    .contactform-container {
        width: 100%;
        padding-top: 50px;
        padding-left: 7%;
        padding-right: 7%;
    }

    .contact-div {
        flex-direction: column;
    }

    .contactform-info {
        width: auto;
        margin-bottom: 30px;
    }

    .contactform-info h1 {
        font-size: 7.5vw;
        line-height: 35px;
        width: 70%;
    }

    .contactform-info .contactform-email {
        font-size: 4.2vw;
        line-height: 25px;
    }

    .contactform-info .contactform-para {
        font-size: 3.5vw;
        line-height: 24px;
        margin-bottom: 0;
    }

    .contactform-form .form-block1 {
        width: auto;
        min-width: auto;
        flex-direction: column;
        margin-bottom: 0;
    }

    .form-block1 #block1-name {
        width: 100%;
    }

    .form-block1 .block1-content select {
        margin-bottom: 10px;
    }

    .block1-content input {
        margin-bottom: 10px;
    }

    .form-block1 #block1-email {
        width: 100%;
    }

    .contactform-form button {
        width: 100%;
        max-width: none;
        border-radius: 10px;
        padding: 12px 30px;
        font-size: 14px;
        line-height: 15px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    #footer {
        padding-left: 7%;
        padding-right: 7%;
        flex-direction: column;
    }

    #footer .footer-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }

    .footer-container .col-1 {
        margin-bottom: 50px;
    }

    .col-1 h1 {
        font-size: 40px;
    }

    .socials a img {
        width: 25px;
    }

    .footer-container .col-2 {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    .col-2 h1 {
        font-size: 6.5vw;
        margin: 10px;
    }

    .footer-container .col-3 {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-3 h1 {
        font-size: 6.5vw;
        margin: 10px;
    }

    .col-3 p {
        text-align: center;
    }
}

/*Responsive*/