#contact {
    color: var(--active1);
}

section {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #f4f4f4;
}

.contactUs_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dedede;
}

.contactUs_wrapper h1 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.contactUs_sections {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contactUs_sections h2 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-text-color);
    position: relative;
    width: fit-content;
}

.contactUs_sections h3 {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 10px;
}

.contactUs_sections h2::before {
    content: "";
    background-color: var(--active1);
    min-height: 1px;
    margin-right: 6px;
    position: absolute;
    bottom: 1px;
    width: 50%;
}

.contactUs_sections p {
    font-size: 14px;
    margin-left: 10px;
    color: #7f7f7f;
}

.contactUs_sections ul {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contactUs_sections ul li {
    font-size: 14px;
    color: #7f7f7f;
    list-style: none;
    position: relative;
}

.contactUs_sections ul li::first-letter {
    text-transform: uppercase;
}

.contactUs_sections ul li::before {
    content: "";
    background-color: var(--active1);
    min-height: 5px;
    width: 5px;
    margin-right: 10px;
    position: absolute;
    left: -10px;
    top: 7.1px;
    border-radius: 50%;
}

/* contact form on index page */

#contact_form textarea {
    font-size: 14px;
    color: var(--primary-text-color);
    outline: none;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

#contact_form textarea:focus {
    border: 1px solid var(--active);
}

#contact_form textarea {
    min-height: 100px;
    max-height: 100px;
    min-width: 100%;
    max-width: 100%;
}

.socialMediaLinks {
    display: inherit;
    gap: 10px;
}

.socialMediaLinks a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    text-transform: capitalize;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .2s ease;
}

.socialMediaLinks a:hover {
    background: #f7f7f7;
    border-color: #fff;
}

.socialMediaLinks a:nth-child(1) {
    color: rgb(81, 161, 81);
}

.socialMediaLinks a:nth-child(2) {
    color: rgb(104, 104, 255);
}

.socialMediaLinks a img {
   width: 22px;
}

@media (min-width: 680px) {
    section {
        padding: 20px;
        align-items: center;
    }
    .contactUs_wrapper {
        width: 80%;
    }

    .contactUs_wrapper h1 {
        font-size: 19px;
    }

    .contactUs_sections h2 {
        font-size: 17px;
    }

    .contactUs_sections p {
        font-size: 15px;
    }

    #contact_form {
        width: 80%;
        align-self: center;
    }

    .contactUs_sections ul li {
        font-size: 15px;
    }

    .socialMediaLinks a img {
        width: 24px;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 30px;
    }
    .contactUs_wrapper {
        width: 70%;
    }

    .contactUs_wrapper h1 {
        font-size: 20px;
    }

    .contactUs_sections h2 {
        font-size: 18px;
    }

    .contactUs_sections p {
        font-size: 16px;
    }

    .contactUs_sections ul li {
        font-size: 16px;
    }

    #contact_form {
        width: 60%;
    }
}