/*********************/
/*STICKY NAVIGATION*/
/*********************/
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .section-hero {
  margin-top: 9.6rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #0b7285;
}

.main-nav-link.nav-contact:link,
.main-nav-link.nav-contact:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #1098ad;
}

.main-nav-link.nav-contact:hover,
.main-nav-link.nav-contact:active {
  background-color: #0c8599;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e3fafc;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.my-photo {
  height: 100%;
}

.btn-mobile-nav {
  border: none;

  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #0b7285;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
