@import url('https://fonts.googleapis.com/css?family=Fredoka');

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mitr";
}

:root {
  --color-main-1: #0fa894;
  --color-main-2: #0499a0;
}

header.header-menu.active {
  transition: 0.3s ease-in-out;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

header hr {
  border: 2px solid #0fa894;
}

header .social-media {
  display: flex;
  justify-content: flex-end;
  margin-right: 0;
  padding-top: 16px;
}

header .social-media ul.social {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

header .social-media ul.social li {
  margin-left: 15px;
  list-style: none;
  padding: 5px;
  transition: 0.3s;
}
header .social-media ul.social li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
header .social-media ul.social li.tel {
  border: 2px solid #33a867;
  border-radius: 15px;
  padding: 5px;
}
header .social-media ul.social li.tel a {
  text-decoration: none;
  color: #33a867;
}
header .social-media ul.social li.tel a img {
  margin-right: 5px;
}
header .social-media ul.social li a img {
  width: 30px;
  height: 30px;
}

header .flex-header {
  display: flex;
  flex-wrap: nowrap;
}

header .flex-header .menu-logo {
  margin: 0;
}

header .flex-header .menu-logo a {
  text-decoration: none;
  font-family: 'Fredoka', sans-serif; /* Set the font for the entire body */
  font-weight: bold;
}


header .flex-header .menu-logo h1 {
  background: linear-gradient(to right, #0fa894, #0499a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;

}

header .flex-header .menu-logo img {
  width: 75px;
}

header .flex-header .header-menu {
  display: flex;
  justify-content: flex-end;
  margin-right: 0;
}

header .flex-header .header-menu ul.menu {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: auto 0;
  background: rgb(15,168,148);
  background: radial-gradient(circle, rgba(15,168,148,1) 0%, rgba(4,153,160,1) 100%);


}

header .flex-header .header-menu ul.menu li.list-menu {
  list-style: none;
}

header .flex-header .header-menu ul.menu li.list-menu a {
  padding: 0 10px;
  text-decoration: none;
  color: #0fa894;
  font-weight: 400;
  font-size: 16px;
}

section.background-header {
  background: #30c7b5;
  padding: 50px 0;
  text-align: center;
}

section.background-header h1 {
  color: #fff;
  font-weight: bold;
  font-size: 62px;
  padding: 0;
  margin: 0;
}

.mobile-menu-button {
  display: none;
}

.social-media-popup {
  position: fixed;
  top: 85%;
  right: 10px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.social-media-popup .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: #fff;
  margin-top: 20px;
  background-color: #06c755;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 24px;
}

.social-media-popup .close-btn a i.fa-line {
  color: #fff;
}

@media screen and (max-width: 767px) {
  section.background-header h1 {
    font-size: 38px;
  }

  header .flex-header .header-menu ul.menu {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    margin: auto;
  }

  .mobile-menu-button a.icon {
    font-size: 28px;
    color: #0fa894;
    text-decoration: none;
  }

  header .flex-header .menu-logo h1 {
    font-size: 38px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
  header .flex-header .header-menu ul.menu {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    margin: auto;
  }

  .mobile-menu-button a.icon {
    font-size: 28px;
    color: #0fa894;
    text-decoration: none;
  }

  header .flex-header .menu-logo h1 {
    font-size: 48px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  header .flex-header .menu-logo h1 {
    font-size: 38px;
  }
}
