﻿/* Top heading Section */

.contact-top-heading-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    width: 100%;
    height: 500px;
    background: url('../Content/images/Contact/New Dec 2023/Atlas-Aviation-Lubricants-Contact-Us.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 150px;
}



/* Contact Heading Heading */

.contact-heading-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .contact-heading-section p {
        color: black;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        text-align: center;
        font-size: 40px;
    }



/* Contact Details Section */
.contact-details-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.contact-details-image-container {

    width: 100%;
}


.contact-details-image-container img {
    height: 100%;
    width: 100%;
}

/* 13' screen */

@media (max-width: 1440px) and (min-width: 1026px) {
    .contact-details-image-container img {
        height: 450px;
        width: 100%;
    }
}

/* Contact Details Info Side */

.contact-details-info-container {
    width: 100%;
    text-align:center;
}



    .contact-details-info-container .contact-us-heading {
        color: black;
        font-size: 35px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
    }



.contact-details-info-container p {
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    width: 100%;
    line-height: 50px;
}


.contact-details-info-container p a {
    color: #3399cc;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

    .contact-details-info-container p a:hover {
        color: red;
    }


    /* Google maps Section */

.google-maps-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;

}

iframe {
    width: 100%;
    height: 350px;
}

/* Contact Form Section */

.contact-form-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}



/* Contact Form Container */

.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


.contact-form-container form {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-top: 50px;
    margin-bottom: 50px;
}

    .contact-form-container form .contact-form-heading {
        color: black;
        font-size: 35px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        text-align: center;
        margin: 0;
    }

    .contact-form-container form label {
        color: black;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .contact-form-container form input {
        color: black;
        font-family: 'Open Sans', sans-serif;
        height: 30px;
        border-color: #3399cc;
        border-style: solid;
        border-bottom-right-radius: 10px;

    }

    /* Text Area */

    .contact-form-container form textarea {
        border-style: solid;
        border-color: #3399cc;
        border-width: 2px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 500 ;
        color: black;
        height: 100px;
    }

@-moz-document url-prefix() {
    /* CSS rules here will only apply to Firefox */
    .contact-form-container form textarea {
        font-size: 13px;
        font-weight: 400;
    }
}

    /* 13' Screen */

@media (max-width: 1440px) and (min-width: 1026px) {

    .contact-form-container form input {
        height: 25px;
    }

    .contact-form-container form textarea {
        height: 90px;
    }
}
/* Button */
.contact-form-container form button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    background: #3399cc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
}

        .contact-form-container form button:hover {
            color: #3399cc;
            background: white;
            border: #3399cc;
            border-style: solid;
        }

/* Dot next to button */
.dot-for-shop-now {
    height: 15px;
    width: 15px;
    background-color: orange;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}



button:hover .dot-for-shop-now {
    background-color: rgb(0, 226, 0);
}

/* Message Sent Screen */

/* Hiding Message */

.message-sent-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hide {
    display: none;
}

/* Text */

.message-sent-container p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 30px;
    text-align: center;
}

/* Check Icon */

.message-sent-container i {
    font-size: 150px;
    color: #3399cc;
}

/* Contact form image container */

.contact-forn-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}




.invalid-input {
    background-color: red;
    color: white; /* Optionally change text color for better visibility */
}


/* Mobile Portrait */

@media (max-width: 768px) and (orientation: portrait) {


    .contact-top-heading-section {
        height: 100%;
        margin-top: 70px;
        background-position: center;
    }

    .contact-heading-section p {
     
        font-size: 17px;
    }

    .contact-details-section {
        flex-direction: column;
        width: 90%;
    }

    .contact-details-image-container {
        display: none;
    }

    .contact-details-info-container {
        margin-left: 0;
    }

        .contact-details-info-container .contact-us-heading {
            font-size: 20px;

        }

        .contact-details-info-container p {
            font-size: 12px;
            padding-left: 10px;
        }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-container {
        order: 1;
    }

    .dot-for-shop-now {
        display: none;
    }

    .contact-forn-image-container {
        order: 0;
    }

    .contact-form-container form {
        width: 80%;
    }

        .contact-form-container form .contact-form-heading {
            font-size: 20px;
        }

}



