/*
	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: 1216px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
@media (max-width: 768px) {
  .custom-container {
    padding: 0 24px;
  }
}
.custom-container.custom-container-lg {
  padding: 0;
}
.custom-container.custom-container-lg .section-content {
  padding: 96px 24px 96px 24px;
}
@media (max-width: 768px) {
  .custom-container.custom-container-lg .section-content {
    padding: 48px 24px;
  }
}

.section-last {
  position: relative;
  background: #171B1D;
}
.section-last .custom-container {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-last .section-last-footer {
  background-image: url("../images/headline-red-line.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #888A8D;
}
.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: 16px;
}
.section-last .btns a svg {
  display: block;
  width: 40px;
}
.section-last .btns a svg rect {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-last .btns a:hover svg rect {
  fill: #F03225;
}
.section-last .links {
  padding: 16px 0;
  border-bottom: 1px solid #888A8D;
}
.section-last .links a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.28px;
  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;
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-last .links a:hover {
  opacity: 0.7;
}
.section-last .links a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #888A8D;
}
.section-last .links a:last-child {
  padding-right: 0;
  margin-right: 0;
}
.section-last .links a:last-child:before {
  display: none;
}
.section-last .sources {
  margin-top: 32px;
  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='%23F03225'/%3E%3Cpath d='M17.4319 17.4326H14.5674V32.0003H17.4319V17.4326Z' fill='%23F03225'/%3E%3Cpath d='M32.0003 14.5674H17.4326V17.4319H32.0003V14.5674Z' fill='%23F03225'/%3E%3Cpath d='M14.5677 14.5674H0V17.4319H14.5677V14.5674Z' fill='%23F03225'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: right bottom;
}
.section-last .sources p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.28px;
  margin: 0;
}
@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-red-line-mobile.png");
  }
  .section-last .custom-container {
    padding: 48px 40px;
  }
  .section-last .section-last-footer {
    padding-top: 64px;
    display: block;
    padding-bottom: 48px;
  }
  .section-last .section-last-footer .btns {
    margin-top: 32px;
  }
  .section-last .sources {
    margin-top: 48px;
  }
}

#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);
}
#sm-header.no-menu .logo {
  margin-left: 0;
}
@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;
  }
  #sm-header.no-menu .left {
    width: auto;
  }
  #sm-header.no-menu .right {
    display: block;
  }
}

@-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;
  }
}
@-webkit-keyframes smoothWaveLong {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  /* Pause for the second half of the animation */
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes smoothWaveLong {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  /* Pause for the second half of the animation */
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
section .btn-arrow {
  border-radius: 36px;
  background: #000000;
  padding: 14px 40px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
}
section .btn-arrow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #FFFFFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}
section .btn-arrow span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.56px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section .btn-arrow span svg {
  display: block;
  width: 20px;
}
section .btn-arrow span svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
section .btn-arrow.red-hover:before {
  background: #F03225;
}
@media (min-width: 1024px) {
  section .btn-arrow:hover:before {
    width: 100%;
  }
  section .btn-arrow:hover span {
    color: #000000;
  }
  section .btn-arrow:hover span svg path {
    stroke: #000000;
  }
  section .btn-arrow:hover.red-hover span {
    color: #ffffff;
  }
  section .btn-arrow:hover.red-hover span svg path {
    stroke: #ffffff;
  }
}
section .btn-arrow.btn-red {
  background: #F03225;
}
section .btn-arrow.btn-outline {
  background: transparent;
  -webkit-box-shadow: inset 0 0 0 1px #FFFFFF;
  box-shadow: inset 0 0 0 1px #FFFFFF;
  cursor: pointer;
}
section.section-last {
  margin-bottom: 0;
}
section.black-bg {
  background: #000000;
}
section.black-bg .section-content {
  background: #000000;
}
section.light-grey {
  background: #E2E2DC;
}
section .intro-text {
  padding-top: 16px;
  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.black {
  background-image: url("../images/headline-black-line.png");
}
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 .intro-text.mb-96 {
  margin-bottom: 96px;
}
section .intro-text.mt-96 {
  margin-top: 96px;
}
section .h2-wrapper {
  position: relative;
}
section .h2-wrapper p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
section .h2-wrapper p.red {
  color: #F03225;
}
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 .plus-pattern {
  position: absolute;
  left: -32px;
  top: 0;
  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='%23F03225'/%3E%3Cpath d='M17.4319 17.4323H14.5674V32H17.4319V17.4323Z' fill='%23F03225'/%3E%3Cpath d='M32.0003 14.5677H17.4326V17.4323H32.0003V14.5677Z' fill='%23F03225'/%3E%3Cpath d='M14.5677 14.5677H0V17.4323H14.5677V14.5677Z' fill='%23F03225'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 32px;
  width: 32px;
}
section .h2-wrapper.pt-32 {
  padding-top: 32px;
}
section .h2-wrapper.mb-64 {
  margin-bottom: 64px;
}
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 .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: 16px;
  margin: 0;
}
section .block-content .boxes-wrapper .box-item {
  width: calc(25% - 12px);
  background: #171B1D;
  position: relative;
}
section .block-content .boxes-wrapper .box-item .box-item-line {
  padding: 24px 24px 40px 24px;
  height: 100%;
  position: relative;
}
section .block-content .boxes-wrapper .box-item .box-item-line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #F03225;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section .block-content .boxes-wrapper .box-item .fw-cta {
  position: absolute;
  z-index: 99;
  font-size: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
@media (min-width: 1024px) {
  section .block-content .boxes-wrapper .box-item .fw-cta:hover + .box-item-line .cta-arrow {
    color: #000000;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  section .block-content .boxes-wrapper .box-item .fw-cta:hover + .box-item-line .cta-arrow:before {
    opacity: 1;
  }
  section .block-content .boxes-wrapper .box-item .fw-cta:hover + .box-item-line .cta-arrow:after {
    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.669434L34.6078 8.00473L26.9238 15.34' stroke='%23000000' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M0 8.00464H34.5679' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E");
  }
  section .block-content .boxes-wrapper .box-item .fw-cta:hover + .box-item-line:before {
    width: 100%;
  }
}
section .block-content .boxes-wrapper .box-item .box-item-wrapper {
  height: 100%;
  position: relative;
  padding-bottom: 24px;
}
section .block-content .boxes-wrapper .box-item .box-item-icon {
  padding: 8px;
  margin: 0 0 32px 0;
}
section .block-content .boxes-wrapper .box-item .box-item-icon svg {
  width: 24px;
  display: block;
}
section .block-content .boxes-wrapper .box-item .cta-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #F03225;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  letter-spacing: 1.92px;
  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 .block-content .boxes-wrapper .box-item .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.669434L34.6078 8.00473L26.9238 15.34' stroke='%23F03225' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M0 8.00464H34.5679' stroke='%23F03225' 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 .block-content .boxes-wrapper .box-item .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 .block-content .boxes-wrapper .box-item .cta-arrow:hover:before {
  opacity: 1;
}
section .block-content .boxes-wrapper .box-item .cta-arrow:hover:after {
  right: 0;
}
section .block-content .boxes-wrapper .box-item h5 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 20px;
  font-weight: 600;
  line-height: 110%; /* 22px */
  letter-spacing: -0.8px;
  margin: 0 0 8px 0;
}
section .block-content .boxes-wrapper .box-item p {
  color: #E2E2DC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
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.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: 1228px) {
  section .h2-wrapper {
    padding-top: 20px;
  }
  section .h2-wrapper .plus-pattern {
    width: 20px;
    left: -20px;
    height: 20px;
  }
}
@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 .block-content .boxes-wrapper .box-item {
    width: calc(50% - 8px);
  }
}
@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 .intro-text.mb-144 {
    margin-bottom: 72px;
  }
  section .intro-text {
    background-image: url("../images/headline-white-line-mobile.png");
  }
  section .intro-text.black {
    background-image: url("../images/headline-black-line-mobile.png");
  }
  section .intro-text .description {
    display: none;
  }
  section .intro-text.mb-96 {
    margin-bottom: 48px;
  }
  section .intro-text.mt-96 {
    margin-top: 48px;
  }
  section .h2-wrapper h2 {
    font-size: 32px;
  }
  section .h2-wrapper p {
    font-size: 14px;
  }
  section .h2-wrapper .red-pattern {
    display: none;
  }
  section .h2-wrapper.mb-96 {
    margin-bottom: 48px;
  }
  section .block-content h6.red {
    font-size: 14px;
    letter-spacing: 1.68px;
    margin: 16px 0;
  }
  section .block-content .boxes-wrapper .box-item {
    width: 100%;
  }
  section .block-content .boxes-wrapper .box-item .box-item-wrapper {
    padding-bottom: 48px;
  }
  section .block-content .boxes-wrapper .box-item h5 {
    font-size: 20px;
  }
  section .block-content .boxes-wrapper .box-item p {
    font-size: 14px;
  }
  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: 120px 0 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;
  padding: 32px 0;
  border-top: 1px solid #ffffff;
}
.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 p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  margin: 48px 0;
  max-width: 600px;
}
.section1 h5 {
  margin: 0 0 24px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  position: relative;
}
.section1 h5:before {
  content: "";
  position: absolute;
  left: -32px;
  top: -32px;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='33' viewBox='0 0 32 33' fill='none'%3E%3Cpath d='M17.4319 0.5H14.5674V15.0677H17.4319V0.5Z' fill='black'/%3E%3Cpath d='M17.4319 17.9323H14.5674V32.5H17.4319V17.9323Z' fill='black'/%3E%3Cpath d='M32.0003 15.0677H17.4326V17.9323H32.0003V15.0677Z' fill='black'/%3E%3Cpath d='M14.5677 15.0677H0V17.9323H14.5677V15.0677Z' fill='black'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
.section1 h1 {
  color: #FFF;
  font-family: "aktiv-grotesk-extended";
  margin: 0;
  position: relative;
  z-index: 99;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 70.4px */
  letter-spacing: -2.56px;
}
@media (max-width: 1228px) {
  .section1 h5:before {
    width: 20px;
    height: 20px;
    left: -20px;
    top: -20px;
  }
}
@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 h1 {
    max-width: 320px;
  }
  .section1 h1 br {
    display: none;
  }
  .section1 h5:before {
    left: -20px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  .section1 p {
    font-size: 16px;
    letter-spacing: 0.32px;
    margin: 32px 0;
  }
  .section1 .btn-arrow {
    width: 100%;
  }
  .section1::before {
    content: "";
    top: 82px;
    bottom: 54px;
    background-image: url("../images/mast-pattern-mobile.png");
    background-size: auto 100%;
    background-position: right;
  }
  .section1 .section-content .hero-footer {
    padding: 18px 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: 12px;
    letter-spacing: 1.44px;
  }
  .section1 .section-content .hero-footer .scroll-indicator {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .section1 .section-content .hero-footer .scroll-indicator .scroll-arrow svg {
    width: 16px;
    height: 16px;
  }
}

.section4 .tab-container {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 48px;
  margin: 48px 0;
  -webkit-box-shadow: inset 0 0 0 1px #000000;
  box-shadow: inset 0 0 0 1px #000000;
}
.section4 .tab-background {
  position: absolute;
  background: #1a1a1a;
  border-radius: 48px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.section4 .tab-button {
  position: relative;
  z-index: 2;
  padding: 14px 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 48px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
  color: #000000;
  font-family: "aktiv-grotesk-extended";
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.56px;
}
.section4 .tab-button span br {
  display: none;
}
.section4 .tab-button.active {
  color: #FFFFFF;
}
.section4 .tab-button:hover:not(.active) {
  color: #F03225;
}
.section4 .content-area {
  padding: 64px 80px;
  border-radius: 8px;
  background: #171B1D;
  -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);
  position: relative;
  overflow: hidden;
}
.section4 .content-area:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  background-image: url("../images/calc-pattern.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 330px auto;
  pointer-events: none;
  z-index: 1;
}
.section4 .tab-content {
  display: none;
  position: relative;
  z-index: 2;
}
.section4 .tab-content#safety > h2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M2.15126 22.55C1.95478 22.2097 1.95478 21.7903 2.15128 21.45L11.5995 5.08516C11.796 4.74482 12.1592 4.53516 12.5521 4.53516H31.4487C31.8416 4.53516 32.2047 4.74482 32.4013 5.08516L41.8495 21.45C42.0461 21.7903 42.0461 22.2097 41.8495 22.55L32.4013 38.9149C32.2047 39.2552 31.8416 39.4649 31.4487 39.4649H12.5521C12.1592 39.4649 11.796 39.2552 11.5995 38.9149L2.15126 22.55Z' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 14.6667V22.0001' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 29.3526L22.0192 29.3313' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 44px;
  background-repeat: no-repeat;
  background-position: top right;
}
.section4 .tab-content#transport > h2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M14.667 18.333H29.3337' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.833 25.667H14.6663' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M29.333 25.667H31.1663' stroke='%23F03225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 32.9999V20.9192C5.5 20.4227 5.60087 19.9312 5.79647 19.4749L10.0476 9.55555C10.6254 8.20737 11.951 7.33325 13.4178 7.33325H30.5822C32.0491 7.33325 33.3746 8.20737 33.9524 9.55555L38.2036 19.4749C38.3992 19.9312 38.5 20.4227 38.5 20.9192V32.9999M5.5 32.9999V37.3999C5.5 38.0075 5.99249 38.4999 6.6 38.4999H11.7333C12.3408 38.4999 12.8333 38.0075 12.8333 37.3999V32.9999M5.5 32.9999H12.8333M38.5 32.9999V37.3999C38.5 38.0075 38.0076 38.4999 37.4 38.4999H32.2667C31.6591 38.4999 31.1667 38.0075 31.1667 37.3999V32.9999M38.5 32.9999H31.1667M12.8333 32.9999H31.1667' stroke='%23F03225' stroke-width='2.5'/%3E%3C/svg%3E");
  background-size: 44px;
  background-repeat: no-repeat;
  background-position: top right;
}
.section4 .tab-content.active {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}
.section4 .tab-content h2 {
  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;
}
.section4 .tab-content .description {
  max-width: 515px;
}
.section4 .tab-content .description p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
  margin: 0;
}
.section4 .tab-content hr {
  padding: 0;
  margin: 48px 0;
  border: 0;
  border-bottom: 1px solid #888A8D;
}
.section4 .tab-content h3 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: -0.96px;
  text-transform: capitalize;
  margin: 0 0 32px 0;
}
.section4 .inputs-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section4 .inputs-section .input-group {
  width: calc(50% - 24px);
}
.section4 .inputs-section .input-group 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;
  display: block;
  width: 100%;
}
.section4 .inputs-section .input-group .helper-text {
  color: #E2E2DC;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
}
.section4 .inputs-section .input-group .helper-text a {
  text-decoration: none;
  color: inherit;
}
.section4 .inputs-section .input-group {
  /* Chrome, Safari, Edge, Opera */
}
.section4 .inputs-section .input-group input::-webkit-outer-spin-button,
.section4 .inputs-section .input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.section4 .inputs-section .input-group {
  /* Firefox */
}
.section4 .inputs-section .input-group input[type=number] {
  -moz-appearance: textfield;
}
.section4 .inputs-section .input-group input,
.section4 .inputs-section .input-group select {
  border-radius: 4px;
  background: #000000;
  padding: 15px 16px;
  margin: 0 0 8px 0;
  width: 100%;
  border: 0;
  outline: none !important;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  font-family: "aktiv-grotesk", sans-serif;
}
.section4 .inputs-section .input-group input:focus,
.section4 .inputs-section .input-group select:focus {
  -webkit-box-shadow: inset 0 0 0 1px #E2E2DC;
  box-shadow: inset 0 0 0 1px #E2E2DC;
}
.section4 .inputs-section .input-group select {
  padding: 15px 64px 15px 16px;
  /* Reset. */
  border: unset;
  /* Style */
  width: 100%;
  /* Arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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='M6 9L12 15L18 9' stroke='%23E2E2DC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
}
.section4 .see-results {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.section4 .see-results .copy {
  padding-left: 36px;
  position: relative;
}
.section4 .see-results .copy .animate-arrow {
  position: absolute;
  left: 10px;
  top: 0;
  height: 20px;
  -webkit-animation: smoothWaveLong 1.5s ease-in-out infinite;
  animation: smoothWaveLong 1.5s ease-in-out infinite;
}
.section4 .see-results .copy .animate-arrow svg {
  width: 12px;
  display: block;
}
.section4 .see-results .copy h3 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 24px;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: -0.96px;
  text-transform: capitalize;
  margin: 0 0 2px 0;
}
.section4 .see-results .copy p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
  margin: 0;
}
.section4 .reset-cta {
  margin: 48px 0;
}
.section4 .md-copy {
  color: #E2E2DC;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
}
.section4 .md-copy strong {
  display: block;
  margin: 0 0 4px 0;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
}
.section4 .md-copy.mt-24 {
  margin-top: 24px;
}
.section4 .md-copy.capitalize-copy {
  text-transform: capitalize;
}
.section4 .reset {
  border-radius: 36px;
  background: transparent;
  border: 1px solid #FFFFFF;
  padding: 14px 40px;
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 14px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.56px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.section4 .reset:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section4 .reset span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .section4 .reset:hover:before {
    width: 100%;
  }
  .section4 .reset:hover span {
    color: #000000;
  }
}
.section4 .results-section {
  border-radius: 4px;
  background: #000000;
  padding: 64px 48px;
}
.section4 .results-section .svg-icon {
  margin: 0 0 24px 0;
}
.section4 .results-section .svg-icon svg {
  display: block;
  width: 24px;
}
.section4 .results-section .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.section4 .results-section .cols .cols-col {
  width: calc(50% - 24px);
}
.section4 .results-section h3.red {
  color: #F03225;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
  text-transform: capitalize;
  margin: 0 0 16px 0;
}
.section4 .results-section hr {
  border: 0;
  border-top: 1px solid #888A8D;
  background: transparent;
  color: transparent;
  margin: 32px 0;
}
.section4 .results-section p {
  color: #E2E2DC;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  margin: 0;
}
.section4 .results-section .mb-32 {
  margin: 0 0 32px 0;
}
.section4 .results-section .md-no {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 32px;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  letter-spacing: -1.28px;
  margin: 0 0 8px 0;
}
.section4 .results-section .md-no.mt-16 {
  margin-top: 16px;
}
.section4 .results-section .sm-copy {
  color: #E2E2DC;
  font-size: 10px;
  font-weight: 400;
  line-height: 160%; /* 16px */
  letter-spacing: 0.2px;
}
.section4 .results-section .sm-copy.i {
  font-style: italic;
}
.section4 .results-section .d-f-j {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section4 .results-section .d-f-j:last-child {
  margin: 0;
}
.section4 .results-section .d-f-j > span {
  color: #E2E2DC;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.section4 .results-section .d-f-j > span b {
  font-weight: 600;
  color: #FFFFFF;
}
.section4 .results-section .d-f-j > span:last-child {
  text-align: right;
  white-space: nowrap;
}
.section4 .results-section .d-f-j #finalTotal {
  font-weight: 600;
  color: #FFFFFF;
}
.section4 .results-section .big-number {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  font-size: 64px;
  font-weight: 700;
  line-height: 99%; /* 71.28px */
  letter-spacing: -2.88px;
  margin: 0 0 16px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section4 .tab-content-footer {
  padding: 48px 16px 48px 48px;
}
.section4 .tab-content-footer hr {
  margin: 40px 0;
}
.section4 .tab-content-footer .disclaimer {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
}
.section4 .tab-content-footer .disclaimer b {
  font-weight: 600;
}
.section4 .tab-content-footer .tcf-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.section4 .tab-content-footer .tcf-cols .h2-wrapper {
  max-width: 500px;
}
.section4 .tab-content-footer .tcf-cols .tcf-col:first-child {
  width: 100%;
}
.section4 .tab-content-footer .tcf-cols .tcf-col:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.section4 .tab-content-footer .tcf-cols .tcf-col .btn-arrow {
  margin-bottom: 16px;
  min-width: 308px;
}
.section4 .tab-content-footer .tcf-cols .tcf-col .btn-arrow:last-child {
  margin: 0;
}
.section4 .tab-content-footer .h2-wrapper h2 {
  color: #FFFFFF;
  font-family: "aktiv-grotesk-extended";
  line-height: 110%; /* 44px */
}
.section4 .tab-content-footer .h2-wrapper p {
  color: #E2E2DC;
  font-size: 16px;
  letter-spacing: 0.32px;
  margin: 0;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.section4 .custom-container.custom-container-lg .section-content {
  padding: 120px 24px 120px 24px;
}
.section4 .h2-wrapper h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  line-height: 99%; /* 39.6px */
  letter-spacing: -1.6px;
  max-width: 700px;
  margin: 0 0 16px 0;
}
.section4 .h2-wrapper .description {
  color: #171B1D;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  max-width: 530px;
  margin: 0;
  text-transform: initial;
}
@media (max-width: 1216px) {
  .section4 .results-section .big-number {
    font-size: 56px;
  }
}
@media (max-width: 1024px) {
  .section4 .content-area {
    padding: 48px 24px;
  }
  .section4 .results-section {
    padding: 48px 24px;
  }
  .section4 .results-section .cols {
    gap: 24px;
  }
  .section4 .results-section .cols .cols-col {
    width: calc(50% - 12px);
  }
  .section4 .results-section .big-number {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .section4 .see-results {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0 48px 0;
  }
  .section4 .see-results > div {
    width: 100%;
  }
  .section4 .see-results button {
    width: 100%;
  }
  .section4 .see-results .copy {
    padding-left: 0;
    padding-right: 32px;
  }
  .section4 .see-results .copy .animate-arrow {
    left: auto;
    right: 10px;
  }
  .section4 .see-results .copy h3 {
    font-size: 20px;
    letter-spacing: -0.96px;
    margin: 0 0 6px 0;
  }
  .section4 .see-results .copy p {
    font-size: 12px;
    line-height: 120%; /* 14.4px */
    letter-spacing: 0.24px;
  }
  .section4 .content-area:before {
    background-size: 220px auto;
    width: 100%;
  }
  .section4 .custom-container.custom-container-lg .section-content {
    padding: 64px 24px 4px 24px;
  }
  .section4 .h2-wrapper h2 {
    font-size: 32px;
  }
  .section4 .h2-wrapper .description {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
  .section4 .tab-container {
    width: 100%;
  }
  .section4 .tab-container .tab-button {
    width: 50%;
    white-space: inherit;
    padding: 15px 12px;
    font-size: 12px;
    line-height: 112%;
    letter-spacing: -0.48px;
  }
  .section4 .tab-container .tab-button span br {
    display: block;
  }
  .section4 .content-area {
    padding: 40px 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .section4 .tab-content h2 {
    font-size: 30px;
    background-size: 40px !important;
    padding-right: 40px;
  }
  .section4 .tab-content .description {
    padding-right: 92px;
  }
  .section4 .tab-content hr {
    margin: 24px 0;
  }
  .section4 .inputs-section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
  }
  .section4 .inputs-section .input-group {
    width: 100%;
  }
  .section4 .reset-cta {
    margin: 0;
  }
  .section4 .tab-content-footer {
    padding: 32px 0 0 0;
  }
  .section4 .tab-content-footer .plus-pattern {
    display: none;
  }
  .section4 .tab-content-footer .tcf-cols {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 48px;
  }
  .section4 .tab-content-footer .tcf-cols h2 {
    font-size: 32px;
  }
  .section4 .tab-content-footer .tcf-cols p {
    font-size: 14px;
    padding: 0;
  }
  .section4 .tab-content-footer .tcf-cols .tcf-col .btn-arrow {
    width: 100%;
  }
  .section4 .results-section {
    padding: 40px 16px;
  }
  .section4 .results-section .cols {
    gap: 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section4 .results-section .cols .cols-col {
    width: 100%;
  }
}

.fw-image-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 112px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 48px 0;
}
.fw-image-section > div {
  width: 50%;
}
.fw-image-section .fw-image {
  overflow: hidden;
}
.fw-image-section .fw-image .fw-image-wrapper {
  position: relative;
}
.fw-image-section .fw-image .fw-image-wrapper img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.fw-image-section .fw-image .fw-image-wrapper:before, .fw-image-section .fw-image .fw-image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 2;
  left: -100%;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.fw-image-section .fw-image .fw-image-wrapper:before {
  background: #171B1D;
}
.fw-image-section .fw-image .fw-image-wrapper:after {
  background: #F03225;
  z-index: 2;
}
.fw-image-section .fw-image.active .fw-image-wrapper img {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.fw-image-section .fw-image.active .fw-image-wrapper:before {
  left: 100%;
}
.fw-image-section .fw-image.active .fw-image-wrapper:after {
  left: calc(100% - 16px);
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.fw-image-section .fw-copy {
  max-width: 552px;
}
.fw-image-section .fw-copy .h2-wrapper h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  line-height: 99%; /* 39.6px */
  letter-spacing: -1.6px;
  margin: 0 0 24px 0;
}
.fw-image-section .fw-copy p:not(.red) {
  color: #171B1D;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  margin: 0 0 40px 0;
  max-width: 486px;
}
.fw-image-section .fw-copy h6 {
  color: #171B1D;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
  margin: 0 0 8px 0;
}
.fw-image-section .fw-copy ul {
  padding: 0;
  margin: 0 0 40px 0;
}
.fw-image-section .fw-copy ul li {
  list-style: none;
  position: relative;
  padding-left: 13px;
  color: #171B1D;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
  margin: 0 0 8px 0;
}
.fw-image-section .fw-copy ul li:last-child {
  margin: 0;
}
.fw-image-section .fw-copy ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #F03225;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .fw-image-section {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .fw-image-section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px 24px 64px 0;
  }
  .fw-image-section > div {
    width: 100%;
  }
  .fw-image-section .fw-copy {
    padding: 0 0 0 24px;
  }
  .fw-image-section .fw-copy .h2-wrapper h2 {
    font-size: 32px;
    letter-spacing: -1.28px;
  }
  .fw-image-section .fw-copy p:not(.red) {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
  .fw-image-section .btn-arrow {
    width: 100%;
  }
}

/* red-section */
section.red-section .custom-container-lg .section-content {
  background: transparent;
  padding-bottom: 96px;
}
section.red-section .custom-container-lg .section-content .chapter-heading {
  min-height: 1px;
  padding: 96px 0 48px 0;
}
section.red-section .custom-container-lg .section-content .chapter-heading p {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
section.red-section .intro-text p {
  color: #000000;
}
section.red-section .h1 {
  font-family: "aktiv-grotesk-extended";
  font-size: 56px;
  font-weight: 600;
  line-height: 102%; /* 57.12px */
  letter-spacing: -2.24px;
  color: #fff;
  margin: 0;
}
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% - 32px);
  position: relative;
  padding: 32px 0 48px 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 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: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.18px;
  margin: 0;
  max-width: 335px;
}
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(50% - 8px);
    padding-left: 24px;
    background-size: 24px;
  }
  section.red-section .copy-ctas .copy-cta p {
    font-size: 16px;
    max-width: 100%;
  }
  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: 48px;
  }
  section.red-section .custom-container-lg .section-content .chapter-heading {
    padding: 48px 0;
  }
  section.red-section .custom-container-lg .section-content .chapter-heading p {
    font-size: 14px;
    letter-spacing: 1.68px;
  }
  section.red-section .custom-container-lg .section-content .chapter-heading .h1 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  section.red-section .copy-ctas {
    gap: 48px;
  }
  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 p {
    font-size: 14px;
  }
  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 */
