
.contacts-container {
    width: 100%;
    height: max-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 2rem 2rem;
    background-color: var(--clr-fg);
}

.main-container {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about-app-container div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.about-app-container div h3 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    line-height: 0;
    margin: 0;
}

.about-app-container div img {
    width: auto;
    margin: 0;
    height: 2.2rem;
}

.about-app-container .socials-container {
    margin: 1rem 0;
    gap: 1.5rem;
}

.about-app-container .socials-container img {
    width: auto;
    height: 1.5rem;
}

.about-app-container p {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    line-height: 2.2rem;
}

.contacts-container .navigation-links-container {
    display: flex;
    flex-direction: row;
    gap: 6rem;
}

.sections-container h4,
.pages-container h4,
.sections-container a p,
.pages-container a p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    margin: 1.5rem 0;
    color: black;
}

.sections-container h4,
.pages-container h4 {
    font-weight: 600;
}

.sections-container a p,
.pages-container a p {
    width: max-content;
    text-decoration: underline;
}

.contacts-container .footer-container {
    width: 90%;
    display: flex;
    margin-top: 4rem;
    padding: 1.5rem 5rem 0 5rem;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    border-top: 0.1rem solid black;
    font-size: 1.2rem;
}

.footer-container div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-container div img {
    width: auto;
    height: 1.5rem;
}

.sections-container a p:hover,
.pages-container a p:hover {
    background-color: var(--clr-bg);
}