section {
    padding: 60px 0px;
}

.contact .title {
    font-family: 'BebusNeue-Regular';
    font-size: 75px;
    color: #2D2D2D;
}

.contact .title>span {
    color: #EE7E30;
}

@media screen and (max-width:768px) {
    .contact .title {
        font-size: 55px;
    }
    .contact iframe {
        height: 100% !important;
    }
}

@media screen and (max-width:767px) {
    .contact .query-text {
        position: relative !important;
        font-size: 15px;
    }
}

.contact .location {
    font-family: 'BebusNeue-Regular';
    font-size: 15px;
    width: 95px;
    text-align: center;
    padding-bottom: 10px;
    color: #7B7B7B;
    cursor: pointer;
}

.contact .location.active {
    color: #002347;
    /* border-bottom: 5px solid #002347; */
    font-size: 18px;
}

.contact .location.active hr {
    border-top: 5px solid black;
    width: 100%;
    position: relative;
    opacity: 1;
    top: 12px;
    display: block;
    margin: 0;
}

@media screen and (min-width:1400px) {
    .enquiry-form .container {
        max-width: 1320px;
    }
}

.enquiry-form input.form-control,
textarea.form-control {
    height: 70px;
    margin-top: 20px;
    border: 1px solid #AEAEAE;
    font-size: 14px;
    padding-left: 25px;
    font-family: 'Lato-Light';
}

.enquiry-form textarea.form-control {
    height: 200px;
    padding: 25px;
}

.enquiry-form select.form-select {
    height: 70px;
    margin-top: 20px;
    border: 1px solid #ffffff;
    font-size: 14px;
    padding-left: 25px;
    background: transparent;
    color: white;
}

.enquiry-form select.form-select option {
    background-color: white;
    color: black;
}

.enquiry-animate-btn button {
    position: relative;
    border-radius: 5px;
    transition: 2s all ease;
    z-index: 1;
    font-size: 16px;
    cursor: pointer;
    font-family: 'BebusNeue-Regular';
    background-color: #002347;
    color: white;
}

.enquiry-animate-btn button::before {
    content: "";
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-color: #2D2D2D;
    border-radius: 5px;
    transition: all 0.3s;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 100%;
}

.enquiry-animate-btn button:hover {
    color: #fff;
    transition: all 0.6s;
    /* border: 1px solid #002347; */
    background: #2D2D2D;
}

.enquiry-animate-btn button:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.enquiry-form .blue-box {
    background-color: #002347;
    height: 525px;
    position: relative;
    margin-top: 200px;
}

.enquiry-form .blue-box .container {
    background: #EE7E30;
    position: relative;
    top: -200px;
    border-radius: 5px;
}

@media screen and (max-width:768px) {

    .enquiry-form input.form-control,
    textarea.form-control {
        height: 45px;
        margin-top: 10px;
        font-size: 12px;
        padding: 12px 20px !important;
    }

    .enquiry-form textarea.form-control {
        height: 150px;
        padding: 25px;
    }

    .enquiry-form select.form-select {
        height: 45px;
        margin-top: 10px;
        border: 1px solid #ffffff;
        font-size: 12px;
    }

    .enquiry-form .blue-box {
        background-color: #002347;
        height: 455px;
        position: relative;
        margin-top: 200px;
    }

    .enquiry-form .blue-box .container {
        background: #EE7E30;
        position: relative;
        top: -200px;
        left: 0px;
    }
}