body {
   background-color: #F3F1EE;
   margin: 0;
   padding: 0;
}

.wrapper {
   padding: 10px 10px 0;
   border-radius: 8px;
   background-color: #fff;
   font-family: "Manrope", serif;
   font-weight: 400;
   line-height: 1.45;
   max-width: 800px;
   margin: 0 auto;
   color: #1D2130;
}

.header {
   max-width: 800px;
   margin: 0 auto;
   line-height: 1
}

.logo {
   display: block;
   margin: 40px 0;
   width: auto;
   height: 40px;
   transition: all 0.25s ease-out;
}

.logo:hover {
   opacity: 0.8;
}

.block {
   border-radius: 8px;
   padding: 20px;
   overflow: hidden;
   margin-bottom: 24px;
}

.block--padding-bottom_none {
   padding-bottom: 0;
   border-end-end-radius: 0;
   border-end-start-radius: 0;
}

.block--last {
   border-end-end-radius: 0;
   border-end-start-radius: 0;
   margin-bottom: 0;
}

.block.background-color--white {
   padding: 24px 0px;
}

.block.background-color-c {
   padding-top: 40px;
   padding-bottom: 40px;
}

.title {
   font-size: 40px;
   line-height: 1.2;
   font-family: "Manrope", serif;
   font-weight: 400;
   margin: 0 0 24px;
}

.title em {
   font-family: "Playfair Display", serif;
}


@media (width > 600px) {
   .title.title--moved {
      padding: 0 20px;
   }

   .title.title--moved span {
      position: relative;
      left: 20px;
   }

   .title.title--moved em {
      position: relative;
      right: 20px;
   }
}

.subtitle {
   font-weight: 600;
   font-size: 14px;
   margin-bottom: 4px;
   color: #3E445C;
}

.paragraph {
   opacity: 0.8;
   font-size: 14px;
   width: 100%;
   max-width: 600px;
   display: inline-block;
   margin-bottom: 24px
}

.paragraph--small {
   font-size: 10px;
   opacity: 1;
   margin-bottom: 0;
}

.paragraph--large {
   font-size: 20px;
   opacity: 1;
   line-height: 1.6;
   letter-spacing: 0.25px;
   max-width: none;
}

.buttons {
   margin: 0 0 24px;
}

.button {
   border-radius: 8px;
   padding: 12px 20px;
   cursor: pointer;
   display: inline-block;
   text-decoration: none;
   background: #F3F1EE;
   color: #1D2130;
   font-weight: 600;
   font-size: 16px;
   transition: all 0.25s ease-out;
}

.button.button--white {
   background-color: #fff;
}

.button:hover {
   opacity: .8;
}

.button>img,
.button>span {
   display: inline-block;
   vertical-align: middle;
}

.button>img {
   margin-right: 4px;
}


/* Image */
.image {
   border-radius: 8px;
   display: block;
   width: 100%;
   height: auto;
}

.image--last {
   border-end-end-radius: 0;
   border-end-start-radius: 0;
}

.image--border {
   border: 1px solid #7C82A1;
}

/* Colors */
.background-color-a {
   background-color: #3F575E;
   color: #fff;
}

.background-color-b {
   background-color: #383439;
   color: #fff;
}

.background-color-c {
   background-color: #2499FC;
   color: #fff;
}

.background-color-d {
   background-color: #1D2130;
   color: #fff;
}

.text-center {
   text-align: center;
}

.text-left {
   text-align: left;
}

.last {
   margin-bottom: 0 !important;
}

.cards {
   gap: 12px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   margin: 1.5rem 0;
}

.card {
   grid-column: span 3;
   border-radius: 8px;
   padding: 16px;
   display: block;
   display: flex;
   flex-direction: column;
   border: 1px solid #fff;
   text-align: left;
   text-decoration: none;
   color: #fff;
   transition: all 0.25s ease-out;
}

@media (width > 500px) {
   .card {
      grid-column: span 1;
   }
}

.card:hover {
   opacity: 0.8;
}

.card__icon img {
   display: block;
   margin-bottom: 16px;
   height: 24px;
   width: auto;
}

.card__title {
   opacity: 0.8;
   margin: 0;
   font-weight: 400;
}

.card__footer {
   margin-top: auto;
   padding-top: 12px;
   text-align: right;
   line-height: 1;
}

.card__footer img {
   width: auto;
   height: 24px;
   display: inline-block;
}

.feature {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   column-gap: 0;
   text-align: left;
}

.feature__image {
   grid-column: span 2;
   margin-bottom: 24px;
}

.feature__image img {
   display: block;
   width: 100%;
   height: auto;
   border-radius: 8px;
}

.feature__body {
   grid-column: span 2;
}

@media (width > 500px) {
   .feature__image {
      grid-column: span 1;
      padding-right: 40px;
      margin: 0;
   }

   .feature__body {
      grid-column: span 1;
   }
}

.list {
   text-align: left;
}

.list__item {
   margin-bottom: 8px;
}

.line {
   background: #fff;
   opacity: 0.3;
   height: 1px;
   width: 100%;
   display: block;
   margin: 40px 0;
}

.footer {
   padding-top: 16px;
}

.footer a {
   transition: all 0.25s ease-out;
}

.footer a:hover {
   opacity: 0.8;
}

.footer .paragraph {
   opacity: 1;
}

.footer__top {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   line-height: 1;
   gap: 24px;
}

.footer__bottom {
   opacity: 0.8 !important;
}


.footer__bottom .separator {
   margin: 0 4px;
}

.footer__bottom a {
   text-decoration: underline;
   color: inherit;
}

.footer__bottom a:hover {
   text-decoration: none;
}

.footer__logo img {
   display: block;
   height: 32px;
   width: auto;
}

/* Social */
.social-buttons {
   display: flex;
   gap: 8px;
   line-height: 1;
}

.social-buttons img {
   height: 40px;
   width: auto;
   display: block;
}