/* Import Poppins and Cormorant Garamond fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --default-font: 'Poppins', sans-serif;
  --desktop-h1-font-size: 82px;
  --desktop-h1-line-height: 88px;
  --desktop-h2-font-size: 54px;
  --desktop-h2-line-height: 64px;
  --desktop-h3-font-size: 40px;
  --desktop-h3-line-height: 48px;
  --desktop-h4-font-size: 32px;
  --desktop-h4-line-height: 40px;
  --desktop-h5-font-size: 26px;
  --desktop-h5-line-height: 34px;
  --desktop-h6-font-size: 20px;
  --desktop-h6-line-height: 28px;
  --mobile-h1-font-size: 48px;
  --mobile-h1-line-height: 56px;
  --mobile-h2-font-size: 38px;
  --mobile-h2-line-height: 46px;
  --mobile-h3-font-size: 34px;
  --mobile-h3-line-height: 42px;
  --mobile-h4-font-size: 32px;
  --mobile-h4-line-height: 40px;
  --mobile-h5-font-size: 24px;
  --mobile-h5-line-height: 32px;
  --mobile-h6-font-size: 20px;
  --mobile-h6-line-height: 28px;
  --desktop-body-font-size: 16px;
  --desktop-body-line-height: 24px;
  --mobile-body-font-size: 16px;
  --mobile-body-line-height: 24px;
  --desktop-label-font-size: 16px;
  --desktop-label-line-height: 24px;
  --mobile-label-font-size: 16px;
  --mobile-label-line-height: 24px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

*:first-child {
  margin-top: 0 !important;
}

*:only-child,
*:last-child {
  margin-bottom: 0 !important;
}

body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto !important;
  font-family: var(--default-font);
  font-size: var(--desktop-body-font-size);
  line-height: var(--desktop-body-line-height);
  color: var(--body-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--default-font);
  font-weight: 700;
  color: var(--primary-color);
}

h1 {
  font-size: var(--desktop-h1-font-size);
  line-height: var(--desktop-h1-line-height);
  font-style: italic;
  font-family: Cormorant Garamond;
}

h2 {
  font-size: var(--desktop-h2-font-size);
  line-height: var(--desktop-h2-line-height);
  font-weight: 500;
  font-style: italic;
  font-family: Cormorant Garamond;
  }

h3 {
  font-size: var(--desktop-h3-font-size);
  line-height: var(--desktop-h3-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h4 {
  font-size: var(--desktop-h4-font-size);
  line-height: var(--desktop-h4-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h5 {
  font-size: var(--desktop-h5-font-size);
  line-height: var(--desktop-h5-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h6 {
  font-size: var(--desktop-h6-font-size);
  line-height: var(--desktop-h6-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

a,
a:visited {
  color: inherit;
}

@media (max-width: 1279px) {
  body {
      font-size: var(--mobile-body-font-size);
      line-height: var(--mobile-body-line-height);
  }

  h1 {
      font-size: var(--mobile-h1-font-size);
      line-height: var(--mobile-h1-line-height);
  }

  h2 {
      font-size: var(--mobile-h2-font-size);
      line-height: var(--mobile-h2-line-height);
  }

  h3 {
      font-size: var(--mobile-h3-font-size);
      line-height: var(--mobile-h3-line-height);
  }


  h4 {
      font-size: var(--mobile-h4-font-size);
      line-height: var(--mobile-h4-line-height);
  }

  h5 {
      font-size: var(--mobile-h5-font-size);
      line-height: var(--mobile-h5-line-height);
  }

  h6 {
      font-size: var(--mobile-h6-font-size);
      line-height: var(--mobile-h6-line-height);
  }
}

@media (min-width: 768px) {
  .desktop-image {
      display: block;
  }

  .mobile-image {
      display: none;
  }
}

@media (max-width: 767px) {
  .desktop-image {
      display: none;
  }

  .mobile-image {
      display: block;
  }
}

strong {
  font-weight: 700 !important;
}

em {
  font-style: italic !important;
}

.italic {
  font-style: italic !important;
}

.font--400 {
  font-weight: 400 !important;
}

.font--300 {
  font-weight: 300 !important;
}

blockquote {
  background: #EDEDED;
  padding: 12px 16px;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  margin-left: 0;
  margin-right: 0;
}

blockquote * {
  color: var(--black-100);
}

blockquote:before {
  content: '';
  width: 100%;
  max-width: 4px;
  background: var(--primary-color);
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
  margin-top: 33px;
  margin-bottom: 0;
}

.wysiwyg-content h1:first-child,
.wysiwyg-content h2:first-child,
.wysiwyg-content h3:first-child,
.wysiwyg-content h4:first-child,
.wysiwyg-content h5:first-child,
.wysiwyg-content h6:first-child {
  margin-top: 0;
}

.wysiwyg-content p,
.wysiwyg-content ul,
.wysiwyg-content ol,
.wysiwyg-content blockquote {
  margin-top: 12px;
  margin-bottom: 0;
}

.wysiwyg-content blockquote:before {
  background: var(--black-100);
}

.wysiwyg-content p:first-child,
.wysiwyg-content ul:first-child,
.wysiwyg-content ol:first-child,
.wysiwyg-content blockquote:first-child {
  margin-top: 0;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
}

.wysiwyg-content .wp-block-image {
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

.wysiwyg-content .wp-block-image .wp-element-caption {
  text-align: center;

}

.button-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  border: solid 1px #EEC433;
  background: #EEC433;
  padding: 24px 32px;
  border-radius: 200px;
  text-transform: uppercase;
  transition: all 200ms ease;
  display: block;
  width: fit-content;
  min-width: 209px;
}

.btn.btn-outline {
  color: #fff;
  border: solid 1px #fff;
  background: transparent;
  display: flex;
  gap: 8px;
  align-items: center;
}
