@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&family=Syne:wght@700&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background-color: rgb(255, 208, 55);
  color: #000;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 100%;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.main {
  overflow: hidden;
}

.bg__circle {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF37CA;
  -webkit-clip-path: circle(70% at right -20%);
          clip-path: circle(70% at right -20%);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgb(255, 208, 55);
}

.logo__naturio {
  position: absolute;
  text-transform: capitalize;
  display: block;
  margin-top: -0.9em;
  font-size: 3em;
}

#first {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #FF37CA;
  -webkit-text-stroke-width: 0.2px;
}

#second {
  color: #FF37CA;
  -webkit-animation: wave 4s ease-in-out infinite;
          animation: wave 4s ease-in-out infinite;
}
@-webkit-keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0 49%, 15% 46%, 31% 49%, 63% 59%, 76% 55%, 85% 51%, 100% 48%, 100% 100%, 0% 100%);
            clip-path: polygon(0 49%, 15% 46%, 31% 49%, 63% 59%, 76% 55%, 85% 51%, 100% 48%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 54%, 15% 57%, 31% 60%, 50% 57%, 67% 47%, 82% 42%, 100% 41%, 100% 100%, 0% 100%);
            clip-path: polygon(0 54%, 15% 57%, 31% 60%, 50% 57%, 67% 47%, 82% 42%, 100% 41%, 100% 100%, 0% 100%);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0 49%, 15% 46%, 31% 49%, 63% 59%, 76% 55%, 85% 51%, 100% 48%, 100% 100%, 0% 100%);
            clip-path: polygon(0 49%, 15% 46%, 31% 49%, 63% 59%, 76% 55%, 85% 51%, 100% 48%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 54%, 15% 57%, 31% 60%, 50% 57%, 67% 47%, 82% 42%, 100% 41%, 100% 100%, 0% 100%);
            clip-path: polygon(0 54%, 15% 57%, 31% 60%, 50% 57%, 67% 47%, 82% 42%, 100% 41%, 100% 100%, 0% 100%);
  }
}

.nav {
  position: relative;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  width: auto;
  padding-top: 1.9em;
}

.nav__toggle {
  display: inline-flex;
  font-size: 2.5rem;
  cursor: pointer;
  color: white;
  margin-top: 0.4em;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    background-color: #FF37CA;
    left: 0;
    top: -100%;
    box-shadow: 0 8px 24px hsla(2deg, 100%, 35%, 0.2);
    width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 0 0 2rem 2rem;
    transition: top 0.4s;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}

.nav__link, .nav__close {
  color: white;
}

.nav__link {
  font-weight: 300;
}

.nav__link:hover {
  color: #000;
  transition: 0.2s;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  cursor: pointer;
}

.show-menu {
  top: 0;
}

.home, .home__container {
  position: relative;
}

.home__container {
  padding-top: 8rem;
  display: grid;
  row-gap: 1rem;
}

.home__title {
  max-width: 400px;
  font-size: 3em;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FF37CA;
  margin-bottom: 0.75rem;
}

.home__desc {
  max-width: 400px;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  margin-bottom: 1.5rem;
}

.home__button {
  font-weight: 500;
  display: inline-block;
  background-color: #FF37CA;
  color: white;
  padding: 0.5rem 3rem;
  border-radius: 5em;
  box-shadow: 0 8px 20px hsla(2deg, 100%, 45%, 0.28);
  transition: 0.4s;
}

.home__button:hover {
  background-color: rgb(255, 208, 55);
  color: #000;
  border: 1px solid #FF37CA;
}

.home__image {
  width: 320px;
  display: flex;
  justify-self: center;
  justify-content: center;
  align-content: center;
}

.home__swiper {
  width: 500px;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 400px;
  display: flex;
  justify-content: center;
}

.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}

.home__soc-med {
  position: fixed;
  top: 50%;
  right: 3%;
}

.soc-med__list {
  font-size: 2rem;
}

.soc-med__link {
  color: #FF37CA;
}
.soc-med__link :hover {
  color: white;
  transform: translateX(-0.3em);
  transition: all 0.1s ease-in-out;
}

@media screen and (max-width: 330px) {
  .home__title {
    max-width: 200px;
  }
  .home__desc {
    max-width: 210px;
  }
  .home__image {
    width: 200px;
  }
  .swiper-slide {
    height: 270px;
  }
}
@media screen and (max-width: 375px) {
  .home__image {
    width: 200px;
  }
  .swiper-slide {
    height: 270px;
  }
}
@media screen and (min-width: 769px) {
  .header {
    background-color: transparent;
  }
  .nav {
    height: 5rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    font-size: 15pt;
  }
  .nav__logo {
    padding-top: 0.8em;
  }
  .nav__link {
    color: #000;
  }
  .nav__link:hover {
    color: white;
  }
}
@media screen and (min-width: 900px) {
  .nav__link {
    color: white;
  }
  .nav__link:hover {
    color: #000;
  }
  .home__container {
    padding-top: 11rem;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    justify-content: space-between;
    margin-right: 5em;
  }
  .bg__circle {
    display: block;
    -webkit-clip-path: circle(70% at right 0%);
            clip-path: circle(70% at right 0%);
  }
  .soc-med__link {
    color: #000;
  }
  .soc-med__link :hover {
    color: white;
  }
}
@media screen and (min-width: 1024px) {
  .bg__circle {
    -webkit-clip-path: circle(70% at right -20%);
            clip-path: circle(70% at right -20%);
  }
  .home__desc {
    max-width: 457px;
  }
  .home__image {
    width: 465px;
  }
  .home__soc-med {
    top: 45%;
    right: 1.5%;
  }
  .home, .home__container {
    height: 100vh;
  }
  .home__container {
    padding-top: 5rem;
  }
}/*# sourceMappingURL=style.css.map */