.MainSection {
  margin-top: 32px;
  margin-bottom: 32px;
  display: grid;
  gap: 24px;
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 640px) {
  .MainSection {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (min-width: 1570px) {
  .MainSection {
    margin-left: 64px;
    margin-right: 64px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1120px) {
  .MainSection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.MainSection__image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.MainSection__content {
  background-color: #f8f6f2;
  border-radius: 30px;
  background-image: url("/assets/Group 2.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 60px 32px 80px;
  display: flex;
  justify-content: center;
  background-size: auto 95%;
}
.MainSection__content .wrapper {
  max-width: 570px;
  width: 100%;
  display: block;
}
.MainSection__content .wrapper .logo {
  margin-bottom: 64px;
}
@media (min-width: 1120px) {
  .MainSection__content .wrapper .logo {
    margin-bottom: 104px;
  }
}
.MainSection__content .wrapper .about {
  margin-bottom: 80px;
}
.MainSection__content .wrapper .contactUs {
  color: #b0884e;
  margin-bottom: 22px;
  font-weight: 500;
}
.MainSection__content .wrapper .contact {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.MainSection__content .wrapper .contact a {
  color: #b0884e;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.MainSection__content .wrapper .contact a:hover {
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.5rem, 1.1125rem + 1.9375vw, 3.4375rem);
  color: #2c4940;
  margin-bottom: 40px;
  margin-top: 0;
}

p {
  font-size: 18px;
}

img {
  max-width: 100%;
}

* {
  margin: 0;
}/*# sourceMappingURL=styles.css.map */