body{
    margin:0;
    padding:0;
    
}
.topOfPageLine{
    height: 17px;
    width: 100%;
    background-color: #389796;
    position: absolute;
}
.logo{
    height: 160px;
}
.topBar{
    display: flex;
    justify-content: space-between;
    height: 140px;
    top:17px;
    width: 100%;
}
ul{
    list-style: none;
    margin-right: 6em;
    margin-top: 4.5em;
}
.topBarLinks{
    
    gap: 100px;
    text-decoration: none;
    display: flex;
}
.mainSectionWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainSection{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 673px;
    width: 1440px;
    background-image: url("./img/HeroBG.png");
    color: white;
    text-align: center;
}
.bigText{
    font-size: 3em;
}
.tealText{
    color:#389796;
}
.bigBold{
    font-weight: 800;
    font-size: 2em;
}
.paddingTop{
    padding-top: 0.75em;
}
.servicesSection{
    height: 620px;
    width: 100%;
    display: flex;
    padding-top: 1em;
}
.servicesSectionLeftSide{
    width: 50%;
    padding-left: 4em;

}
.servicesSectionRightSide{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 520px;
    width: 40%;
    padding: 0;
    margin:0;
  }
.first .second .third img{
    height:100%;
    width:100%;
    object-fit: cover;
    border: 1px red solid;
    align-self: end;
}
  .first {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
  }
  
  .second {
    grid-column: 2 / 2;
    grid-row: 1 / 2;
    max-height: 265px;
    padding-bottom: 6px;
  }
  
  .third {
    grid-column: 2 / 2;
    grid-row: 2 / 2;
    max-height: 265px;
  }
.testimonialWrapper{
    display: flex;
    justify-content: center;
}
.testimonialSection{
    height: 557px;
    width: 1440px;
    background-image: url("./img/Rectangle13.png");
    text-align: center;
    justify-content: center;
    color: white;
    font-size: 2em;
}
.testimonialImgs{
    display: inline-block;
}
.testimonialImgs img{
    padding: 15px;
}
button{
    height: 53px;
    width: 315px;
    border: 3px solid #FFFFFF;
    border-radius: 18px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: unset;
    padding-top: 15px;
    padding-bottom: 15px;
}


button:hover{
background: #389796;
border-color: #389796;
border-radius: 18px;
width: 315px;
height: 53px;
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 17px;
line-height: 21px;
text-align: center;
letter-spacing: 0.16em;
text-transform: uppercase;

color: #FFFFFF;
}
.gallerySection{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 1em;
}
.galleryImages{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 1em;
    margin-top: 1em;
    grid-auto-rows: 269px;
}

@media (max-width:480px){
    .topBar{
        width: 90vw;
    }
    .logo{
        width: 200px;
        height: 110px;
        align-self: center;
    }
    .topBarLinks{
        display: none;
    }
    .hamburgerMenu {
        width: 35px; 
        height: 35px;
        background: linear-gradient(#202020 50%, #55555500 0) 0 0/100% 40%;
        align-self: center;
      }
    .topOfPageLine{
        display: none;
        
    }
    .mainSection{
        background-image: none;
        background-color: #389796;
        width: 100%;
    }
    .servicesSection{
        height: auto;
    }
    .servicesSectionRightSide{
        display: none;
    }
    .testimonialSection{
        height: auto;
    }
    .testimonialImgs{
        display: flex;
        flex-direction: column;
        padding-left: 9vw;
    }
    .testimonialImgs img{
        max-width: 75vw;
    }
    .gallerySection{
        height: auto;
    }
    .galleryImages{
        display: flex;
        flex-direction: column;
    }
    .galleryImages img{
        padding-bottom: 10px;
    }
}