h3,h2{
    color: var(--PrimaryAccent);
}

#contact-details{
    padding-inline: 64px;
    padding-bottom: 32px;
}
@media (max-width:540px){
    .Contact, #contact-details {
    padding-inline: 0px !important;
    margin-inline:5% !important;
    }
}
.Contact h2{
    color: var(--PrimaryAccent);
    font-size: 60px;
    padding-bottom: 16px;
}
@media (max-width:415px){
.Contact h2{
    color: var(--PrimaryAccent);
    font-size: 48px;
    padding-bottom: 16px;
}
}
@media (max-width:350px){
.Contact h2{
    font-size: 36px;
}

}

.Contact i{
    font-size: 36px;
    color: var(--PrimaryAccent);
}
.leftContainer{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.form-label{
    color: var(--white);
}
.contactFormSection h3{
    padding-top: 32px;
    color: var(--white);

}
.link-success{
    color: var(--PrimaryAccent) !important;
    text-decoration: underline var(--PrimaryAccent) !important;
    transition: 0.4s ease-in-out;
}
.link-success:hover{
    color: var(--SecondaryAccent) !important;
    text-decoration: underline var(--SecondaryAccent) !important;

}



.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 */
}