.header-main {
  position: fixed;
  height: 60px;
  width: 100%;
  background-color: var(--site-darkgreen);
  display: flex;
  z-index: 10000;
}

.header-main-logo {
  height: 100%;
  width: fit-content;
  display: flex;
}

.header-main-logo img {
  height: 60px;
}

.header-main-logo a {
  line-height: 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: larger;
  font-weight: 600;
}





.header-main-sm{
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-main-sm a {
  margin-top: 10px;
}

.header-main-sm-i {
  width: 40px;
  height: 40px;
  background-image: url(../img/instagram.png);
  background-repeat: no-repeat;
  background-size: cover; 
}

.header-main-sm-y {
  width: 40px;
  height: 40px;
  background-image: url(../img/Youtube.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 10px;
}

.header-main-sm-f {
  width: 40px;
  height: 40px;
  background-image: url(../img/facebook.png);
  background-repeat: no-repeat;
  background-size: cover; 
  margin-left: 10px;
}

.header-main-sm-t {
  width: 40px;
  height: 40px;
  background-image: url(../img/TikTok.png);
  background-repeat: no-repeat;
  background-size: cover; 
  margin-left: 10px;
}

.header-main-sm-i:hover {
  background-image: url(../img/instagram-color.png);
}

.header-main-sm-y:hover {
  background-image: url(../img/Youtube-color.png);
}

.header-main-sm-f:hover {
  background-image: url(../img/facebook-color.png);
}

.header-main-sm-t:hover {
  background-image: url(../img/TikTok-color.png);
}






.header-main-nav{
  width: 450px;
  height: 60px;
  display: flex;
}
.header-main-nav ul {
  display: flex;
}

.header-main-nav li {
  line-height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--site-orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.header-main-nav li:hover {
  line-height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--site-beige);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

