* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(219.03deg, #f4c7ea 4.12%, #fde5ec 95.2%);
}

main {
  min-height: 80vh;
  margin: 80px;

  background: linear-gradient(
    136.16deg,
    rgba(46, 9, 22, 0.97) 12.91%,
    rgba(32, 10, 43, 0.69) 87.68%
  );
  box-shadow: 26px 24px 90px rgba(31, 26, 51, 0.13);
  border-radius: 50px;
  position: relative;
}

.absolute {
  position: absolute;
}

.triangle {
  top: 100px;
  right: -50px;
}
.elipse {
  bottom: -50px;
  left: 50px;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  position: relative;
}
.nav-item {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  position: relative;
  color: #ff5b79;
}
.nav-item:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.5s ease;
}

.nav-item:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #ffffff;
  left: 0;
  bottom: -3px;
  transition: 0.5s ease;
}

.btn-nav {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: #ff5b79;
  border: 1px solid #ff5b79;
  border-radius: 50px;
  padding: 10px 30px;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 20px;
}

.left-container {
  display: flex;
  flex-direction: column;
  width: 40%;
}

.left-container img {
  width: 80%;
}

.first-child-p {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  text-align: right;

  color: #ffffff;
}

.last-child-p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  text-align: right;

  color: #ffffff;
}

.bottom-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 40px 60% 0 0;
  position: relative;
}

.bottom-left-content::before {
  content: "";
  height: 80px;
  width: 2px;
  background-color: #ff5b79;
  position: absolute;
  right: -25px;
  bottom: 0;
}
.bottom-left-content::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #ff5b79;
  position: absolute;
  right: -29px;
  bottom: 78px;
  border-radius: 50%;
}

.right-container {
  display: flex;
  flex-direction: column;
  width: 35%;
}

h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: #ff5b79;
}

h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 68px;
  line-height: 109%;

  color: #ffffff;

  margin-top: 12px;
}
.right-container > p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;

  color: #ffffff;

  opacity: 0.8;
  margin-top: 25px;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.btn-primary {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  background: none;
  border: none;

  background-image: url(./images/primary.svg);
  padding: 29px 43.5px;

  text-align: center;

  color: #ffffff;
}

.btn-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  background: none;
  border: none;

  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  text-align: right;

  color: #ffffff;
}

button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.div-last-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-secondary {
  background: none;
  background-image: url(./images/secondary.svg);
  padding: 34px 41px;
  border: none;
  margin: 20px 0 20px 0;

  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  text-align: center;

  color: #ffffff;
}

@media (max-width: 1160px) {
  section {
    flex-direction: column;
  }
  .left-container, .right-container{
    width: 100%;
    padding: 10px;
  }
  .left-container {
    width: 50%;
  }
  h1 {
    font-size: 60px;
  }
  main{
    margin: 0;
    border-radius: 0;
  }
  nav {
    display: none;
  }
}
