@charset "UTF-8";
/*
	Theme Name: Website Name
	Theme URI: http://www.WebsiteName.com
	Description: Website Name WordPress Theme
	Version: 1.0.0
	Author: Redonk Marketing
	Author URI: http://www.redonkmarketing.com
	Tags: Website Name

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
.icon-toggle {
  width: 48px;
  height: 48px;
  background: #F03225;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  border-radius: 14px;
  right: 22px;
  bottom: 22px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.35);
  z-index: 999;
}
.icon-toggle:hover {
  background: #000000;
}
.icon-toggle:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.icon-toggle.active .icon-expand path:nth-child(1) {
  -webkit-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  opacity: 0;
}
.icon-toggle.active .icon-expand path:nth-child(2) {
  -webkit-transform: translate(-15px, 15px);
  transform: translate(-15px, 15px);
  opacity: 0;
}
.icon-toggle.active .icon-expand path:nth-child(3) {
  -webkit-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  opacity: 0;
}
.icon-toggle.active .icon-expand path:nth-child(4) {
  -webkit-transform: translate(-15px, 15px);
  transform: translate(-15px, 15px);
  opacity: 0;
}
.icon-toggle.active .icon-compress path:nth-child(1) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-toggle.active .icon-compress path:nth-child(2) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-toggle.active .icon-compress path:nth-child(3) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-toggle.active .icon-compress path:nth-child(4) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
@media (max-width: 1440px) {
  .icon-toggle {
    display: none;
  }
}

.icon-container {
  position: relative;
  width: 22px;
  height: 22px;
}

.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  color: white;
}
.icon path {
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-expand path:nth-child(1) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-expand path:nth-child(2) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-expand path:nth-child(3) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.icon-expand path:nth-child(4) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.icon-compress path:nth-child(1) {
  -webkit-transform: translate(-15px, 15px);
  transform: translate(-15px, 15px);
  opacity: 0;
}
.icon-compress path:nth-child(2) {
  -webkit-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  opacity: 0;
}
.icon-compress path:nth-child(3) {
  -webkit-transform: translate(-15px, 15px);
  transform: translate(-15px, 15px);
  opacity: 0;
}
.icon-compress path:nth-child(4) {
  -webkit-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  opacity: 0;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 99999;
  padding: 48px;
}

.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
}

/* Modal Container */
.modal-container {
  background-color: #171B1D;
  border-radius: 8px;
  width: 100%;
  max-width: 1168px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 16px 48px 0 rgba(11, 14, 47, 0.16);
  box-shadow: 0 16px 48px 0 rgba(11, 14, 47, 0.16);
}

.modal-overlay.active .modal-container {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Close Button */
.close-modal {
  background: transparent;
  position: sticky;
  top: 0px;
  left: 0px;
  padding: 0;
  border: none;
  border-radius: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  background: #171B1D;
}

.close-modal:hover {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* Modal Content */
.modal-content {
  padding: 24px 64px 80px 64px;
  position: relative;
  color: white;
}
.modal-content .success-message {
  display: none;
}
.modal-content h3 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 40px;
  font-weight: 600;
  line-height: 110%; /* 44px */
  letter-spacing: -1.6px;
  margin: 0 0 16px 0;
}
.modal-content p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
  margin: 0;
}

/* Background pattern */
.modal-content::before {
  content: "";
  position: absolute;
  top: -56px;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/form-pattern.png");
  background-repeat: no-repeat;
  background-size: 350px 382px;
  background-position: right top;
  pointer-events: none;
  z-index: 0;
}

.modal-inner {
  position: relative;
  z-index: 1;
}

