@import url(styles.css);

.contact-types {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact {
    display: flex;
    flex-direction: row;
    gap: var(--spacing4);
}
.icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .h3 { margin-bottom: var(--spacing1); }
}
.link {
    text-decoration: none;
    color: var(--text-muted);
}
form {
    background-color: var(--bg);
    border-radius: var(--spacing4);
    display: flex;
    flex-direction: column;
    gap: var(--spacing3);
    padding: var(--spacing4);
    width: 100%;
}
label {
    display: flex;
    flex-direction: column;
}
.input {
    border: none;
    border-radius: var(--spacing2);
    font-family: inherit;
    padding: var(--spacing4);
    box-shadow: var(--shadow-s);
}
textarea {
    min-height: 7.5rem;
    padding-top: 1rem;

}
/* Footer */
#footer {
    background-color: var(--color-primary);
    color: var(--dm-text);
    font-family: var(--font-primary);
    padding: var(--section-space) var(--gutter);
}
#footer .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing7);
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing7);
} 
#footer .p {
    text-align: left;
}
#footer .btn {
    background-color: var(--color-accent);
    color: var(--color-primary);
}
.footer-link-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing1);
}
.footer-header {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: var(--h5);
}
.footer-ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: var(--spacing3);
}
.footer-ul-1 {
    display: flex;
    list-style: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    column-gap: var(--spacing3);
    row-gap: var(--spacing3);
}
.footer-li {
    display: flex;
}
.footer-li-1 {
    width: 48%;
}
.footer-link {
    text-decoration: none;
    color: var(--dm-text);
}
.footer-li .link {
    display: inline-flex;
    align-items: center;
    line-height: var(--line-height5);
    color: var(--dm-text);
    gap: var(--spacing3);
    text-decoration: none;
}
.footer-li .link .icon {
    display: block;
    height: auto;
    width: 1.25rem;
    filter: invert(95%);
}
.bottom-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing3);
    font-size: var(--small);
}
.credit {
    text-align: center;
}
.credit-link {}
.bottom-link {
    text-align: center;
    text-decoration: none;
    color: var(--dm-text);
}

/* Media Queries */
/* xs: smartphones */
@media (width <= 480px) {}
/* sm: tablet */
@media (480px <= width <= 768px) {
    #services .container {
        padding: 0 2rem;
    }
    footer .container {
        padding: 0 2rem;
    }
}
/* md: tablet/small desktop */
@media (768px <= width < 1024px) {
    #services .container {
        padding: 0 3rem;
    }
    footer .container {
        padding: 0 3rem;
    }
}
/* lg: standard desktop */
@media (1024px <= width <= 1280px) {}
/* xl: wide desktop */
@media (1280px <= width <= 1536px) {}
/* xl: wide desktop */
@media (width >= 1536px) {}