.topSpacer{
    padding-top: 77px
}
.parallax {
  width: 100%;
  height: 50px; /* adjust height */
  background-image: url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 👈 makes the parallax effect */
}

.aboutContainer{
    padding-inline: 64px;
    padding-block: 16px;
}
@media (max-width:540px){
    .aboutContainer {
    padding-inline: 0px !important;
    margin-inline:5% !important;
    }
}

.aboutContainer{
    margin-top: 64px;
}
.imageSide{
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width:767px){
    .imageSide{
        display: flex;
        justify-content: start;
        align-items: center;
    }
    .aboutContainer .imageSide img{
        margin-bottom: 16px;
    }
}

.aboutContainer .textSide h1{
    color: var(--PrimaryAccent);
    font-size: 48px;
}
.aboutContainer .imageSide img{
    height: 270px;
    width: 270px;
    border-radius: 100%;
}
@media (max-width:990px){
    .aboutContainer .imageSide img{
        height: 180px;
        width: 180px;
        border-radius: 100%;
    }
}