.form-wrapper {
  margin-top: 48px;
}
.form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.form-wrapper .form-row .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form-wrapper .form-row .form-group.full-width {
  grid-column: 1/-1;
}
.form-wrapper .form-row label {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
  text-transform: capitalize;
  margin: 0 0 8px 0;
}
.form-wrapper .form-row input,
.form-wrapper .form-row textarea {
  background-color: #000000;
  border: 0;
  border-radius: 4px;
  padding: 15px 16px;
  font-family: "aktiv-grotesk", sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-wrapper .form-row input::-webkit-input-placeholder, .form-wrapper .form-row textarea::-webkit-input-placeholder {
  color: #888A8D;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.form-wrapper .form-row input::-moz-placeholder, .form-wrapper .form-row textarea::-moz-placeholder {
  color: #888A8D;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.form-wrapper .form-row input:-ms-input-placeholder, .form-wrapper .form-row textarea:-ms-input-placeholder {
  color: #888A8D;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.form-wrapper .form-row input::-ms-input-placeholder, .form-wrapper .form-row textarea::-ms-input-placeholder {
  color: #888A8D;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.form-wrapper .form-row input::placeholder,
.form-wrapper .form-row textarea::placeholder {
  color: #888A8D;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.form-wrapper .form-row input:focus,
.form-wrapper .form-row textarea:focus {
  outline: none;
  background-color: #000000;
}
.form-wrapper .form-row textarea {
  min-height: 112px;
  resize: vertical;
}
.form-wrapper .form-row .helper-text {
  color: #E2E2DC;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
  margin-top: 8px;
}

.submit-wrapper {
  margin-top: 48px;
}
.submit-wrapper .submit-btn {
  background: #F03225;
  border: none;
  border-radius: 36px;
  padding: 14px 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.56px;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.submit-wrapper .submit-btn span {
  position: relative;
  z-index: 2;
}
.submit-wrapper .submit-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 0;
  bottom: 0px;
  top: 0;
  background: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
}
.submit-wrapper .submit-btn:hover {
  color: #000000;
}
.submit-wrapper .submit-btn:hover::before {
  width: 100%;
}
.submit-wrapper .submit-btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.submit-wrapper .disclaimer {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
  margin-top: 16px;
}

/* Scrollbar styling */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: #2a2a2a;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #4a4a4a;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 24px;
  }
  .modal-content {
    padding: 12px 20px 40px 20px;
  }
  .modal-content::before {
    display: none;
  }
  .form-wrapper .form-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

body {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 18px;
  line-height: 160%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #F03225;
}
body.full-width .custom-container {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.custom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 768px) {
  .custom-container {
    padding: 0 24px;
  }
}
.custom-container.custom-container-lg {
  padding: 0 12px;
}
.custom-container.custom-container-lg .section-content {
  padding: 64px 68px 68px 68px;
}
@media (max-width: 768px) {
  .custom-container.custom-container-lg {
    padding: 0 4px;
  }
  .custom-container.custom-container-lg .section-content {
    padding: 32px 20px;
  }
}

.section-last {
  position: relative;
}
.section-last::before {
  content: "";
  position: absolute;
  top: 0;
  height: 416px;
  width: 352px;
  right: 0;
  background-image: url("../images/footer-pattern.png");
  background-size: auto 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
.section-last .custom-container {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-last h2 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 88px;
  font-weight: 600;
  line-height: 102%; /* 89.76px */
  letter-spacing: -3.52px;
  margin: 0 0 48px 0;
  position: relative;
  z-index: 2;
}
.section-last .cta-arrow {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  letter-spacing: 2.16px;
  text-transform: uppercase;
  padding: 0;
  padding-right: 66px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.section-last .cta-arrow:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='16' viewBox='0 0 36 16' fill='none'%3E%3Cpath d='M26.9238 0.669922L34.6078 8.00522L26.9238 15.3405' stroke='black' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M0 8.00586H34.5679' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-last .cta-arrow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 66px;
  bottom: -2px;
  height: 2px;
  border-bottom: 2px solid #000;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-last .cta-arrow:hover:before {
  opacity: 1;
}
.section-last .cta-arrow:hover:after {
  right: 0;
}
.section-last .section-last-footer {
  background-image: url("../images/headline-black-line.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 96px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0 32px 0;
  border-bottom: 1px solid #000000;
}
.section-last .section-last-footer .logo img {
  display: block;
  width: 163px;
}
.section-last .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}
.section-last .btns .cta {
  border-radius: 48px;
  border: 1px solid #000;
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.section-last .btns .cta b {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.56px;
  position: relative;
  z-index: 3;
}
.section-last .btns .cta svg {
  display: block;
  width: 20px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 8px;
}
.section-last .btns .cta svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-last .btns .cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-last .btns .cta:hover b {
  color: #FFFFFF;
}
.section-last .btns .cta:hover svg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.section-last .btns .cta:hover svg path {
  stroke: #F03225;
}
.section-last .btns .cta:hover::before {
  height: 100%;
}
.section-last .btns .cta.cta-share {
  position: relative;
}
.section-last .btns .cta.cta-share span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  padding: 0;
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  background: #F03225;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.section-last .btns .cta.cta-share span b svg {
  display: block;
  margin: -4px auto 0 auto;
  width: 16px;
  height: auto;
  -webkit-transform: none !important;
  transform: none !important;
}
.section-last .btns .cta.cta-share span b svg path {
  stroke: #ffffff !important;
}
.section-last .btns .cta.cta-share span b {
  font-weight: 400;
  line-height: 100%;
}
.section-last .btns .cta.cta-share.copied span {
  opacity: 1;
  pointer-events: auto;
}
.section-last .sources {
  margin-top: 32px;
}
.section-last .sources p {
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.24px;
  margin: 0 0 4px 0;
}
.section-last .sources ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.section-last .sources ul li {
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.24px;
  padding-bottom: 4px;
}
.section-last .sources ul li sup {
  font-size: 8px;
  line-height: 140%;
  vertical-align: super;
}
.section-last .sources ul li a {
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-last .sources ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .section-last::before {
    height: 230px;
  }
  .section-last h2 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}
@media (max-width: 768px) {
  .section-last .section-last-footer {
    background-image: url("../images/headline-black-line-mobile.png");
  }
  .section-last .custom-container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-last .cta-arrow {
    max-width: 270px;
    display: inline-block;
  }
  .section-last .section-last-footer {
    margin-top: 48px;
    display: block;
    padding-bottom: 24px;
  }
  .section-last .section-last-footer .btns {
    margin-top: 24px;
  }
  .section-last .sources {
    margin-top: 24px;
  }
}

#sm-header {
  background: #F03225;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
#sm-header .custom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#sm-header .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
#sm-header .logo {
  margin-left: 25px;
}
#sm-header .logo img {
  display: block;
  max-width: 123px;
  width: 100%;
}
#sm-header .sm-menu {
  padding: 24px;
  background: #F03225;
  border-top: 4px solid #000000;
  position: absolute;
  left: 0;
  top: 53px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
}
#sm-header .sm-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#sm-header .sm-menu ul li {
  margin-bottom: 12px;
}
#sm-header .sm-menu ul li:last-child {
  margin-bottom: 0;
}
#sm-header .sm-menu ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%; /* 20px */
  letter-spacing: 0.32px;
  white-space: nowrap;
  padding-right: 44px;
  position: relative;
  display: inline-block;
}
#sm-header .sm-menu ul li a:before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 36px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='16' viewBox='0 0 36 16' fill='none'%3E%3Cg clip-path='url(%23clip0_589_3593)'%3E%3Cpath d='M26.9233 0.669434L34.6073 8.00473L26.9233 15.34' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M0 8.00464H34.5679' stroke='white' stroke-width='2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_589_3593'%3E%3Crect width='36' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0;
}
#sm-header .sm-menu ul li a span {
  display: inline-block;
  padding: 1px 0;
  position: relative;
}
#sm-header .sm-menu ul li a span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}
@media (min-width: 1024px) {
  #sm-header .sm-menu ul li a:hover span {
    -webkit-animation: blink 0.3s ease-in-out;
    animation: blink 0.3s ease-in-out;
  }
  #sm-header .sm-menu ul li a:hover span::before {
    bottom: -2px;
    opacity: 1;
  }
  #sm-header .sm-menu ul li a:hover:before {
    opacity: 1;
    right: 0;
  }
}
@media (max-width: 1024px) {
  #sm-header .sm-menu ul li a::before {
    opacity: 1;
    right: 0;
  }
}
#sm-header .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}
#sm-header .btns .cta {
  border-radius: 48px;
  border: 1px solid #000;
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
}
#sm-header .btns .cta svg {
  display: block;
  width: 20px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#sm-header .btns .cta svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#sm-header .btns .cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#sm-header .btns .cta:hover svg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
