/* Font */
@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');

/*  */
* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-color);
}

:root {
    --light-blue: #0179ff;
    --sky-blue: #02adfe;
    --gray: #8d8d8c;
    --light-gray: #bababa;
    --bg-color: #f1f2f5;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Start contact-us */
.contact-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgb(0, 0, 0, 0.1);
    max-width: 900px;
    gap: 2.5rem;
}

.contact-us .content h2 {
    color: var(--light-blue);
    font-weight: 600;
    font-size: 28px;
}

.contact-us .content p {
    color: var(--gray);
    font-size: 12px;
    margin: 10px 0;
}

.contact-us .content input,
.contact-us .content textarea {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 10px;
    font-size: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.contact-us .content .btn-sumbit {
    width: 100%;
    background-color: var(--light-blue);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.contact-us .content .Social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-us .content .Social a {
    color: var(--sky-blue);
    font-size: 22px;
    margin: 0 12px;
}

/* End contact-us */
/* Start map */
.contact-us .map iframe {
    width: 100%;
    height: 100%;

}

/* Responsive  */
/* Mobile */
@media screen and (max-width:639px) {
    .contact-us {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 70%;
        gap: 1.5rem;
    }

}



/* ============================= */

/* Sm */
@media screen and (min-width:640px) {
    .contact-us {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 80%;
        gap: 1.5rem;
    }
}

/* ================================== */

/* md */
@media screen and (min-width:768px) {
     .contact-us {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* ================================= */

/* lg */
@media screen and (min-width:1024px) {}

/* ================================= */

/* xl */
@media screen and (min-width:1208px) {}

/* ================================= */

/* xxl */
@media screen and (min-width:1536px) {}