@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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 80px;
}

.quote_container {
    margin-top: 0;
    width: 100vw;
}

.quote_hero {
    width: 100%;
    height: 80vh;
    position: relative;
}

.quote_hero img {
    width: 100%;
    height: 100%;
    filter: brightness(80%);
}

.quote_hero h2 {
    font-size: 2rem;
    position: absolute;
    top: 40%;
    left: 10rem;
    color: #fff;
    text-decoration: underline;
    animation: drop-in 800ms ease 500ms backwards;
}

.quote_hero h2 span {
    text-decoration: none;
    color: #ccff01;
    font-size: 3rem;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.quote_part {
    width: 100vw;
    height: 100vh;
    padding: 2rem 10rem;
    display: flex;
}

.quote_part .contactus_content {
    color: #fff;
    width: 40%;
    height: 100%;
    /* 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;
}

.quote_part .contactus_content a {
    color: #fff;
}

.quote_part .contactus_content .phone_number .phone,
.quote_part .contactus_content .mail_id .mail,
.quote_part .contactus_content .location_address .location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}

.quote_part .contactus_content button {
    cursor: pointer;
    width: 50%;
    border: 2px solid #ccff01;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: bold;
    color: #ccff01;
    background: #000000;
    transition: 0.5s;
}

.quote_part .contactus_content button:hover {
    color: #000000;
    background: #ccff01;
}

.quote_part .quote_form {
    overflow: hidden;
    width: 60%;
    color: #fff;
    /* background: linear-gradient(to right, #295a88, #000000);*/
    background: linear-gradient(to right, #8b8b8b, #252525);
    height: 100%;
    padding: 1rem 5rem 1rem 2rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 5px 5px 10px #5a5a5a;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote_part .quote_form .form_head {
    width: 100%;
    margin: 2rem 0 1rem 0;
}

.quote_part .quote_form .form_head h2 {
    color: #ccff01;
    font-size: 1.75rem;
    text-decoration: underline;
}

.quote_part .quote_form .form_form {
    width: 100%;
}

.quote_part .quote_form .form_form form {
    display: flex;
    flex-direction: column;
}

.quote_part .quote_form .form_form form input,
.quote_part .quote_form .form_form form select {
    border-radius: 10px;
    height: 1.75rem;
    width: 100%;
    padding: 0.1rem 0.5rem;
}

.quote_part .quote_form .form_form form #products {
    height: 4rem;
}

#m_size {
    font-size: 0.7rem;
    color: #ccff01;
}

.quote_part .quote_form .form_form form button {
    border: 2px solid #ccff01;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: bold;
    color: #ccff01;
    background: #000000;
    transition: 0.5s;
}

.quote_part .quote_form .form_form form button:hover {
    color: #000000;
    background: #ccff01;
}

@media (max-width: 991px) {

    .product_container {
        width: 100vw;
        margin-top: 0;
    }

    .quote_hero {
        width: 100%;
        height: 30vh;
        position: relative;
        margin-top: 0;
    }

    .quote_hero h2 {
        font-size: 1.2rem;
        left: 1rem;
    }

    .quote_hero h2 span {
        font-size: 1.5rem;
    }

    .quote_part {
        height: 100%;
        padding: 2rem 1rem;
        flex-direction: column-reverse;
    }

    .quote_part .contactus_content {

        margin-top: 0;
        /* background: linear-gradient(to top, #295a88, #000000); */
        background: linear-gradient(to top, #8b8b8b, #252525);
        width: 100%;
        height: 100%;
        padding: 1rem;
        border-radius: 0 0 16px 16px;
    }

    .quote_part .quote_form {
        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;
    }

}