#sm-header .btns .cta:hover svg path {
  stroke: #F03225;
}
#sm-header .btns .cta:hover::before {
  height: 100%;
}
#sm-header .btns .cta.cta-share {
  position: relative;
}
#sm-header .btns .cta.cta-share span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  padding: 0;
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  background: #F03225;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
#sm-header .btns .cta.cta-share span b svg {
  display: block;
  margin: -4px auto 0 auto;
  width: 16px;
  height: auto;
  -webkit-transform: none !important;
  transform: none !important;
}
#sm-header .btns .cta.cta-share span b svg path {
  stroke: #ffffff !important;
}
#sm-header .btns .cta.cta-share span b {
  font-weight: 400;
  line-height: 100%;
}
#sm-header .btns .cta.cta-share.copied span {
  opacity: 1;
  pointer-events: auto;
}
#sm-header .sm-hamburger {
  height: 24px;
  width: 24px;
  padding: 0 3px;
  margin-left: -3px;
  cursor: pointer;
}
#sm-header .sm-hamburger span {
  background: #000000;
  border-radius: 2px;
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  margin-top: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#sm-header .sm-hamburger span::before, #sm-header .sm-hamburger span::after {
  background: #000000;
  border-radius: 2px;
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#sm-header .sm-hamburger span::before {
  margin-top: -6px;
}
#sm-header .sm-hamburger span::after {
  margin-top: 6px;
}
#sm-header.menu-open .sm-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: initial;
}
#sm-header.menu-open .sm-hamburger span {
  background: transparent;
}
#sm-header.menu-open .sm-hamburger span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#sm-header.menu-open .sm-hamburger span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  #sm-header .custom-container {
    padding: 0 24px;
  }
  #sm-header .logo {
    margin-left: 16px;
  }
  #sm-header .left {
    width: 100%;
  }
  #sm-header .right {
    display: none;
  }
  #sm-header .sm-menu {
    top: 44px;
    left: -24px;
    width: calc(100% + 48px);
    -webkit-box-shadow: 0 32px 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 32px 40px 0 rgba(0, 0, 0, 0.15);
  }
  #sm-header .sm-menu ul li a {
    font-size: 14px;
  }
}

@-webkit-keyframes smoothWave {
  0% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.7;
  }
}

