.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 */
}

.topText, .services{
    padding-inline: 64px;
    padding-block: 16px;
}
@media (max-width:540px){
    .topText, .services {
        padding-inline: 0px !important;
        margin-inline:5% !important;
    }
}
.topText p{
   padding-inline: 20%;
}
.topText h1{
    color: var(--PrimaryAccent);
    font-size: 60px;
}

@media (max-width:800px){
    .topText p{
    padding-inline: 10%;
    }
}
@media (max-width:415px){
    .topText h1{
        color: var(--PrimaryAccent);
        font-size: 48px;
    }

    .topText p{
        padding-inline: 0;
    }

}
@media (max-width:350px){
    .topText h1{
        font-size: 36px;
    }
}




.ImageS img {
    max-height: 500px;
    border-radius: 9px;
    transition: 0.4s;
}
.ImageS img:hover {
    transform: scale(1.05);
}

.ImageS {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.textS {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    padding: 1rem;
}

@media (min-width: 1050px) {
    .ImageS img {
        max-width: 80%;
    }
}
@media (max-width: 1050px) {
    
    .ImageS img {
        max-width: 80%;
    }
}
@media (max-width: 768px) {
    .textS {
        text-align: center;
        align-items: center; 
    }
    .ImageS img {
        max-width: 80%;
    }
    .textS .cust-btn{
        margin-bottom: 64px;
    }
}

.services h2{
    font-size:70px;
    color: var(--PrimaryAccent);
}
.services h3{
    font-size:36px;
    color: var(--PrimaryAccent);
}
.services p{
    font-size:16px;
    color: var(--Black);
}