/* Mobile Landscape */

@media (max-width: 846px) and (orientation: landscape) {
    .contact-top-heading-section {
        height: 200px;
        margin-top: -80px;
    }

    .contact-heading-section p {
        font-size: 25px;
    }

    .contact-details-section {
        flex-direction: column;
    }

    .contact-details-image-container {
        display: none;
    }

    .contact-details-info-container {
        margin-left: 0;
        width: 90% !important;
    }

        .contact-details-info-container .contact-us-heading {
            font-size: 28px;
        }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-container {
        order: 1;
    }

    .dot-for-shop-now {
        display: none;
    }

    .contact-forn-image-container {
        order: 0;
    }

        .contact-forn-image-container img {
            width: 100%;
        }



        .contact-forn-image-container img {
            height: 200px;
        }
}



/* Tablet Portrait */

    @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
        .contact-top-heading-section {
            height: 120px;
            
            
        }

        .contact-heading-section p {
            font-size: 25px;
        }

        .contact-details-section {
            flex-direction: column;
        }

        .contact-details-image-container {
            display: none;
        }

        .contact-details-info-container {
            margin-left: 0;
            width: 90% !important;
        }

            .contact-details-info-container .contact-us-heading {
                font-size: 28px;
            }

        .contact-form-section {
            flex-direction: column;
        }

        .contact-form-container {
            order: 1;
        }

        .dot-for-shop-now {
            display: none;
        }

        .contact-forn-image-container {
            order: 0;
        }

            .contact-forn-image-container img {
                width: 100%;
            }



    .contact-forn-image-container img {
        height: 200px;
    }



}

    @media (min-width: 834px) and (max-width: 1112px) and (orientation: portrait){
        .contact-top-heading-section {
            height: 300px;
            margin-top: -80px;
        }
    }



/* Tablet Landscape */


@media only screen and (min-width: 1024px) and (max-width: 1112px) and (orientation: landscape) {
    .contact-top-heading-section {
        height: 300px;
        margin-top: -100px;
    }

    .contact-heading-section p {
        font-size: 25px;
    }

    .contact-details-section {
        flex-direction: column;
    }

    .contact-details-image-container {
        display: none;
    }

    .contact-details-info-container {
        margin-left: 0;
        width: 90% !important;
    }

        .contact-details-info-container .contact-us-heading {
            font-size: 28px;
        }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-container {
        order: 1;
    }

    .dot-for-shop-now {
        display: none;
    }

    .contact-forn-image-container {
        order: 0;
    }

        .contact-forn-image-container img {
            width: 100%;
        }



        .contact-forn-image-container img {
            height: 200px;
        }


}

/* Bigger Tablet Portraight */

@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .contact-top-heading-section {
        height: 300px;
    }

    .contact-heading-section p {
        font-size: 25px;
    }

    .contact-details-section {
        flex-direction: column;
    }

    .contact-details-image-container {
        display: none;
    }

    .contact-details-info-container {
        margin-left: 0;
        width: 90% !important;
    }

        .contact-details-info-container .contact-us-heading {
            font-size: 28px;
        }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-container {
        order: 1;
    }

    .dot-for-shop-now {
        display: none;
    }

    .contact-forn-image-container {
        order: 0;
    }

        .contact-forn-image-container img {
            width: 100%;
        }



        .contact-forn-image-container img {
            height: 200px;
        }

}

/* Bigger Tablet Landscape */

@media only screen and (min-width: 1112px) and (max-width: 1366px) and (orientation: landscape) {
    .contact-top-heading-section {
        height: 300px;
        margin-top: -100px;
    }

    .contact-heading-section p {
        font-size: 25px;
    }

    .contact-details-section {
        flex-direction: column;
    }

    .contact-details-image-container {
        display: none;
    }

    .contact-details-info-container {
        margin-left: 0;
        width: 90% !important;
    }

        .contact-details-info-container .contact-us-heading {
            font-size: 28px;
        }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-container {
        order: 1;
    }

    .dot-for-shop-now {
        display: none;
    }

    .contact-forn-image-container {
        order: 0;
    }

        .contact-forn-image-container img {
            width: 100%;
        }



        .contact-forn-image-container img {
            height: 200px;
        }


}