<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    File: user/style/contact-us-style.css
    Author: Yash Balotiya
    Description: This file contains the styling part of contact us page
    Created on: 13/10/2024
    Last Modified: 14/04/2025
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    max-width: 100vw;
    height: 100vh;
    background-color: white;
}

/* main */
.main-div {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.main-sec {
    width: 900px;
    display: flex;
    justify-content: space-between;
}

.contact-us-sec {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-sec p {
    margin: 20px 0;
}

.contact-us-sec h5 {
    color: #0092dd;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

form div {
    display: flex;
    flex-direction: column;
}

#subjectTxt {
    border-radius: 20px;
    border: 1px solid #acacac;
    margin: 8px 0 20px 0;
    padding: 8px 20px;
}

#messageTxt {
    border: 1px solid #acacac;
    border-radius: 30px;
    height: 200px;
    padding: 10px 20px;
    margin: 8px 0 20px 0;
}

#sendEmailBtn {
    background-color: #65c1f0;
    width: 150px;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    text-align: center;
    border: none;
}

#sendEmailBtn:hover {
    background-color: #0092dd;
    color: white;
}

/* right side */
.more-info-sec {
    width: 40%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data {
    display: flex;
    align-items: center;
}

.more-info-sec div i {
    font-size: 25px;
    margin-right: 20px;
}

.more-info-sec div a {
    text-decoration: none;
    color: black;
}

.multi-data-div {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media(max-width: 1000px) {
    .main-sec {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 50px;
    }

    .main-sec section {
        width: 90%;
    }
}

@media(max-width: 450px) {
    .data a {
        font-size: 14px;
    }
}</pre></body></html>