/* contact section start */


#contact {
    background-size: 100%;
    padding: 90px 0;
    position: relative;
}

#contact.availability-active {
    padding-bottom: 450px;
    transition: padding-bottom 0.1s ease-in-out;
}

#contact h3 {
    text-align: center;
    font-size: 30px;
}

.dark-mode #contact h3 {
    color: rgb(var(--white2));
}

#contact .sub-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    color: rgb(var(--gray-950));
    line-height: 1.3;
    padding: 15px 0 15px 0;
}

.dark-mode #contact .sub-title {
    color: rgb(var(--white2));
}

#contact .promise {
    text-align: center;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.dark-mode #contact .promise {
    color: rgb(var(--white2));
}
/* contact section end */


/* footer section start */

#footer {
    background: rgb(var(--dark));
    padding: 65px 0;
}

#footer .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

#footer .footer-wrapper h4 {
    color: white;
    font-size: 1.5rem;
    line-height: 2rem;
    padding-bottom: 1rem;
}

#footer .footer-wrapper .footer-links li a {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(var(--gray-300));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding-top: 0.25rem;
    display: inline-block;
}

#footer .footer-wrapper .footer-links li a:hover {
    color: rgb(var(--gray-100));
}

#footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

#footer .line {
    height: 1px;
    width: 100%;
    background-color: rgb(var(--gray-500));
}

#footer .footer-bottom .bottom-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

#footer .footer-bottom .social-link {
    background-color: rgb(var(--gray-500));
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1.75rem;
    border-radius: 9999px;
    transition: .3s;
}

#footer .footer-bottom .social-link.yelp:hover {
    background-color: #c83218;
}

#footer .footer-bottom .social-link.mastodon:hover {
    background-color: #6364FF;
}

#footer .footer-bottom .social-link.facebook:hover {
    background-color: #3e5b98;
}

#footer .footer-bottom .social-link.twitter:hover {
    background-color: #4da7de;
}

#footer .footer-bottom .social-link path {
    fill: rgb(var(--gray-950));
    transition-property: fill;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

#footer .footer-bottom .social-link:hover path {
    fill: white;
}

/* footer section end */


@media (max-width: 639px) {
    #contact .contact-bg img {
        max-width: 50%;
    }
}


/*sm*/
@media (min-width: 640px) {

    #contact {
        padding: 150px 0

    }

    #contact h3 {
        font-size: 50px;
    }

    #contact .sub-title {
        font-size: 24px;
        padding: 15px 0 30px 0;
    }

    #contact .address-input input {
        font-size: 24px;
    }

    /* #contact button {
        font-size: 22px;
        padding: 15px 20px;
        border: none;
    } */

    #contact .promise {
        font-weight: 400;
        font-size: 20px;
    }

    /* #contact button:hover {
        background: rgb(var(--base1));
    } */

    #footer .footer-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

/*md*/
@media (min-width: 768px) {

    #contact {
        padding: 150px 0;
    }

}

/*lg*/
@media (min-width: 1024px) {

    #contact {
        padding: 120px 0;
    }

}

/*xl*/
@media (min-width: 1280px) {

    #contact {
        padding: 200px 0 170px 0;
    }
}
