*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color: #7FA1C3;
}
a:hover{
  color: #7FA1C3;
  cursor: pointer;
}
p, a, i{
  font-size: 1rem;
  line-height: normal;
}
h1, h2, h3{
  line-height: 1.2;
  font-family: 'Bricolage Grotesque', sans-serif;
}
ul{
  list-style: none;
}
hr{
  border: 2px solid #7FA1C3;
  margin: .5rem;
}
button{
  font-family: 'Changa', sans-serif;
  background-color: #7FA1C3;
  color: #333333;
  border: 2px solid #7FA1C3;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.1);
  outline: none;
  border-radius: .7rem;
  padding: .45rem;
  margin: .5rem 0;
  font-size: .9rem;
  cursor: pointer;
}
button:hover{
  color: #F5EDED;
  background-color: #20806B;
  border-color: #20806B;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.75);
}
button:focus{
  transform: scale(0.95);
}
body{
  font-family: 'Changa', sans-serif;
  line-height: normal;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333333;
  background-color: #F5EDED;
  font-size: .9rem;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.63rem 1.25rem;
  background-color: #E1E4E6;
  color: #F5EDED;
  position: relative;
  z-index: 10;
  transition: background-color 0.01s ease-in;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80px;
  margin: .5rem 0 0 0;
}
.logo img{
  width: 80%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Hamburger Menu Styles */
.hamburger{
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  position: relative;
}
.hamburger div{
  width: 100%;
  height: 3px;
  background-color: #7FA1C3;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}
.hamburger.active div:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active div:nth-child(2){
  opacity: 0;
}
.hamburger.active div:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger.active div{
  background-color: #20806B;
}
/* Navigation Styles */
.nav-links{
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #7FA1C3;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  text-align: center;
}
.nav-links li{
  margin: 1rem 0;
}
.nav-links a{
  color: #333333;
  text-decoration: none;
  font-size: 1.3rem;
}
.nav-links a:hover{
  text-decoration: underline;
  text-decoration-color: #7FA1C3;
}
.nav-links.open{
  display: flex;
}
.social-links a{
  margin: 0 1rem;
}
.social-links i{
  color: #F5EDED;
  padding: .2rem;
  font-size: 1.25rem;
  border-radius: .4rem;
}
.social-links i:hover{
  color: #333333;
  background-color: #7FA1C3;
}
.dropdown{
  display: none;
}
/* Scroll Up Styles */
#scrollTopBtn{
  display: none;
  position: fixed;
  bottom: 60px;
  right: 25px;
  z-index: 99;
  font-size: 1.35rem;
  color: #7FA1C3;
  background-color: #E1E4E6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 7rem;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
  line-height: 24px;
}
#scrollTopBtn:hover{
  background-color: #20806B;
  border-color: #20806B;
  color: #E1E4E6;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.abouthero{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  gap: 10px;
  background-color: #E1E4E6;
  color: #333333;
}

.aboutHeroText{
  gap: 20px;
}
.aboutTitle{
  animation: fadeIn 2s ease-out;
}
.aboutTitle h1{
  font-size: 1rem;
  color: #20806B;
}
.aboutTitle h3{
  font-size: 2rem;
}

.heroImgContainer{
  width: 100%;
  height: auto;
  padding: 8.5px 0 0 0;
}
.heroImgContainer img{
  height: auto;
  width: 225px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.6);
  border-radius: 10px;
  transition: 1s ease;
}

.aboutMe p, .myApproachContent p, .whereIAmNowContent p{
  font-size: 1rem;
}

.aboutContent{
  display: flex;
  flex-direction: column;
  text-align: justify;
  padding: 1rem 0;
}
.aboutMe{
  padding: .5rem .25rem;
  margin: 0 2.5rem;
  color: #333333;
}
.emphasize{
  font-size: large;
  font-style: italic;
}
.abtContenthr{
  margin: .5rem 3rem;
  border: 1px solid #7FA1C3;
  opacity: .25;
}

.contentGrid{
  margin: 0 2.5rem;
}
.myApproach, .whereIAmNow{
  text-align: justify;
  padding: 1rem 0;
  margin: .5rem 0;
}

.myApproachTitle, .whereIAmNowTitle{
  text-align: center;
  gap: 5px;
  margin-bottom: 1rem;
}
.myApproachTitle h2, .whereIAmNowTitle h2{
  font-size: .9rem;
  color: #20806B;
}
.myApproachTitle h3, .whereIAmNowTitle h3{
  font-size: 1.1rem;
}

.myApproachContent, .whereIAmNowContent{
  padding: .25rem;
}

.CTAs{
  display: flex;
  width: fit-content;
  gap: 15px;
  align-items: center;
  padding: .5rem 0;
  margin: .5rem 2.5rem;
}
.CTAs button, .CTAs a{
  font-size: .8rem;
  padding: .2rem .5rem;
  text-align: center;
  font-family: 'Changa', sans-serif;
}
.CTAs a{
  color: #20806B;
  border: 2px solid #E1E4E6;
  border-radius: .7rem;
  box-shadow: 0 3px 5px rgba(0, 102, 204, 0.1);
}
.CTAs a:hover{
  color: #333333;
  box-shadow: 0 3px 5px rgba(0, 102, 204, 0.3);
}

/*Footer Styles*/
footer{
  background-color: #7FA1C3;
  color: #F5EDED;
  text-align: center;
  padding: 1rem 1rem 0 1rem;
}
.footerSections{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: .5rem;
}
.footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.footerLogo img{
  width: 75px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footerLinks{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.footerNav{
  display: flex;
  justify-content: space-around;
  padding: 1rem auto;
  margin: auto;
  width: fit-content;
  gap: 10px;
}
.footerNav a{
  color: #333333;
  font-size: 1.15rem;
}
.footerNav a:hover{
  color: #20806B;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #333333;
}
.footerSocials{
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  width: fit-content;
  gap: 5px;
}
.footerSocials a{
  font-size: 1rem;
  color: #333333;
}
.footerSocials a:hover{
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #20806B;
}
footer small{
  font-size: .65rem;
}