@keyframes smoothWave {
  0% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.7;
  }
}
section {
  margin-bottom: 12px;
}
section.section-last {
  margin-bottom: 0;
}
section.black-bg .section-content {
  border-radius: 8px;
  background: #000000;
}
section.chapter .section-content {
  border-radius: 8px;
  padding: 40px 68px 0 68px;
  background: #E2E2DC;
}
section.chapter .section-content .intro-text {
  background-image: url("../images/headline-black-line.png");
}
section.chapter .custom-container-lg .section-content {
  padding: 40px 68px 0 68px;
}
section.chapter .chapter-heading {
  min-height: 50vh;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 72px 0;
}
section.chapter .h1 {
  color: #000;
  font-family: "aktiv-grotesk-extended";
  font-size: 88px;
  font-weight: 600;
  line-height: 102%; /* 89.76px */
  letter-spacing: -3.52px;
  margin: 0;
}
section.chapter .chapter-footer {
  padding: 16px 0 56px 0;
  border-top: 1px solid #0E0C16;
  background-image: url("../images/chapter-footer-pattern.png");
  background-repeat: no-repeat;
  background-size: 100% 16px;
  background-position: center bottom;
}
section.chapter .chapter-footer p {
  color: #0E0C16;
  font-size: 32px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
section .intro-text {
  padding-top: 40px;
  background-image: url("../images/headline-white-line.png");
  background-repeat: no-repeat;
  background-size: 100% 16px;
  background-position: center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section .intro-text p {
  color: #F03225;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin: 0;
}
section .intro-text.mb-144 {
  margin-bottom: 144px;
}
section .h2-wrapper {
  position: relative;
}
section .h2-wrapper h2 {
  color: #FFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 64px;
  font-weight: 600;
  line-height: 100%; /* 63.36px */
  letter-spacing: -2.56px;
  margin: 0;
}
section .h2-wrapper .red-pattern {
  position: absolute;
  right: -64px;
  bottom: 0;
  width: 200px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='15' viewBox='0 0 200 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_376_11295)'%3E%3Crect x='8' width='1' height='16' transform='rotate(30 8 0)' fill='%23F03225'/%3E%3Crect x='76' width='1' height='16' transform='rotate(30 76 0)' fill='%23F03225'/%3E%3Crect x='42' width='1' height='16' transform='rotate(30 42 0)' fill='%23F03225'/%3E%3Crect x='110' width='1' height='16' transform='rotate(30 110 0)' fill='%23F03225'/%3E%3Crect x='25' width='1' height='16' transform='rotate(30 25 0)' fill='%23F03225'/%3E%3Crect x='93' width='1' height='16' transform='rotate(30 93 0)' fill='%23F03225'/%3E%3Crect x='59' width='1' height='16' transform='rotate(30 59 0)' fill='%23F03225'/%3E%3Crect x='127' width='1' height='16' transform='rotate(30 127 0)' fill='%23F03225'/%3E%3Crect x='144' width='1' height='16' transform='rotate(30 144 0)' fill='%23F03225'/%3E%3Crect x='178' width='1' height='16' transform='rotate(30 178 0)' fill='%23F03225'/%3E%3Crect x='161' width='1' height='16' transform='rotate(30 161 0)' fill='%23F03225'/%3E%3Crect x='195' width='1' height='16' transform='rotate(30 195 0)' fill='%23F03225'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_376_11295'%3E%3Crect width='200' height='14.3564' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
section .h2-wrapper.mb-48 {
  margin-bottom: 48px;
}
section .h2-wrapper.mb-96 {
  margin-bottom: 96px;
}
section .h2-wrapper.mb-72 {
  margin-bottom: 72px;
}
section .h2-wrapper.mt-144 {
  margin-top: 144px;
}
section .fw-img {
  display: block;
  width: 100%;
}
section .fw-img.mb-48 {
  margin-bottom: 48px;
}
section .fw-img img {
  display: block;
  width: 100%;
}
section .padding-block {
  padding-left: 400px;
  position: relative;
}
section .padding-block.pt-32 {
  padding-top: 32px;
}
section .padding-block.mt-144 {
  margin-top: 144px;
}
section .padding-block.mt-96 {
  margin-top: 96px;
}
section .padding-block.mt-48 {
  margin-top: 48px;
}
section .padding-block .plus-pattern {
  position: absolute;
  left: -68px;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='448' height='32' viewBox='0 0 448 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_376_11331)'%3E%3Crect x='8' y='8.82178' width='1' height='16' transform='rotate(30 8 8.82178)' fill='%23F03225'/%3E%3Crect x='76' y='8.82178' width='1' height='16' transform='rotate(30 76 8.82178)' fill='%23F03225'/%3E%3Crect x='42' y='8.82178' width='1' height='16' transform='rotate(30 42 8.82178)' fill='%23F03225'/%3E%3Crect x='110' y='8.82178' width='1' height='16' transform='rotate(30 110 8.82178)' fill='%23F03225'/%3E%3Crect x='25' y='8.82178' width='1' height='16' transform='rotate(30 25 8.82178)' fill='%23F03225'/%3E%3Crect x='93' y='8.82178' width='1' height='16' transform='rotate(30 93 8.82178)' fill='%23F03225'/%3E%3Crect x='59' y='8.82178' width='1' height='16' transform='rotate(30 59 8.82178)' fill='%23F03225'/%3E%3Crect x='127' y='8.82178' width='1' height='16' transform='rotate(30 127 8.82178)' fill='%23F03225'/%3E%3Crect x='144' y='8.82178' width='1' height='16' transform='rotate(30 144 8.82178)' fill='%23F03225'/%3E%3Crect x='212' y='8.82178' width='1' height='16' transform='rotate(30 212 8.82178)' fill='%23F03225'/%3E%3Crect x='178' y='8.82178' width='1' height='16' transform='rotate(30 178 8.82178)' fill='%23F03225'/%3E%3Crect x='246' y='8.82178' width='1' height='16' transform='rotate(30 246 8.82178)' fill='%23F03225'/%3E%3Crect x='161' y='8.82178' width='1' height='16' transform='rotate(30 161 8.82178)' fill='%23F03225'/%3E%3Crect x='229' y='8.82178' width='1' height='16' transform='rotate(30 229 8.82178)' fill='%23F03225'/%3E%3Crect x='195' y='8.82178' width='1' height='16' transform='rotate(30 195 8.82178)' fill='%23F03225'/%3E%3Crect x='263' y='8.82178' width='1' height='16' transform='rotate(30 263 8.82178)' fill='%23F03225'/%3E%3Crect x='279.934' y='8.82178' width='1' height='16' transform='rotate(30 279.934 8.82178)' fill='%23F03225'/%3E%3Crect x='347.934' y='8.82178' width='1' height='16' transform='rotate(30 347.934 8.82178)' fill='%23F03225'/%3E%3Crect x='313.934' y='8.82178' width='1' height='16' transform='rotate(30 313.934 8.82178)' fill='%23F03225'/%3E%3Crect x='381.934' y='8.82178' width='1' height='16' transform='rotate(30 381.934 8.82178)' fill='%23F03225'/%3E%3Crect x='296.934' y='8.82178' width='1' height='16' transform='rotate(30 296.934 8.82178)' fill='%23F03225'/%3E%3Crect x='364.934' y='8.82178' width='1' height='16' transform='rotate(30 364.934 8.82178)' fill='%23F03225'/%3E%3Crect x='330.934' y='8.82178' width='1' height='16' transform='rotate(30 330.934 8.82178)' fill='%23F03225'/%3E%3Crect x='398.934' y='8.82178' width='1' height='16' transform='rotate(30 398.934 8.82178)' fill='%23F03225'/%3E%3C/g%3E%3Cg clip-path='url(%23clip1_376_11331)'%3E%3Cpath d='M433.432 0H430.567V14.5677H433.432V0Z' fill='%23F03225'/%3E%3Cpath d='M433.432 17.4323H430.567V32H433.432V17.4323Z' fill='%23F03225'/%3E%3Cpath d='M448 14.5677H433.433V17.4323H448V14.5677Z' fill='%23F03225'/%3E%3Cpath d='M430.568 14.5677H416V17.4323H430.568V14.5677Z' fill='%23F03225'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_376_11331'%3E%3Crect width='400' height='14.3564' fill='white' transform='translate(0 8.82178)'/%3E%3C/clipPath%3E%3CclipPath id='clip1_376_11331'%3E%3Crect width='32' height='32' fill='white' transform='translate(416)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  height: 32px;
  width: 452px;
}
section .padding-block .plus-pattern.no-line {
  background-image: url("data:image/svg+xml,%3Csvg width='448' height='32' viewBox='0 0 448 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_719_4254' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='416' y='0' width='32' height='32'%3E%3Cpath d='M448 0H416V32H448V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_719_4254)'%3E%3Cpath d='M433.432 0H430.567V14.5677H433.432V0Z' fill='%23F03225'/%3E%3Cpath d='M433.432 17.4316H430.567V31.9993H433.432V17.4316Z' fill='%23F03225'/%3E%3Cpath d='M448 14.5684H433.433V17.4329H448V14.5684Z' fill='%23F03225'/%3E%3Cpath d='M430.568 14.5684H416V17.4329H430.568V14.5684Z' fill='%23F03225'/%3E%3C/g%3E%3C/svg%3E%0A");
}
section .padding-block .re-pattern {
  position: absolute;
  left: 0;
  top: 0;
  color: #F03225;
  font-size: 16px;
  font-weight: 700;
  line-height: 99%; /* 15.84px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
  padding: 0 0 24px 0;
  width: 400px;
}
section .padding-block .re-pattern::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: #F03225;
}
section .padding-block .re-pattern::after {
  content: "";
  position: absolute;
  left: -2px;
  width: 6px;
  height: 6px;
  bottom: 6px;
  border-radius: 50%;
  background: #F03225;
}
section .padding-block .re-pattern.re-pattern-shorter {
  width: 384px;
}
section .block-content p {
  color: #E2E2DC;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  margin: 0 0 24px 0;
}
section .block-content p.mw-789 {
  max-width: 798px;
}
section .block-content p:last-child {
  margin-bottom: 0;
}
section .block-content p a {
  color: #F03225;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
section .block-content p a:hover {
  opacity: 0.7;
}
section .block-content p a sup {
  font-size: 12px;
  line-height: 0;
  position: relative;
  top: -0.1em;
}
section .block-content hr {
  border: 0;
  border-top: 1px solid #888A8D;
  background: transparent;
  color: transparent;
  margin: 48px 0;
}
section .block-content h6 {
  color: #FFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 99%; /* 23.76px */
  letter-spacing: -0.48px;
  margin: 0 0 16px 0;
}
section .block-content h6.red {
  color: #F03225;
  margin: 24px 0;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 99%; /* 15.84px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
section .block-content h6.red.mt-48 {
  margin-top: 48px;
}
section .block-content .boxes-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 0 0;
}
section .block-content .boxes-wrapper .box-item {
  width: calc(50% - 12px);
  border-left: 4px solid #F03225;
  background: #171B1D;
  padding: 40px 40px 40px 48px;
}
section .block-content .boxes-wrapper .box-item.box-item-transparent {
  background: transparent;
  padding: 0 0 0 16px;
  border-left: 1px solid #F03225;
}
section .block-content .boxes-wrapper .box-item .testimonial {
  padding-top: 72px;
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='32' viewBox='0 0 43 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.93582 14.0802C4.14861 12.0983 4.72211 10.5165 5.72229 9.11622C7.06087 7.24233 9.30366 5.49515 13.0185 3.63764C13.9669 3.16353 14.3513 2.01027 13.8771 1.06181C13.4029 0.11334 12.2496 -0.271164 11.3012 0.203196C7.33612 2.18563 4.45898 4.2784 2.5976 6.88445C0.701178 9.53938 3.8147e-06 12.5261 3.8147e-06 16.0002V27.5201C3.8147e-06 29.9942 2.00576 32 4.47994 32H14.7198C17.194 32 19.1997 29.9942 19.1997 27.5201V18.5602C19.1997 16.086 17.194 14.0802 14.7198 14.0802H3.93582Z' fill='%23F03225'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27.1356 14.0802C27.3483 12.0983 27.9219 10.5165 28.922 9.11622C30.2606 7.24233 32.5034 5.49515 36.2182 3.63764C37.1666 3.16353 37.5511 2.01027 37.0768 1.06181C36.6026 0.11334 35.4494 -0.271164 34.5009 0.203196C30.5359 2.18563 27.6587 4.2784 25.7973 6.88445C23.9009 9.53938 23.1997 12.5261 23.1997 16.0002V27.5201C23.1997 29.9942 25.2055 32 27.6797 32H37.9195C40.3937 32 42.3995 29.9942 42.3995 27.5201V18.5602C42.3995 16.086 40.3937 14.0802 37.9195 14.0802H27.1356Z' fill='%23F03225'/%3E%3C/svg%3E%0A");
  background-size: auto 32px;
  background-repeat: no-repeat;
  background-position: left top;
}
section .block-content .boxes-wrapper .box-item .testimonial h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  margin: 0 0 24px 0;
  position: relative;
}
section .block-content .boxes-wrapper .box-item .testimonial h3 span {
  color: #F03225;
}
section .block-content .boxes-wrapper .box-item .testimonial h3.quote:before {
  position: absolute;
  left: -14px;
  top: 0;
  content: "“";
}
section .block-content .boxes-wrapper .box-item .testimonial p {
  line-height: 160%; /* 28.8px */
}
section .block-content .boxes-wrapper .box-item h5 {
  color: #F03225;
  font-family: "aktiv-grotesk-extended";
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.72px;
  border-bottom: 2px solid #E2E2DC;
  display: inline-block;
  margin: 0 0 32px 0;
  padding-bottom: 4px;
}
section .block-content .boxes-wrapper .box-item h5.big-no {
  color: #FFF;
  font-size: 48px;
  font-weight: 600;
  line-height: 99%; /* 47.52px */
  letter-spacing: -0.96px;
  border: 0;
  margin: 0 0 16px 0;
  padding-bottom: 0;
}
section .block-content .boxes-wrapper .box-item p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.18px;
}
section .block-content .boxes-wrapper .box-item p b {
  font-weight: 700;
}
section .block-content .boxes-wrapper .box-item h3 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 32px;
  font-weight: 600;
  line-height: 99%; /* 31.68px */
  letter-spacing: -0.64px;
  margin: 0 0 24px 0;
}
section .block-content .boxes-wrapper .box-item .action-item {
  padding: 40px 40px 40px 88px;
  background-color: #E2E2DC;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_376_11544)'%3E%3Cpath d='M12 11.5V16.5' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 7.51013L12.01 7.49902' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_376_11544'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 40px 40px;
  margin-top: 48px;
  min-width: calc(100% + 18px);
}
section .block-content .boxes-wrapper .box-item .action-item h4 {
  color: #F03225;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 700;
  line-height: 99%; /* 23.76px */
  letter-spacing: -0.48px;
  margin: 0 0 16px 0;
}
section .block-content .boxes-wrapper .box-item .action-item p {
  color: #0E0C16;
  letter-spacing: 0.18px !important;
}
section .block-content .boxes-wrapper .box-item.p-72 {
  padding: 72px;
  width: 100%;
}
section .block-content .boxes-wrapper .box-item.p-72 p {
  letter-spacing: 0.36px;
}
section .block-content .boxes-wrapper.boxes-wrapper-w-3 {
  gap: 32px;
}
section .block-content .boxes-wrapper.boxes-wrapper-w-3 .box-item {
  width: calc(33.33333% - 24px);
}
section .block-content .boxes-wrapper.boxes-wrapper-w-3.boxes-wrapper-w-4 {
  gap: 48px;
}
section .block-content .boxes-wrapper.boxes-wrapper-w-3.boxes-wrapper-w-4 .box-item {
  width: calc(50% - 24px);
}
section .block-content .boxes-wrapper.boxes-wrapper-w-3.boxes-wrapper-w-4 .box-item p {
  line-height: 160%;
  max-width: 340px;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows {
  gap: 64px;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item {
  width: calc(33.33333% - 42.86px);
  padding: 48px 40px;
  position: relative;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item:after {
  content: "";
  position: absolute;
  right: -64px;
  top: 0;
  width: 64px;
  height: 100%;
  background-image: url("../images/boxes-arrows.png");
  background-repeat: no-repeat;
  background-size: 48px auto;
  background-position: center;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item:last-child:after {
  display: none;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item .title {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 32px;
  font-weight: 600;
  line-height: 99%; /* 31.68px */
  letter-spacing: -0.64px;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item ul li {
  position: relative;
  padding-left: 16px;
  color: #E2E2DC;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #888A8D;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: #F03225;
  border-radius: 50%;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 {
  margin-top: 24px;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item {
  width: calc(50% - 12px);
  padding: 48px;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .title {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 32px;
  font-weight: 600;
  line-height: 99%; /* 31.68px */
  letter-spacing: -0.64px;
  margin: 0 0 64px 0;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid .grid-item {
  width: calc(50% - 20px);
  padding-left: 24px;
  padding-top: 40px;
  border-left: 1px solid #888A8D;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.17218 14.8287L12.0006 12.0003M12.0006 12.0003L14.829 9.17188M12.0006 12.0003L9.17218 9.17188M12.0006 12.0003L14.829 14.8287' stroke='%23888A8D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23888A8D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 24px top;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid .grid-item p {
  line-height: 160%;
  letter-spacing: 0.36px;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid .grid-item p.pr-20 {
  padding-right: 20px;
}
section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid.custom-4-grid-red .grid-item {
  border-left: 1px solid #F03225;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23' fill='none'%3E%3Cpath d='M6.70831 11.9788L9.58331 14.8538L16.2916 8.14551' stroke='%23F03225' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.5 21.0837C16.7927 21.0837 21.0834 16.793 21.0834 11.5003C21.0834 6.20759 16.7927 1.91699 11.5 1.91699C6.20729 1.91699 1.91669 6.20759 1.91669 11.5003C1.91669 16.793 6.20729 21.0837 11.5 21.0837Z' stroke='%23F03225' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
section .block-content .boxes-wrapper.boxes-wrapper-3 {
  margin-top: 24px;
}
section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item {
  width: calc(33.3333% - 16px);
  padding: 56px 48px;
}
section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item p {
  letter-spacing: 0.36px;
}
section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item a {
  color: #F03225;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item a:hover {
  opacity: 0.7;
}
section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item a sup {
  font-size: 12px;
  line-height: 0;
  position: relative;
  top: -0.1em;
}
section .block-content.pt-16 {
  padding-top: 16px;
}
section .block-content.pl-16 {
  padding-left: 16px;
}
section .list-w-numbers {
  margin-top: 48px;
}
section .list-w-numbers.mt-96 {
  margin-top: 96px;
}
section .list-w-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
}
section .list-w-numbers li {
  margin-bottom: 49px;
  padding-bottom: 48px;
  position: relative;
  border-bottom: 1px solid #888A8D;
}
section .list-w-numbers li .no {
  color: #F03225;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 99%; /* 23.76px */
  letter-spacing: -0.48px;
  position: absolute;
  left: -50px;
  top: 0;
}
section .list-w-numbers li h5 {
  color: #FFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 99%; /* 23.76px */
  letter-spacing: -0.48px;
  margin: 0 0 16px 0;
}
section .list-w-numbers li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1260px) {
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item {
    padding: 48px 32px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item .title {
    font-size: 22px;
    letter-spacing: -0.56px;
  }
}
@media (max-width: 1024px) {
  section.chapter .h1 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  section .h2-wrapper h2 {
    font-size: 48px;
  }
  section .h2-wrapper.mt-144 {
    margin-top: 72px;
  }
  section .h2-wrapper.mb-72 {
    margin-bottom: 48px;
  }
  section .padding-block {
    padding-left: 200px;
  }
  section .padding-block .plus-pattern {
    width: 252px;
  }
  section .padding-block .re-pattern {
    width: 200px;
  }
  section .padding-block .re-pattern.re-pattern-shorter {
    width: 184px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item {
    width: 100%;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows {
    gap: 48px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item {
    padding: 48px 24px;
    width: calc(33.333333% - 32px);
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item .title {
    font-size: 22px;
    letter-spacing: -0.56px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item:after {
    right: -48px;
    width: 48px;
    background-size: 32px auto;
  }
}
@media (max-width: 768px) {
  section.chapter .custom-container-lg .section-content {
    padding: 32px 20px 0 20px;
  }
  section.chapter .chapter-heading.hide-br-mobile h2 br {
    display: none;
  }
  section.chapter .section-content {
    padding: 32px 20px 0 20px;
  }
  section.chapter .section-content .intro-text {
    background-image: url("../images/headline-black-line-mobile.png");
  }
  section.chapter .chapter-footer {
    background-image: url("../images/chapter-footer-pattern-mobile.png");
  }
  section.chapter .chapter-footer p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
  }
  section .intro-text.mb-144 {
    margin-bottom: 72px;
  }
  section .intro-text {
    background-image: url("../images/headline-white-line-mobile.png");
  }
  section .intro-text .description {
    display: none;
  }
  section .h2-wrapper h2 {
    font-size: 40px;
  }
  section .h2-wrapper .red-pattern {
    display: none;
  }
  section .h2-wrapper.mb-96 {
    margin-bottom: 48px;
  }
  section .padding-block {
    padding-left: 0;
  }
  section .padding-block.pt-32 {
    padding-top: 0;
  }
  section .padding-block.mt-96 {
    margin-top: 48px;
  }
  section .padding-block .plus-pattern {
    display: none;
  }
  section .padding-block .re-pattern {
    position: relative;
    margin-bottom: 12px;
    padding-left: 8px;
    padding-top: 4px;
    padding-bottom: 18px;
    width: 100%;
  }
  section .padding-block .re-pattern::before {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }
  section .padding-block .re-pattern::after {
    top: 0;
    left: -2px;
  }
  section .padding-block p {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
  section .padding-block .boxes-wrapper {
    margin-top: -8px;
    gap: 16px;
  }
  section .padding-block .boxes-wrapper .box-item {
    width: 100%;
    padding: 40px 32px 40px 36px;
    border-left: 2px solid #F03225;
  }
  section .padding-block .boxes-wrapper .box-item p {
    font-size: 18px;
  }
  section .padding-block .boxes-wrapper .box-item.p-72 {
    padding: 40px 32px 40px 36px;
  }
  section .padding-block .boxes-wrapper .box-item.p-72 h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  section .padding-block .boxes-wrapper .box-item.p-72 p {
    font-size: 16px;
  }
  section .padding-block .boxes-wrapper .box-item .action-item {
    padding: 64px 20px 24px 20px;
    background-position: 20px 24px;
    min-width: 100%;
  }
  section .padding-block .boxes-wrapper .box-item .action-item h4 {
    font-size: 20px;
  }
  section .padding-block.mt-144 {
    margin-top: 72px;
  }
  section .block-content h6.red {
    font-size: 14px;
    letter-spacing: 1.68px;
    margin: 16px 0;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-3 {
    margin-top: 16px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item {
    width: 100%;
    padding: 40px 32px 40px 36px;
    border-left: 2px solid #F03225;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item h5.big-no {
    color: #FFFFFF;
    font-size: 36px;
    letter-spacing: -0.72px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-3 .box-item p {
    font-size: 16px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-w-3 .box-item {
    width: 100%;
    padding-bottom: 10px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-w-3 .box-item p {
    font-size: 16px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-w-3.boxes-wrapper-w-4 .box-item {
    width: 100%;
    padding-bottom: 10px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-w-3.boxes-wrapper-w-4 .box-item p {
    font-size: 16px;
    max-width: 100%;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item {
    padding: 40px 32px 40px 36px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .title {
    font-size: 24px;
    letter-spacing: -0.48px;
    margin-bottom: 32px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid .grid-item {
    width: 100%;
    padding-left: 12px;
    background-position: left 12px top;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-2 .box-item .custom-4-grid .grid-item p {
    font-size: 16px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows {
    gap: 64px;
    margin-top: 24px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item {
    padding: 40px 32px 40px 36px;
    width: 100%;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item .title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item h5 {
    margin-bottom: 48px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item ul li {
    font-size: 16px;
    letter-spacing: 0.16px;
  }
  section .block-content .boxes-wrapper.boxes-wrapper-arrows .box-item:after {
    right: 0;
    bottom: -64px;
    height: 64px;
    width: 100%;
    top: auto;
    background-size: auto 48px;
    background-image: url("../images/boxes-arrows-vertical.png");
  }
  section .list-w-numbers li {
    padding-left: 50px;
  }
  section .list-w-numbers li .no {
    left: 0;
  }
  section .list-w-numbers.mt-96 {
    margin-top: 48px;
  }
}

/* SECTION 1 */
.section1 {
  position: relative;
}
.section1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 82px;
  right: 0;
  bottom: 97px;
  background-image: url("../images/mast-pattern.png");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.section1 .section-content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.section1 .section-content .hero-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
}
.section1 .section-content .hero-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 32px 0;
  border-top: 1px solid #0E0C16;
}
.section1 .section-content .hero-footer .scroll-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section1 .section-content .hero-footer .scroll-indicator .scroll-arrow {
  padding-left: 8px;
  -webkit-animation: smoothWave 2.5s ease-in-out infinite;
  animation: smoothWave 2.5s ease-in-out infinite;
}
.section1 .section-content .hero-footer .scroll-indicator .scroll-arrow svg {
  display: block;
  width: 32px;
}
.section1 .section-content .hero-footer .publish-date,
.section1 .section-content .hero-footer span {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.section1 h5 {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 2.88px;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}
.section1 h1 {
  color: #FFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 72px;
  font-weight: 600;
  line-height: 110%; /* 79.2px */
  letter-spacing: -2.88px;
  margin: 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 1024px) {
  .section1 h5 {
    font-size: 14px;
    letter-spacing: 1.68px;
  }
  .section1 h1 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}
@media (max-width: 768px) {
  .section1::before {
    content: "";
    top: 82px;
    bottom: 97px;
    background-image: url("../images/mast-pattern-mobile.png");
    background-size: auto 100%;
    background-position: right;
  }
  .section1 .section-content .hero-footer {
    padding: 16px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
  .section1 .section-content .hero-footer > div {
    width: 100%;
  }
  .section1 .section-content .hero-footer .publish-date,
  .section1 .section-content .hero-footer span {
    font-size: 14px;
    letter-spacing: 1.68px;
  }
  .section1 .section-content .hero-footer .scroll-indicator {
    border-top: 1px solid #0E0C16;
    padding-top: 16px;
    margin-top: 16px;
  }
  .section1 .section-content .hero-footer .scroll-indicator .scroll-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* red-section */
section.red-section .custom-container-lg .section-content {
  background: transparent;
  padding-bottom: 120px;
}
section.red-section .custom-container-lg .section-content .chapter-heading {
  min-height: 1px;
  padding: 120px 0;
}
section.red-section .intro-text p {
  color: #000000;
}
section.red-section .h1 {
  color: #fff;
}
section.red-section .chapter-footer {
  border-top: 0 !important;
  padding: 0 !important;
}
section.red-section .copy-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
section.red-section .copy-ctas .copy-cta {
  width: calc(50% - 24px);
  position: relative;
  padding: 30px 0 72px 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M17.4319 0H14.5674V14.5677H17.4319V0Z' fill='black'/%3E%3Cpath d='M17.4319 17.4316H14.5674V31.9994H17.4319V17.4316Z' fill='black'/%3E%3Cpath d='M32.0003 14.5684H17.4326V17.4329H32.0003V14.5684Z' fill='black'/%3E%3Cpath d='M14.5677 14.5684H0V17.4329H14.5677V14.5684Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 32px;
}
section.red-section .copy-ctas .copy-cta > * {
  max-width: 600px;
}
section.red-section .copy-ctas .copy-cta h3 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 110%; /* 26.4px */
  letter-spacing: -0.48px;
  margin: 0 0 16px 0;
  max-width: 260px;
}
section.red-section .copy-ctas .copy-cta p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.18px;
}
section.red-section .copy-ctas .copy-cta .cta-arrow {
  position: absolute;
  left: 40px;
  bottom: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  letter-spacing: 2.16px;
  text-transform: uppercase;
  padding-right: 66px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 0;
  background: transparent;
  padding-left: 0;
  text-align: left;
  cursor: pointer;
}
section.red-section .copy-ctas .copy-cta .cta-arrow:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='16' viewBox='0 0 36 16' fill='none'%3E%3Cpath d='M26.9238 0.669922L34.6078 8.00522L26.9238 15.3405' stroke='black' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M0 8.00586H34.5679' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
section.red-section .copy-ctas .copy-cta .cta-arrow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 66px;
  bottom: -2px;
  height: 2px;
  border-bottom: 2px solid #000;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.red-section .copy-ctas .copy-cta .cta-arrow:hover:before {
  opacity: 1;
}
section.red-section .copy-ctas .copy-cta .cta-arrow:hover:after {
  right: 0;
}
@media (max-width: 1124px) {
  section.red-section .copy-ctas .copy-cta .cta-arrow {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  section.red-section .copy-ctas {
    gap: 12px;
  }
  section.red-section .copy-ctas .copy-cta {
    width: calc(33.3333% - 8px);
    padding-left: 24px;
    background-size: 24px;
  }
  section.red-section .copy-ctas .copy-cta p {
    font-size: 16px;
  }
  section.red-section .copy-ctas .copy-cta .cta-arrow {
    font-size: 12px;
    left: 24px;
  }
}
@media (max-width: 768px) {
  section.red-section .custom-container-lg .section-content {
    padding-bottom: 64px;
  }
  section.red-section .custom-container-lg .section-content .chapter-heading {
    padding: 64px 0;
  }
  section.red-section .copy-ctas {
    gap: 64px;
  }
  section.red-section .copy-ctas .copy-cta {
    width: 100%;
    padding-bottom: 56px;
    padding-left: 40px;
    background-size: 32px;
  }
  section.red-section .copy-ctas .copy-cta .cta-arrow {
    font-size: 16px;
    left: 40px;
  }
}

/* charcoal-section */
section.charcoal-section .section-content {
  padding-top: 72px;
  background: #171B1D !important;
  position: relative;
}
section.charcoal-section .section-content::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  right: 0;
  background-image: url("../images/team-pattern.png");
  background-size: auto 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
section.charcoal-section .section-content .chapter-heading {
  min-height: 1px;
  padding: 104px 0 0 0;
}
section.charcoal-section .section-content .h1 {
  color: #FFF;
  font-size: 64px;
  font-weight: 600;
  line-height: 110%; /* 70.4px */
  letter-spacing: -2.56px;
  max-width: 908px;
  position: relative;
  z-index: 2;
}
section.charcoal-section .section-content .h1 span {
  color: #F03225;
}
section.charcoal-section .section-content .chapter-footer {
  border-top: 0 !important;
  padding: 0 !important;
  background: none;
  min-width: calc(100% + 68px);
  width: calc(100% + 68px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 4;
}
section.charcoal-section .section-content .chapter-footer img {
  width: 100%;
  height: auto;
  max-width: 603px;
  margin-top: auto;
}
section.charcoal-section .section-content .chapter-footer .copy-ctas {
  padding-top: 64px;
}
section.charcoal-section .section-content .chapter-footer .copy-cta {
  position: relative;
  padding: 30px 0 72px 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_376_12339)'%3E%3Cpath d='M17.4319 0H14.5674V14.5677H17.4319V0Z' fill='%23F03225'/%3E%3Cpath d='M17.4319 17.4316H14.5674V31.9994H17.4319V17.4316Z' fill='%23F03225'/%3E%3Cpath d='M32.0003 14.5684H17.4326V17.4329H32.0003V14.5684Z' fill='%23F03225'/%3E%3Cpath d='M14.5677 14.5684H0V17.4329H14.5677V14.5684Z' fill='%23F03225'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_376_12339'%3E%3Crect width='32' height='32' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 32px;
  max-width: 600px;
  padding-right: 24px;
}
section.charcoal-section .section-content .chapter-footer .copy-cta p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
}
@media (max-width: 1024px) {
  section.charcoal-section .section-content .h1 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  section.charcoal-section .section-content .chapter-footer img {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  section.charcoal-section .chapter-heading {
    padding-top: 16px !important;
    min-height: 1px;
  }
  section.charcoal-section .section-content::before {
    height: 44%;
    top: auto;
    bottom: 0;
  }
  section.charcoal-section .section-content .h1 {
    font-size: 32px;
    letter-spacing: -1.28px;
  }
  section.charcoal-section .section-content .chapter-footer {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    min-width: calc(100% + 20px);
    max-width: calc(100% + 20px);
  }
  section.charcoal-section .section-content .chapter-footer img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  section.charcoal-section .section-content .chapter-footer .copy-ctas {
    padding-top: 32px;
  }
  section.charcoal-section .section-content .chapter-footer .copy-ctas .copy-cta {
    padding-bottom: 24px;
  }
  section.charcoal-section .section-content .chapter-footer .copy-ctas .copy-cta p {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */
