@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
}

.contactus_container {
    width: 100vw;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}

.contactus_hero {
    width: 100%;
    height: 80vh;
}

.contactus_hero img {
    width: 100%;
    height: 100%;
}

.contactus_hero h2 {
    font-size: 2rem;
    position: absolute;
    top: 40%;
    left: 10rem;
    color: #fff;
    text-decoration: underline;
    animation: drop-in 800ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.contactus_body {
    width: 100vw;
    height: 90vh;
    padding: 2rem 15rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contactus_content {
    color: #fff;
    width: 50%;
    height: 100%;
    /* border: 2px solid blue; */
    /* background: linear-gradient(to right, #295a88, #000000); */
    background: linear-gradient(to right, #8b8b8b, #252525);
    border-radius: 16px 0 0 16px;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 5px 10px #5a5a5a,
        5px -5px 10px #ffffff;

}

.contactus_content a {
    color: #fff;
}

.contactus_content .phone_number .phone,
.contactus_content .mail_id .mail,
.contactus_content .location_address .location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}


.contactus_form {
    color: #fff;
    /* background: linear-gradient(to right, #295a88, #000000); */
    background: linear-gradient(to right, #8b8b8b, #252525);
    width: 50%;
    height: 100%;
    padding: 3rem 5rem 3rem 5rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 5px 5px 10px #5a5a5a;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.contactus_form h2 {
    font-size: 2rem;
    padding: 0 0 1rem 0;
}

.contactus_form form {
    width: 100%;
}

.contactus_form form input,
.contactus_form form textarea {
    width: 100%;
    padding: 0.3rem;
    margin: 0.2rem 0;
    border-radius: 5px;
    background: #fff;
    /* outline: ; */
    border: 1px solid #ccff01;
    color: #000;
}

.contactus_form form #btn {
    font-size: 1rem;
    font-weight: bold;
    color: #ccff01;
    background: #000000;
    transition: 0.5s;
}

.contactus_form form #btn:hover {
    color: #000000;
    background: #ccff01;
}

.contact_map {
    width: 100%;
    padding: 2rem 15rem;
}

.contact_map iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #838383, -10px -10px 5px #838383;
}

@media (max-width: 991px) {
    .contactus_container {
        margin-top: 0;
        width: 100vw;

    }

    /* .contactus_hero img { */
    .contactus_hero {
        margin-top: 0;
        width: 100%;
        height: 30vh;
    }

    .contactus_hero h2 {
        font-size: 1.2rem;
        top: 28%;
        left: 1rem;
    }

    .contactus_body {
        height: 100%;
        padding: 2rem 1rem;
        flex-direction: column;
    }

    .contactus_content {
        width: 100%;
        height: 100%;
        /* background: linear-gradient(to bottom, #295a88, #000000); */
        background: linear-gradient(to bottom, #8b8b8b, #252525);
        border-radius: 16px 16px 0 0;
        padding: 2rem 3rem;

    }

    .contactus_content h2 {
        font-size: 1rem;
    }

    .contactus_content .phone_number,
    .contactus_content .mail_id,
    .contactus_content .location_address {
        margin: 0.5rem 0;
        font-size: 1rem;
    }

    .contactus_content .phone_number p,
    .contactus_content .mail_id p,
    .contactus_content .location_address p {
        font-size: 0.8rem;
    }

    .contactus_form {
        margin-top: 0;
        /* background: linear-gradient(to top, #295a88, #000000); */
        background: linear-gradient(to top, #8b8b8b, #252525);
        width: 100%;
        height: 100%;
        padding: 2rem;
        border-radius: 0 0 16px 16px;
    }

    .contactus_form h2 {
        font-size: 1.5rem;
    }
}