body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-image: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: 100% 550px;
}

main {
  padding-top: 30px;
  padding-bottom: 40px;
  background-image: url("../img/beauty-woman.png");
  background-repeat: no-repeat;
  background-position: 130px -90px;
  background-size: cover;
  position: relative;
}

figure {
  margin: 0;
}

.container {
  width: 87%;
  margin: 0 auto 0 auto;
}

/*header*/
header {
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  margin-left: 5rem;
  margin-right: auto;
}
header nav ul {
  display: flex;
  gap: 20px;
}
header nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #264065;
  transition: 0.4;
}
header aside {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
header aside a:first-of-type {
  background: transparent;
  color: #264065;
  text-decoration: none;
  display: inline-block;
  border-radius: 48px;
  text-align: center;
  transition: 0.4s;
}
header aside a:first-of-type:hover {
  opacity: 0.8;
}
header aside a:first-of-type {
  padding: 12px 24px;
  font-size: 16px;
  box-sizing: content-box;
  text-transform: capitalize;
}
header aside a:first-of-type:hover {
  text-decoration: underline;
  color: white;
}
header aside a:nth-of-type(2) {
  background: #264065;
  color: white;
  text-decoration: none;
  display: inline-block;
  border-radius: 48px;
  text-align: center;
  transition: 0.4s;
}
header aside a:nth-of-type(2):hover {
  opacity: 0.8;
}
header aside a:nth-of-type(2) {
  padding: 12px 24px;
  font-size: 16px;
  box-sizing: content-box;
  text-transform: capitalize;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: start;
  width: 50%;
  margin-top: 25px;
  margin-bottom: 60px;
}
.hero h1 {
  margin: 0;
  font-size: 3rem;
  color: #264065;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: #909090;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero div a {
  font-weight: 400;
  font-size: 1rem;
}
.hero div a:first-of-type {
  background: #264065;
  color: white;
  text-decoration: none;
  display: inline-block;
  border-radius: 48px;
  text-align: center;
  transition: 0.4s;
}
.hero div a:first-of-type:hover {
  opacity: 0.8;
}
.hero div a:first-of-type {
  padding: 15px 37px;
  max-width: fit-content;
}
.hero div a:nth-of-type(2) {
  background: transparent;
  color: #264065;
  text-decoration: none;
  display: inline-block;
  border-radius: 48px;
  text-align: center;
  transition: 0.4s;
}
.hero div a:nth-of-type(2):hover {
  opacity: 0.8;
}
.hero div a:nth-of-type(2) {
  padding: 15px 37px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero div a:nth-of-type(2) img {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  width: 20px;
  height: 20px;
}
.hero div a:nth-of-type(2) img:hover {
  background-color: #A9D6CB;
  transition: 0.4s;
}

.numbers {
  display: flex;
  gap: 60px;
  width: 450px;
  padding: 20px;
}
.numbers__item {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.numbers__item img {
  padding: 10px;
  border-radius: 50%;
  background: #A9D6CB;
}
.numbers__item span {
  text-align: center;
}
.numbers__item span:nth-of-type(1) {
  font-size: 2rem;
  color: #264065;
  font-weight: 600;
}
.numbers__item span:nth-of-type(2) {
  font-size: 0.9rem;
  color: #909090;
}

section.comments {
  position: absolute;
  margin-top: 60px;
  width: 420px;
  height: 440px;
  top: 170px;
  right: -50px;
}
section.comments article {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  width: 80%;
  padding: 10px 20px;
  box-sizing: border-box;
  position: absolute;
  /* First article: top-right */
}
section.comments article:nth-of-type(1) {
  top: 10px;
  right: 10px;
}
section.comments article {
  /* Second article: bottom-left */
}
section.comments article:nth-of-type(2) {
  bottom: 10px;
  left: 10px;
}
section.comments article span {
  color: #264065;
  font-weight: 600;
  font-size: 16px;
}
section.comments article p {
  margin: 0;
  font-size: 15px;
}

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