/*
Copyright Green Team Consulting 2023
*/

/*#region Variables*/
:root
{
    --green: #0D4426;
  --axolotl: #6C7D4A;
  --grey-green: #444939;
  --light-axolotl: #E3E6DC;
  --almost-white: #F4F8F3;
  --sage-green: #7F9F77;
  --red: #D84738;
}
/*#endregion Variables*/

/*#region Typography*/

body, a{
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: black;
}

.about-section h2{
    font-size: 1.15rem;
    font-weight: bold;
}

.about-section h3{
    font-size: 0.75rem;
}

.about-section h1{
    font-size: 1.35rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-section p,
.about-section a{
    font-size: 1rem;
    text-align: justify;
}

/*#endregion Typography*/

/*#region Small Screen Size (320-750)*/

body{
    background-color: var(--light-axolotl);
}

.hidden{
    position: absolute;
    max-height: 0vh;
    overflow: hidden;
}

.about-text{
    padding: 0rem 0.75rem;
    padding-bottom: 1rem;
}

.carisa-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.portrait{
    background-image: url("../img/sm/portrait-sm.jpg");
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    width: 210px;
    height: 210px;
}

.about-section .divider{
    margin: 2rem 0rem;
    width: 100vw;
    height: 1px;
    background-color: var(--green);
}

.about-section a{
    font-weight: bold;
}

.about-section a:hover{
    text-decoration: underline;
}

.bottom-space,
.about-section ul,
.about-section li{
    margin-bottom: 1rem;
}

/*#endregion Small Screen Size (320-750)*/

/*#region Medium Screen Size (751-1160)*/
@media only screen and (min-width: 751px)
{
    .carisa-div{
        margin-top: 1rem;
    }

    .banner-image{
        background-image: url("../img/md/arial-coast-md.jpg");
        background-position: center;
        background-size: cover;
        min-height: 100px;
        width: 100vw;
        position: relative;
    }

    .portrait{
        width: 130px;
        height: 130px;
    }

    .about-section .divider{
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-section h2{
        font-size: 1.12rem;
    }

    .about-section h3{
        font-size: 0.73rem;
    }

    .about-section h1{
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }

    .about-section p,
    .about-section a{
        font-size: 1rem;
    }

}
/*#endregion Medium Screen Size (751-1160)*/

/*#region Large Screen Size (1161-1920)*/
@media only screen and (min-width: 1161px)
{
    .inner-container{
        max-width: 1161px;
        margin: auto;
    }

    .banner-image{
        background-image: url("../img/lg/arial-coast-lg.jpg");
        min-height: 140px;
    }

    .about-content{
        display: flex;
    }

    .about-section .divider{
        width: 1px;
        height: auto;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .carisa-div{
        margin-left: 1rem;
    }

    .portrait{
        width: 220px;
        height: 220px;
        margin-bottom: 0.3rem;
    }

    .about-section h2{
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }

    .about-section h3{
        font-size: 1rem;
        text-align: center;
    }

    .about-section h1{
        font-size: 1.35rem;
    }

    .about-section p,
    .about-section a{
        font-size: 1.23rem;
    }

}
/*#endregion Large Screen Size (1161-1920)*/

/*#region Extra Large Screen Size (1921-3840+)*/
@media only screen and (min-width: 1921px)
{
    .banner-image{
        background-image: url("../img/xl/arial-coast-xl.jpg");
    }
}
/*#endregion Extra Large Screen Size (1921-3840+)*/