:root {
  --heading-font: "Sora", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  background: #fffaf5;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
textarea,
button {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.container {
  width: 1170px;
  max-width: calc(100% - 48px);
  margin-inline: auto;
}

.btn {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  min-width: 117px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(0 9 88 / 70%);
  border-radius: 999px;
  cursor: pointer;
}

/* =============header============= */

/* =============nav============= */
.nav {
  padding-top: 26px;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu {
  display: flex;
}
.menu__link {
  padding: 18px;
  color: #5e6085;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.menu__link:hover,
.menu__link--active {
  color: #000958;
  text-shadow: 0 1px 0 currentColor;
}

.nav__btn {
  color: #000958;
  font-size: 1.4rem;
  line-height: 1;
}

/* =============hero============= */
.hero {
  padding-top: 100px;
}
.hero .container {
  display: flex;
}
.hero__media{
  display: flex;
}
.hero__img {
  display: flex;
  border-radius: 16px;
  border: 3px solid #fff;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.hero__img--large {
  width: 388px;
  height: 488px;
  background: #fe997b;
  position: relative;
}
.hero__img--large::after{
  content: url(../img/hero-decorect-1.png);
  position: absolute;
  right: -39.5px;
  top: 17px;
  z-index: -1;
}
.hero__img--large::before{
  content: url(../img/hero-decorect-2.png);
  position: absolute;
  z-index: -1;
  left: -58px;
  bottom: 9.53px;
}
.hero__img--small {
  width: 186px;
  height: 244px;
  background: #faa7ad;
  align-self: flex-end;
  margin: 0 0 -58px -23px;
  position: relative;
  z-index: 1;
}
