@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Black.ttf") format("truetype");
  font-weight: 900;
}
html {
  hyphens: auto;
  box-sizing: border-box;
}
*, *:before, *:after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background-color: #F1F0EB;
  font-family: "Muli", sans-serif;
  font-weight: 400;
}
a {
  padding: 0;
  margin: 0;
  color: #000000;
}
a:hover {
  color: #AB3B61;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 64rem) {
  .container {
    max-width: 60rem;
  }
}
@media (min-width: 76rem) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 88rem) {
  .container {
    max-width: 84rem;
  }
}

.section__title {
  font-size: 2.5rem;
  color: #15454E;
  font-weight: 900;
  margin-bottom: 2rem;
}
@media (max-width: 47rem) {
  .section__title {
    font-size: 2rem;
  }
}

.navbar {
  width: 100%;
  background-color: #F1F0EB;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.navbar__name {
  border: 2px solid;
  padding: 8px;
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #15454E;
  font-weight: 700;
}
.navbar__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 1.2rem;
  font-weight: bold;
  color: #15454E;
  padding-top: 2rem;
  padding-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 26rem) {
  .navbar__content {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 1rem;
    padding-top: 1rem;
  }
}
.navbar i {
  margin-right: 8px;
}

.hero {
  position: relative;
}
@media (max-width: 47rem) {
  .hero:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: linear-gradient(90deg, rgba(11, 46, 53, 0.9) 0%, rgba(11, 46, 53, 0.1) 90%);
  }
}
.hero__img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  object-position: right top;
}
@media (max-width: 76rem) {
  .hero__img {
    object-position: 0 0;
  }
}
@media (max-width: 64rem) {
  .hero__img {
    object-position: 50% 0;
  }
}
@media (max-width: 47rem) {
  .hero__img {
    object-position: 70% 0;
  }
}
@media (max-width: 26rem) {
  .hero__img {
    height: 35rem;
    object-position: top 0 right 30%;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 2rem;
  right: 0;
  color: white;
}
@media (max-width: 26rem) {
  .hero__text {
    justify-content: flex-end;
    padding-bottom: 4rem;
  }
}
.hero__name {
  font-size: 2rem;
}
@media (max-width: 26rem) {
  .hero__name {
    font-size: 1.5rem;
  }
}
.hero__title {
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 3.4rem;
  line-height: 4rem;
  word-break: break-word;
}
@media (max-width: 64rem) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media (max-width: 47rem) {
  .hero__title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
@media (max-width: 26rem) {
  .hero__title {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.hero__subtitle {
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
  font-size: 1.5rem;
}
@media (max-width: 47rem) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 26rem) {
  .hero__subtitle {
    font-size: 1.2rem;
    max-width: 70%;
    margin-bottom: 2rem;
  }
}
.hero__subtitle2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 47rem) {
  .hero__subtitle2 {
    font-size: 1.3rem;
  }
}
.hero__button:hover {
  background-color: #AB3B61 !important;
}

.myButton {
  width: auto;
  align-self: flex-start;
  border: 2px solid white;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  color: blac;
  border-color: black;
  background-color: white;
}
@media (min-width: 47rem) {
  .myButton {
    font-size: 1.2rem;
  }
}
.myButton:hover {
  background-color: #AB3B61;
  border-color: #AB3B61;
  cursor: pointer;
  color: white;
}
@media (min-width: 47rem) {
  .myButton {
    bottom: 4rem;
    right: 6rem;
  }
}

.about {
  display: flex;
  flex-direction: column;
}
@media (min-width: 47rem) {
  .about {
    flex-direction: row;
    margin-bottom: 6rem;
  }
}
.about__side {
  flex: 3;
  background-color: #FBE8A6;
}
@media (min-width: 47rem) {
  .about__side {
    flex: 2;
  }
}
.about__side img {
  float: right;
  height: auto;
  margin: 1rem;
  width: 5%;
}
@media (min-width: 47rem) {
  .about__side img {
    margin: 2rem;
    width: 40%;
  }
}
@media (min-width: 64rem) {
  .about__side img {
    width: 25%;
  }
}
.about__text {
  margin: 8rem 5rem;
  flex: 5;
}
@media (max-width: 47rem) {
  .about__text {
    margin: 6rem 4rem;
  }
}
@media (max-width: 26rem) {
  .about__text {
    margin: 4rem 2rem;
  }
}
.about__text blockquote {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 47rem) {
  .about__text blockquote {
    font-size: 1.2rem;
  }
}

.img {
  display: flex;
  flex-direction: row;
  height: 25rem;
}
@media (max-width: 47rem) {
  .img {
    flex-direction: column;
  }
}
.img__side {
  position: relative;
  flex: 2;
}
.img__bcg {
  position: absolute;
  top: 5rem;
  left: 8rem;
  z-index: -100;
  width: 100%;
  height: 100%;
  background-color: #E1E0DC;
}
@media (max-width: 47rem) {
  .img__bcg {
    width: 0%;
    height: 0%;
  }
}
.img__img {
  height: 100%;
  flex: 5;
}
.img__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer {
  display: flex;
  flex-direction: row;
  gap: 8rem;
}
@media (max-width: 64rem) {
  .offer {
    gap: 5rem;
  }
}
@media (max-width: 47rem) {
  .offer {
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
@media (max-width: 26rem) {
  .offer {
    gap: 3rem;
  }
}
.offer__text {
  flex: 5;
  justify-self: center;
  margin: 10rem 0;
}
@media (max-width: 64rem) {
  .offer__text {
    margin: 8rem 0 6rem 2rem;
  }
}
@media (max-width: 47rem) {
  .offer__text {
    margin: 2rem 2rem 6rem 2rem;
  }
}
@media (max-width: 26rem) {
  .offer__text {
    margin: 0 2rem 6rem 2rem;
  }
}
.offer__side {
  flex: 2;
  background-color: #BCC8B9;
  height: auto;
}
@media (max-width: 64rem) {
  .offer__side {
    flex: 1.5;
  }
}
.offer__side img {
  float: left;
  height: auto;
  margin: 1rem;
  width: 5%;
}
@media (min-width: 47rem) {
  .offer__side img {
    margin: 2rem;
    width: 40%;
  }
}
@media (min-width: 64rem) {
  .offer__side img {
    width: 25%;
  }
}
.offer__list {
  margin-top: 4rem;
  margin-left: 2rem;
}
@media (max-width: 26rem) {
  .offer__list {
    margin-left: 0;
  }
}
.offer__level {
  color: #15454E;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.offer__title {
  color: #15454E;
  font-size: 3rem;
  font-weight: 900;
}
@media (MAX-width: 26rem) {
  .offer__title {
    font-size: 2rem;
  }
}
.offer__subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.offer__info {
  font-size: 1.2rem;
}

.place {
  display: flex;
  flex-direction: row;
  margin-bottom: 8rem;
}
@media (max-width: 47rem) {
  .place {
    flex-direction: column;
  }
}
.place__bcg {
  display: block;
  position: absolute;
  bottom: -4rem;
  left: 60%;
  z-index: -100;
  width: 100%;
  height: 60%;
  background-color: #E3DAD0;
}
@media (max-width: 47rem) {
  .place__bcg {
    width: 100%;
    height: 100%;
    bottom: -4rem;
    left: 0;
  }
}
.place__side {
  position: relative;
  flex: 3;
  background-color: #B3C6D5;
  width: 100%;
}
.place__side img {
  width: 100%;
  object-fit: cover;
}
.place__text {
  align-content: center;
  margin: 0 5rem;
  padding-top: 3rem;
  flex: 5;
  font-size: 2.5rem;
  font-weight: 600;
  color: #15454E;
}
@media (max-width: 76rem) {
  .place__text {
    font-size: 2rem;
  }
}
@media (max-width: 64rem) {
  .place__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 47rem) {
  .place__text {
    margin: 8rem 2rem 0 2rem;
  }
}

.price__header {
  margin-top: 4rem;
  font-size: 2.5rem;
  color: #15454E;
  font-weight: 900;
}
.price__price {
  padding-left: 4rem;
  padding-top: 2rem;
  font-size: 1.5rem;
}
@media (max-width: 26rem) {
  .price__price {
    padding-left: 2rem;
  }
}

.footer {
  background-color: #B3C6D5;
}
.footer__contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.2rem;
  width: 80%;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (max-width: 47rem) {
  .footer__contact {
    flex-direction: column;
  }
}
.footer__name {
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 0.5rem;
}
.footer__mail {
  font-weight: 700;
}
.footer__copyright {
  text-align: center;
  padding: 0 2rem;
  padding-bottom: 2rem;
}
.footer__social a {
  padding: 0 4px;
}

.info {
  margin-top: 10rem;
  margin-bottom: 5rem;
  height: auto;
}
.info__title {
  padding-bottom: 2rem;
}
.info__item {
  padding-bottom: 2rem;
}
.info__point {
  padding-bottom: 1rem;
}
.info__text {
  padding-bottom: 2rem;
}

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