/* SECTIONS  */

.all-sections section {
    padding-top: 20vh;
    height: 96vh;
    box-sizing: border-box;
    min-height: fit-content;
}

.section-container {
    display: flex;
}

.section_pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.section_text {
    align-self: center;
    text-align: center;
}

.section_text p {
    font-weight: 600;
}

.section_text_p1 {
    text-align: center;
}

.section_text_p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 3rem;
    text-align: center;
}

.icon_all {
    cursor: pointer;
    height: 2rem;
}


/* SECTIONS ABOUT */

#about {
    position: relative;
}

.about-containers {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.about-details-container {
    justify-content: center;
    flex-direction: column;
}

.about-containers,
.about-details-container {
    display: flex;
}

.about-pic {
    border-radius: 2rem;
}

.arrow {
    position: absolute;
    right: -5rem;
    bottom: 2.5rem;
}

.details-container {
    padding: 1.5rem;
    flex: 1;
    background: var(--color-white);
    border-radius: 2rem;
    border: var(--first-shadow-color) 0.1rem solid;
    border-color: var(--first-color-hover);
    text-align: center;
}

.section-container {
    gap: 4rem;
    height: 80%;
}

.section_pic-container {
    height: 400px;
    width: 400px;
    margin: auto 0;
}

/* SECTIONS SKILLS */

#skills {
    position: relative;
}

.experience-sub-title {
    color: var(--text-color-third);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.experience-details-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.article-container {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;
}

article {
    display: flex;
    width: 10rem;
    gap: 0.5rem;
}

article .icon_all {
    cursor: default;
}

/* SECTIONS PROJECTS */
#projects {
    position: relative;
}

.color-container {
    border-color: var(--color-black);
    background-color: var(--color-white);
}

.project-img {
    border-radius: 2rem;
    width: 90%;
    height: 90%;
}

.project-title {
    margin: 1rem;
    color: var(--color-black);
}

.project-btn {
    color: var(--color-black);
    border: 0.1rem solid;
    border-color: var(--color-black) !important;
}

/* SECTIONS CONTACT */

#contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
    padding-top: 0vh;
}

.contact-info-upper-container {
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: var(--color-black) 0.1rem solid;
    border-color: var(--color-black);
    background: var(--color-white);
    margin: 2rem auto;
    padding: 0.5rem;
}

.contact-info-upper-container a {
    color: var(--color-black);
    text-decoration: none;
    text-decoration-color: var(--color-white);
    transition: all 300ms ease;
}

.contact-info-upper-container a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}

.contact-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

.contact-info-container p {
    font-size: larger;
}

.contact-icon {
    cursor: default;
}

.email-icon {
    height: 1.7rem;
}

/* FOOTER */

.main-footer .nav,
.main-footer .nav-links {
    display: flex;
}

.main-footer .nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.main-footer .nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

.main-footer a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
    transition: all 300ms ease;
}

.main-footer a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}

footer {
    height: 26vh;
    margin: 0 1rem;
}

footer p {
    text-align: center;
}

#a-clip{
    cursor: pointer;
    transition: all 300ms ease;
}