*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #181829;
  min-height: 100vh;
  overflow-x: hidden;
  zoom: 0.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease;
}

ul,
ol {
  list-style: none;
}

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

svg {
  display: block;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

::selection {
  background-color: #DB2A6B;
  color: #FFFFFF;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.header {
  position: relative;
  z-index: 100;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo__gath {
  color: #DB2A6B;
}
.logo__session {
  color: #FFFFFF;
}
.logo__dot {
  color: #DB2A6B;
}
.logo:hover {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav__link {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0;
  position: relative;
  transition: color 200ms ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #DB2A6B;
  transition: width 200ms ease;
}
.nav__link:hover {
  color: #FFFFFF;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link--active {
  color: #FFFFFF;
}
.nav__link--active::after {
  width: 100%;
}

.nav-dropdown {
  display: none;
  position: relative;
}
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #FFFFFF;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #DB2A6B;
}
.nav-dropdown__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}
.nav-dropdown__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #222235;
  border-radius: 15px;
  padding: 1rem 0;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background-color: #222235;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}
.nav-dropdown__item {
  display: block;
  padding: 1rem 2rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 200ms ease;
}
.nav-dropdown__item:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 3rem;
}
.nav-dropdown__item--active {
  color: #DB2A6B;
}
.nav-dropdown.active .nav-dropdown__arrow {
  transform: rotate(180deg);
}
.nav-dropdown.active .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .header {
    padding: 1.5rem 2rem;
  }
  .logo {
    font-size: 2rem;
  }
  .nav {
    display: none;
  }
  .nav-dropdown {
    display: block;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 1rem 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
  }
}
.hero {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 200ms ease;
  cursor: pointer;
}
.btn--primary {
  font-size: 1.125rem;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #DB2A6B;
  padding: 14px 60px;
  border-radius: 15px 15px 15px 0px;
}
.btn--primary:hover {
  background-color: #c12460;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(219, 42, 107, 0.4);
}
.btn--secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn--secondary:hover {
  color: #DB2A6B;
}
.btn--secondary:hover .btn__arrow {
  transform: translateX(6px);
}
.btn__arrow {
  display: inline-flex;
  transition: transform 200ms ease;
}
.btn__arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.features {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.feature__icon img {
  width: 40px;
  height: 40px;
}
.feature__text {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.avatars-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  z-index: 2;
}

.avatar-item {
  position: absolute;
  overflow: hidden;
  z-index: 3;
}
.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.avatar-item--1 {
  width: 260px;
  height: 600px;
  top: -100px;
  left: 0;
  border-radius: 90px;
  background-color: #6E1FED;
}
.avatar-item--4 {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: 0;
  border-radius: 90px;
  background-color: #DB2A6B;
}
.avatar-item--2 {
  width: 260px;
  height: 260px;
  top: -100px;
  left: 290px;
  border-radius: 90px;
  background-color: #60D3D9;
}
.avatar-item--5 {
  width: 260px;
  height: 600px;
  bottom: -100px;
  left: 290px;
  border-radius: 90px;
  background-color: #FF7E29;
}
.avatar-item--3 {
  width: 260px;
  height: 600px;
  top: 50%;
  transform: translateY(-50%);
  right: -250px;
  border-radius: 90px;
  background-color: #F4B840;
}

.decorative-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.decorative-circles__ellipse {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(0.3px);
}
.decorative-circles__ellipse--1 {
  width: 1100px;
  height: 1100px;
  right: -480px;
  bottom: -380px;
}
.decorative-circles__ellipse--2 {
  width: 800px;
  height: 800px;
  right: -350px;
  bottom: -350px;
}

@media (max-width: 1025px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
    padding: 2rem;
  }
  .hero-content {
    max-width: 100%;
    order: 1;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-cta {
    justify-content: center;
  }
  .features {
    justify-content: center;
  }
  .avatars-wrapper {
    order: 2;
    height: 495px;
    max-width: 495px;
    margin: 0 auto;
  }
  .avatar-item--1 {
    width: 150px;
    height: 320px;
    top: 0;
    left: 0;
    border-radius: 55px;
  }
  .avatar-item--4 {
    width: 150px;
    height: 150px;
    bottom: 0;
    left: 0;
    border-radius: 55px;
  }
  .avatar-item--2 {
    width: 150px;
    height: 150px;
    top: 0;
    left: 170px;
    border-radius: 55px;
  }
  .avatar-item--5 {
    width: 150px;
    height: 320px;
    bottom: 0;
    left: 170px;
    border-radius: 55px;
  }
  .avatar-item--3 {
    width: 150px;
    height: 320px;
    right: 0;
    border-radius: 55px;
  }
  .decorative-circles__ellipse--1 {
    width: 600px;
    height: 600px;
    right: -150px;
    bottom: -100px;
  }
  .decorative-circles__ellipse--2 {
    width: 400px;
    height: 400px;
    right: -50px;
    bottom: -20px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  .btn--primary {
    width: 100%;
  }
  .features {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .avatars-wrapper {
    height: 380px;
    max-width: 380px;
  }
  .avatar-item--1, .avatar-item--5 {
    width: 115px;
    height: 240px;
    border-radius: 45px;
  }
  .avatar-item--2, .avatar-item--4 {
    width: 115px;
    height: 115px;
    border-radius: 45px;
  }
  .avatar-item--3 {
    width: 115px;
    height: 240px;
    border-radius: 45px;
  }
  .avatar-item--2, .avatar-item--5 {
    left: 130px;
  }
  .decorative-circles__ellipse--1 {
    width: 450px;
    height: 450px;
    right: -80px;
    bottom: -50px;
  }
  .decorative-circles__ellipse--2 {
    width: 300px;
    height: 300px;
    right: -10px;
    bottom: -20px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .avatars-wrapper {
    height: 305px;
    max-width: 305px;
  }
  .avatar-item--1, .avatar-item--5 {
    width: 95px;
    height: 190px;
    border-radius: 38px;
  }
  .avatar-item--2, .avatar-item--4 {
    width: 95px;
    height: 95px;
    border-radius: 38px;
  }
  .avatar-item--3 {
    width: 95px;
    height: 190px;
    border-radius: 38px;
  }
  .avatar-item--2, .avatar-item--5 {
    left: 105px;
  }
  .decorative-circles__ellipse--1 {
    width: 350px;
    height: 350px;
    right: -40px;
    bottom: -10px;
  }
  .decorative-circles__ellipse--2 {
    width: 220px;
    height: 220px;
    right: -10px;
    bottom: -5px;
  }
}

/*# sourceMappingURL=style.css.map */
