* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.limit-width {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-block-start: 0px;
}

p {
  font-size: 16px;
  line-height: 1.5;
}
p span {
  color: #e84242;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}
p.red {
  color: #e84242;
}
p a {
  color: #e84242;
}
p a:hover {
  text-decoration: underline;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  color: #e84242;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 917px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-weight: 700;
  color: #016f7a;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
  color: #e84242;
}
@media (max-width: 640px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

b {
  font-weight: 600;
}

.button {
  display: block;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background-color: #e84242;
  color: white;
  cursor: pointer;
  border-radius: 30px;
  padding: 10px 18px;
  border: none;
  transition: all 0.3s ease;
}
.button.secondary {
  background-color: #fff;
  color: #000;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
}
.button.secondary:hover {
  background-color: #4c4545;
  color: #fff;
}
.button.border {
  padding: 9px 18px;
  border: solid 2px #e84242;
}
.button.border:hover {
  background: none;
  border: solid 2px #f4e2cb;
  color: #f4e2cb;
}
.button:hover {
  background-color: #781613;
}
@media (max-width: 917px) {
  .button {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

.image-text {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 8rem;
}
.image-text .image {
  position: relative;
  left: 0;
  width: 50%;
  height: 18rem;
  border-radius: 0 10rem 10rem 0;
  overflow: hidden;
  margin-left: -10rem;
}
.image-text .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-text .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 100%;
}
.image-text .text p:not(:last-child) {
  margin-bottom: 1rem;
}
.image-text.invert {
  flex-direction: row-reverse;
}
.image-text.invert .image {
  position: relative;
  overflow: hidden;
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: -10rem;
  border-radius: 10rem 0 0 10rem;
}
@media (min-width: calc(1400px + 20rem)) {
  .image-text {
    gap: 10rem;
  }
  .image-text .image {
    left: auto;
    border-radius: 10rem;
    margin-left: auto;
  }
  .image-text.invert .image {
    border-radius: 10rem;
    right: auto;
    margin-right: auto;
  }
}
@media (max-width: 1280px) {
  .image-text .image {
    margin-left: -7.5rem;
  }
  .image-text.invert .image {
    margin-left: 0;
    margin-right: -7.5rem;
  }
}
@media (max-width: 1024px) {
  .image-text {
    gap: 5rem;
  }
  .image-text .image {
    margin-left: -5rem;
    width: calc(50% + 5rem);
  }
  .image-text.invert .image {
    margin-left: 0;
    margin-right: -5rem;
  }
}
@media (max-width: 917px) {
  .image-text {
    flex-direction: column;
    align-items: start;
  }
  .image-text.invert {
    flex-direction: column;
    align-items: start;
  }
  .image-text .image {
    width: calc(100% + 5rem);
  }
  .image-text .text {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .image-text .image {
    margin-left: -3rem;
    height: 16rem;
    width: 100%;
  }
  .image-text.invert .image {
    margin-left: auto;
    margin-right: -3rem;
  }
}
@media (max-width: 448px) {
  .image-text {
    gap: 3rem;
  }
  .image-text .image {
    margin-left: -1.25rem;
    height: 12rem;
  }
  .image-text.invert .image {
    margin-left: auto;
    margin-right: -1.25rem;
  }
}

.banniere {
  height: 50vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  mask-image: url(../images/mask-banner.svg);
  mask-size: cover;
  mask-position: bottom center;
  mask-repeat: no-repeat;
}

.wrap {
  max-width: 1400px;
  margin: auto;
  margin: 10rem 10rem;
}
@media (min-width: calc(1400px + 20rem)) {
  .wrap {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1280px) {
  .wrap {
    margin: 7.5rem 7.5rem;
  }
}
@media (max-width: 1024px) {
  .wrap {
    margin: 5rem 5rem;
  }
}
@media (max-width: 768px) {
  .wrap {
    margin: 5rem 5rem;
  }
}
@media (max-width: 640px) {
  .wrap {
    margin: 3rem 3rem;
  }
}
@media (max-width: 448px) {
  .wrap {
    margin: 3rem 1.25rem;
  }
}

.wp-block-separator {
  margin: 2rem 0;
}

p:has(em) {
  margin-top: 3rem;
}

section {
  overflow: hidden;
}

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