:root {
    --primary: #2a2a2a;
    --secondary: #aaa;
    --third: #f7f7f7;
    --four: #eee;
    --white: #fff;
    --transition: 0.3s;
    --padding: 80px;
    --blue: #007bff
}

html {
    font-family: "Poppins", sans-serif;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Start contact-page section */
.contact-page {
    padding-top: var(--padding);
}

.contact-page .container-fluid {
    background-image: url("../images/about-us-page-heading.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-page .row .content {
    padding: 180px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
}

.contact-page .row h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-page .row p {
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
}

/* End contact-page section */
/* Start contact us section */
.contact-us {
    background-color: var(--white);
    padding-top: var(--padding);
    padding-bottom: var(--padding);
    border-bottom: 2px dashed var(--secondary);
}

.contact-us .left {
    width: 100%;
    height: 100%;
}


.contact-us .right .heading h2 {
    font-weight: bold;
    font-size: 42px;
    color: var(--primary);
}

.contact-us .right .heading p {
    color: var(--secondary);
    font-style: italic;
}

.contact-us .right form {
    width: 100%;
}

.contact-us .right .inputs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-us .right input {
    border: 1px solid #2a2a2ac7;
    padding: 10px 15px;
    color: #aaa;
    font-weight: 500;
    width: calc(50% - 10px);

}

.contact-us .right textarea {
    width: 100%;
    color: #aaa;
    font-weight: 500;
    height: 150px;
    padding: 15px;

}

.contact-us .right .inputs input::placeholder,
.contact-us .right textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.contact-us .right button {
    border: 1px solid var(--primary);
    padding: 10px;
    color: var(--white);
    background-color: var(--primary);
    transition: all var(--transition);
    -webkit-transition: all var(--transition);
    -moz-transition: all var(--transition);
    -ms-transition: all var(--transition);
    -o-transition: all var(--transition);
}

.contact-us .right button:hover {
    background-color: white;
    color: var(--primary);
}

@media (max-width:991px) {
    .contact-us .right form {
        flex-direction: column;
    }

    .contact-us .right .inputs {
        flex-direction: column;
    }

    .contact-us .right {
        margin-top: 40px;
    }

    .contact-us .right input {
        width: 100%;
    }

    .contact-us .right button {
        width: 100%;
    }

}

/* End contact us section */