/* FONT FACE */
@font-face {
  font-family: Poppins;
  src: url(./font/Poppins-Regular.ttf);
}
@font-face {
  font-family: Poppins;
  src: url(./font/Poppins-Light.ttf);
  font-weight: 200;
}
@font-face {
  font-family: Poppins;
  src: url(./font/Poppins-Bold.ttf);
  font-weight: 700;
}

/* FONT FACE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  min-height: 100vh;
}

:root {
  --primary: #E81688;
  --secondary: #F1E8EE;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.btn-primary {
  border-radius: 50px;
  background-color: var(--primary);
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 10px 20px;
}

.btn-primary-link {
  border-radius: 50px;
  background-color: var(--primary);
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 20px;
  display: block;
  width: fit-content;
  text-align: center;
}

.section-wrapper {
  max-width: 1280px;
  padding: 65px 25px;
  margin: 0 auto;
}

.section-wrapper h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

nav {
  padding: 1.5em;
}

.nav-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-image-wrapper {
  max-width: 180px;
}

.nav-items {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-item {
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s;
}

.nav-item:hover {
  color: var(--primary);
}

.mobile-menu-icon {
  display: none;
}

footer {
  padding: 25px;
  border-top: 2px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-wrapper {
  max-width: 180px;
}

.links-wrapper {
  display: flex;
  gap: 20px;
}

.footer-link {
  border-bottom: 2px solid #fff;
  transition: .2s;
}

.footer-link:hover {
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 30px 10px;
  }
  .section-wrapper h2 {
    font-size: 2.4rem;
  }

  .footer-logo-wrapper {
    max-width: 100px;
  }

  .links-wrapper {
    gap: 5px;
    flex-direction: column;
  }

  .nav-image-wrapper {
    max-width: 100px;
  }
  
.mobile-menu-icon {
  display: block;
  cursor: pointer;
  z-index: 10;
}

.nav-items {
  position: fixed;
  top: 0;
  left: 105%;
  width: 100%;
  height: 100%;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary);
  transition: left .3s;
}

.nav-items.active {
  left: 0;
}
}