html {
  scroll-behavior: smooth;
}

body {
  background: #20a09f;
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
}

/* START OF SECTION HEADER */
.container-header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* margin: 15px; */
  padding: 10px 15px;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #222;
  background-color: #20a09f;
  box-shadow: 0 5px 6px #969696;
}

.container-header .hamburger-logo {
  position: relative;
  top: 0;
}

.container-header .hamburger-logo .logo-jjn img {
  width: 150px;
  height: auto;
}

.container-header .hamburger-logo .logo-mtvn img {
  width: 100px;
  height: auto;
}

.container-header .hamburger-logo .logo-mtvn::before {
  content: "";
  width: 1px;
  height: 50%;
  background-color: #e7e7e7;
  z-index: 1;
  display: inline-block;
  margin-bottom: 2%;
}

/* START OF SECTION CONTENT */
.container-content {
  width: 100%;
  background-color: #e7e7e7;
  padding: 1rem;
}

.container-content .wrap-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: white;
}

/* START OF SECTION GRADIENT */
.gradient-elips {
  position: absolute;
  z-index: -1;
  top: 22%;
}

.gradient-elips img {
  width: 100%;
  height: auto;
}

.gradient-l {
  position: absolute;
  z-index: -1;
  top: 398%;
  left: 0;
}

.gradient-r {
  position: absolute;
  z-index: -1;
  top: 298%;
  right: 0;
}

.gradient-r img,
.gradient-l img {
  width: 100%;
  height: auto;
}

/* breakpoint ===============================*/
@media (min-width: 1024px) {
  .container-header .hamburger-logo {
    display: none;
  }
}