.contact-listing {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.donate-wrapper {
    padding: 90px 0 0;
    /* background: var(--header-bg); */
}
.contact-left-title h3 {
    margin-bottom: 30px;
    color: var(--title-color);
}


.contact-list li a {
    font-size: 22px;
    line-height: 26px;
    color: #212121;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-list li a .number-icon img {
    /* background: var(--btn-color);
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -80px;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.25); */
    width: 40px;
    /* height: 40px; */
}



.contact-info-box span {
    font-size: 24px;
    line-height: 28px;
    color: var(--title-color);
    margin: 30px 0;
    display: block;
}

.contact-form-box {
    margin-top: 60px;
}

.input-box {
    position: relative;
}

.input-box input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #79747E;
    border-radius: 4px;
}

.input-box label {
    font-size: 14px;
    color: #1C1B1F;
    background-color: #fff;
    font-family: 'roboto-bold';
    position: absolute;
    top: -8px;
    left: 10px;
    padding: 0 5px;

}

.input-box label span {
    color: red;
}

.comment-box {
    margin-top: 30px;
}

.comment-box textarea {

    width: 100%;
    padding: 12px 14px;
    border: 1px solid #79747E;
    border-radius: 4px;

}

.submit-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: right;
}

.submit-btn button, .wpcf7-submit {
    border: 0;
    padding: 15px 25px;
    border-radius: 5px;
    background: var(--btn-color);
    color: var(--text-color);
    font-size: 20px;
    letter-spacing: 0.1px;
    margin-top: 40px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    text-align: right;
    transition: 0.6s;
}

.submit-btn button:hover, .wpcf7-submit:hover {
    background: var(--background);
    color: var(--text-color);
}

.subscribe-checkbox {
    display: flex;
    padding: 20px 0;
    align-items: center;
}

.subscribe-checkbox .wpcf7-list-item{
    margin: 0;
}

/* .subscribe-checkbox label {
    font-size: 14px;
    color: var(--title-color);
    letter-spacing: 0.15px;
    cursor: pointer;
    margin-top: 4px;
} */

.subscribe-checkbox label span.wpcf7-list-item-label{
    font-size: 14px;
    color: var(--title-color);
    letter-spacing: 0.15px;
    cursor: pointer;
    margin-top: 4px;
}

.subscribe-checkbox input[type=checkbox] {
    position: relative;
    border: 2px solid #000;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    /* opacity: .5; */
}

.subscribe-checkbox input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.subscribe-checkbox input[type=checkbox]:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    opacity: 1;
}

section.specific-member-wrapper {
    padding-bottom: 150px;
}


.specific-member a {
    padding: 30px;
    background: #F8F8F8;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.6s;
}

.specific-member a:hover {
    background: var(--background);
}

.specific-member a:hover h5 {
    color: var(--text-color);
}

.specific-member a:hover img {
    filter: brightness(0) invert(1);
}

.specific-member a img {
    width: 40px;
    height: 40px;
}

.specific-listing {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.specific-title h4 {
    font-family: 'roboto-bold';
    font-size: 35px;
    line-height: 40px;
}
.specific-member h5 {
    color: var(--title-color);
    font-size: 22px;
    line-height: 28px;
}

.contact-dets-box {
    display: flex;
    gap: 10px;
}

.contact-dets-box .contact-num a {
    display: block;
}

.contact-dets-box .contact-num span {
    margin-bottom: 10px;
    color: var(--title-color);
}

/* Contact Form 7 */
.wpcf7-form-control-wrap{
    position: unset;
}

@media (max-width: 1655px){
    .specific-member a{
        gap: 10px;
        padding: 20px;
    }
    .specific-member h5 {
        font-size: 20px;
        line-height: 26px;
    }
    .specific-listing{
        gap: 10px;
    }
}

@media (max-width: 1365px) {


    .contact-list li a {
        font-size: 22px;
        line-height: 28px;
        gap: 10px;
    }

    .contact-list {
        gap: 20px;
    }
}

@media (max-width: 1199px) {


    .contact-list li a {
        font-size: 18px;
        line-height: 26px;
        gap: 10px;
    }

    .contact-listing {
        padding: 20px;
    }

    .specific-listing {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .specific-member a{
        padding: 20px;
    }
    .specific-member a h5{
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .contact-info-box span {
        font-size: 24px;
        line-height: 28px;
        margin: 20px 0;
    }

    .contact-list {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
    }

    .contact-list li a {
        font-size: 20px;
        line-height: 26px;
    }

    .contact-left-title h3 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .input-box input {
        margin-bottom: 0;
    }

    .contact-list li a .number-icon img {
        width: 30px;
    }

    .contact-dets-box .contact-num span {
        margin-bottom: 2px;
    }

    section.specific-member-wrapper {
        padding-bottom: 0;
    }

    .specific-listing {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .specific-member a h5 {
        font-size: 16px;
        line-height: 22px;
    }
    .specific-member a{
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .contact-info-box span {
        font-size: 18px;
        margin: 10px 0;
        margin-top: 15px;
    }

    .submit-btn {
        text-align: center;
    }



    .contact-list li:last-child {
        margin: 0;
    }

    .contact-list li a {
        font-size: 18px;
        line-height: 20px;
    }

    .contact-left-title h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .contact-form-box {
        margin-top: 30px;
    }

    .comment-box {
        margin-top: 0;
    }

    .submit-btn button, .submit-btn .wpcf7-submit {
        padding: 12px 20px;
        font-size: 18px;
    }

    .subscribe-checkbox {
        padding: 10px 0;
    }

    .contact-list li a .number-icon img {
        width: 30px;
    }

    .specific-listing {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        padding-top: 20px;
    }

    .specific-member a h5 {
        font-size: 16px;
        line-height: 24px;
    }

    .specific-member a {
        padding: 20px;
        gap: 15px;
    }

    .input-box input {
        margin-bottom: 20px;
    }
    .specific-title h4{
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .specific-listing {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .specific-title h4{
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-left-title h3 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .contact-list li a {
        font-size: 16px;
        line-height: 20px;
    }

    .contact-info-box span {
        font-size: 16px;
        margin: 0px 0;
        margin-top: 15px;
    }

    .submit-btn button, .submit-btn .wpcf7-submit{
        font-size: 16px;
    }
    .specific-title h4{
        font-size: 20px;
    }

}

@media (max-width: 420px) {
    .subscribe-checkbox label span.wpcf7-list-item-label{
        font-size: 12px;
    }

    .subscribe-checkbox {
        gap: 0;
    }

    .submit-btn button , .submit-btn .wpcf7-submit{
        font-size: 14px;
    }

    .contact-info-box span {
        font-size: 14px;
    }

    .contact-listing {
        margin-bottom: 20px;
    }
    .specific-title h4{
        font-size: 18px;
    }
}