#about-section {
    background-color: var(--secondary-color);
    background-image: url(../assets/bg/Concepts_background_orange.png);
    background-repeat: repeat;
    padding: 0 10%;
}

#about {
    display: flex;
    height: fit-content;
    margin: 0px;
    flex-direction: row;   
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#about-img {
    width: 360px;
    height: 360px;
    max-width: 400px;
    max-height: 400px;
    display: absolute;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #88c9dd;
}

#about img {
    display: relative;
    width: 400px;
    max-width: 440px;
    margin-left: 20px;
    /*box-shadow: 0 4px 24px var(--primary-color);*/
}

#about-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-end;
    justify-content: center;
}

#about-content h1, p {
    color: var(--primary-color);
    pointer-events: none;
    
}

#about-content p {
    font-size: 18px;
    margin-top: 20px;
    text-align: justify;
}

#about-button {
    width: 200px;
    height: 50px;
    margin-top: 20px;
    background-color: var(--terciary-color);
    color: var(--light-gray-color);
    border: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600px;
    font-style: normal;  
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

#about-button:hover {
    background-color: var(--accent-color);
    color: var(--terciary-color);
}

@media (max-width: 900px) {

}
@media (max-width: 600px) {
  
}