.profile-main-loader {
  left: 50% !important;
  margin-left: -100px;
  position: fixed !important;
  top: 50% !important;
  margin-top: -100px;
  width: 45px;
  z-index: 9000 !important;
}

.profile-main-loader-btn {
  position: absolute !important;
  z-index: 9000 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 53, 143, 0.8);
  display: flex;
  align-items: center;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  color: #2e358f;
}

.profile-main-loader .loader {
  position: relative;
  margin: 0px auto;
  width: 50px;
  height: 50px;
}

.profile-main-loader-btn .loader.btn {
  position: relative;
  margin: 0px auto;
  width: 30px;
  height: 30px;
}

.profile-main-loader-btn .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.profile-main-loader .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular-loader {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.loader-path {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color {
  0% {
    stroke: #ff9432;
  }
  40% {
    stroke: #ff9432;
  }
  66% {
    stroke: #ff9432;
  }
  80%, 90% {
    stroke: #ff9432;
  }
}
@keyframes color {
  0% {
    stroke: #ff9432;
  }
  40% {
    stroke: #ff9432;
  }
  66% {
    stroke: #ff9432;
  }
  80%, 90% {
    stroke: #ff9432;
  }
}
body {
  overflow-x: hidden;
}

.section-landing-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  /*.section-landing-background {
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	top: 0px;
  	left: 0px;
  	z-index: 1;
  	background-repeat: no-repeat;
  }*/
}
.section-landing-wrapper .section-landing-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 40px 120px 40px;
  z-index: 2;
}
.section-landing-wrapper .section-column-wrapper {
  position: relative;
  width: 100%;
  display: flex;
}
.section-landing-wrapper .section-column-wrapper .section-column {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
  flex-basis: auto;
}
.section-landing-wrapper .section-column-wrapper .section-column.vertical-top {
  justify-content: left;
}
.section-landing-wrapper .section-column-wrapper .section-column.col1 {
  width: 100%;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2-30 {
  width: 30%;
  flex-basis: 30%;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2-70 {
  width: 70%;
  flex-basis: 70%;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2-40 {
  width: 40%;
  flex-basis: 40%;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2-60 {
  width: 60%;
  flex-basis: 60%;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2 {
  width: 50%;
  line-height: 1;
}
.section-landing-wrapper .section-column-wrapper .section-column.col3 {
  width: 33.33334%;
}
.section-landing-wrapper .section-column-wrapper .section-column.left {
  align-items: flex-start;
}
.section-landing-wrapper .section-column-wrapper .section-column.center {
  align-items: center;
}
.section-landing-wrapper .section-column-wrapper .section-column.right {
  align-items: flex-end;
}

.section-landing-wrapper .section-column-wrapper .section-column .bullets .list-item .dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  background-color: #ff9432;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.section-landing-wrapper .section-column-wrapper .section-column .bullets .list-item .accept-challenge {
  color: #ff9432;
  font-weight: 700;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2 .member-login {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  line-height: 1;
}
.section-landing-wrapper .section-column-wrapper .section-column.col2 .member-login > .click-here {
  color: #ff9432;
}

.layout-1490 {
  max-width: 1490px;
  justify-content: center;
}

.layout-full {
  max-width: 1800px;
}

.section1 .section1-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section1 .section1-overlay.top {
  background-image: url("../images/theme/landing/member/section1/section1-top-wave.png");
  background-position: top left;
  z-index: 2;
}
.section1 .section1-overlay.under {
  background-image: url("../images/theme/landing/member/section1/landing_member_section1.jpg");
  background-position: bottom left;
  z-index: 1;
  background-color: #2e3691;
  background-blend-mode: multiply;
  background-size: cover;
}
.section1 .section1-overlay.bottom {
  background-image: url("../images/theme/landing/member/section1/section1-bottom-wave.png");
  background-position: bottom left;
  z-index: 2;
  /*background-size: 100% auto;*/
}
.section1 .form-landing-member {
  position: relative;
  padding-top: 40px;
  max-width: 700px;
}
.section1 .form-landing-member label {
  position: absolute;
}
.section1 .form-landing-member label span {
  color: #ff9432;
}
.section1 .form-landing-member input:focus,
.section1 .form-landing-member input:hover,
.section1 .form-landing-member input:active,
.section1 .form-landing-member input {
  border-width: 0px 0px 2px 0px !important;
  background-color: transparent !important;
  border-bottom: 2px solid #ff9432 !important;
  outline: none;
  padding: 12px 20px;
  font-size: 17px;
  height: auto;
  color: #ffffff !important;
  border-radius: 0px !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.section1 .form-landing-member input::-webkit-input-placeholder,
.section1 .form-landing-member input::-moz-placeholder,
.section1 .form-landing-member input::placeholder {
  color: #ffffff !important;
  opacity: 1;
}
.section1 .form-landing-member .with_frm_style .frm_submit {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit], .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button, .section1 .form-landing-member .frm_form_submit_style, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn {
  position: relative;
  display: block;
  background-color: #ff9432;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  min-width: 180px;
  min-height: 50px;
  cursor: pointer;
  margin: 0;
  border: none;
  box-shadow: none;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  -webkit-transition: background-color 0.15s linear, color 0.15s linear;
  -moz-transition: background-color 0.15s linear, color 0.15s linear;
  -ms-transition: background-color 0.15s linear, color 0.15s linear;
  -o-transition: background-color 0.15s linear, color 0.15s linear;
  transition: background-color 0.15s linear, color 0.15s linear;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message:visited, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit]:visited, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:visited, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button:visited, .section1 .form-landing-member .frm_form_submit_style:visited, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn:visited {
  border: none;
  background-color: #FF9432;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit]:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.active:not(.disabled) {
  background-color: #2e358f;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v1, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v1, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v1, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v1, .section1 .form-landing-member .frm_form_submit_style.v1, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v1 {
  min-width: 130px;
  background-color: #ff9432;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v1 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v1 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v1 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v1 i, .section1 .form-landing-member .frm_form_submit_style.v1 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v1 i {
  font-size: 20px;
  position: relative;
  margin-right: 10px;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v1:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v1:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v1:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v1:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v1:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v1:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v1:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v1:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v1:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v1:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v1:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v1:active:not(.disabled) {
  background-color: #2e358f;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v2, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v2, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v2, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v2, .section1 .form-landing-member .frm_form_submit_style.v2, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v2 {
  min-width: 130px;
  background-color: #f6f9f2;
  color: #2E358F;
  display: flex;
  align-items: center;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v2 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v2 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v2 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v2 i, .section1 .form-landing-member .frm_form_submit_style.v2 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v2 i {
  font-size: 20px;
  position: relative;
  margin-right: 10px;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v2:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v2:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v2:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v2:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v2:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v2:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v2:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v2:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v2:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v2:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v2:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v2:active:not(.disabled) {
  background-color: #E4E8F4;
  color: #2E358F;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v3, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v3, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v3, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v3, .section1 .form-landing-member .frm_form_submit_style.v3, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v3 {
  background-color: #ff9432;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v3:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v3:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v3:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v3:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v3:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v3:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v3:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v3:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v3:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v3:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v3:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v3:active:not(.disabled) {
  background-color: #2e358f;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v4, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v4, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v4, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v4, .section1 .form-landing-member .frm_form_submit_style.v4, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v4 {
  background-color: #ff9432;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v4:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v4:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v4:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v4:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v4:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v4:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v4:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v4:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v4:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v4:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v4:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v4:active:not(.disabled) {
  background-color: #E8EAF6;
  color: #2e358f;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v5, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v5, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v5, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v5, .section1 .form-landing-member .frm_form_submit_style.v5, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v5 {
  min-width: 130px;
  background-color: #E8EAF6;
  color: #2e358f;
  display: flex;
  align-items: center;
  text-transform: initial;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v5 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v5 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v5 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v5 i, .section1 .form-landing-member .frm_form_submit_style.v5 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v5 i {
  font-size: 20px;
  position: relative;
  margin-right: 10px;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v5:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v5:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v5:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v5:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v5:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v5:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v5:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v5:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v5:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v5:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v5:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v5:active:not(.disabled) {
  background-color: #ff9432;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v6, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v6, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v6, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v6, .section1 .form-landing-member .frm_form_submit_style.v6, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v6 {
  min-width: 130px;
  background-color: #ff9432;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-transform: initial;
  margin-left: 0px;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v6 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v6 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v6 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v6 i, .section1 .form-landing-member .frm_form_submit_style.v6 i, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v6 i {
  font-size: 20px;
  position: relative;
  margin-right: 10px;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v6:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.v6:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v6:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].v6:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v6:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].v6:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v6:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.v6:active:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v6:hover:not(.disabled), .section1 .form-landing-member .frm_form_submit_style.v6:active:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v6:hover:not(.disabled), .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.v6:active:not(.disabled) {
  background-color: #2e358f;
  color: #ffffff;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.disabled, .section1 .form-landing-member .frm_form_submit_style.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.disabled {
  border: none;
  background-color: #f1f1f1;
}
.section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.pinned, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message.pinned.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].pinned, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style input[type=submit].pinned.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].pinned, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit input[type=button].pinned.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.pinned, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm_submit button.pinned.disabled, .section1 .form-landing-member .frm_form_submit_style.pinned, .section1 .form-landing-member .frm_form_submit_style.pinned.disabled, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.pinned, .section1 .form-landing-member .frm_style_formidable-style.with_frm_style .frm-edit-page-btn.pinned.disabled {
  background-color: #2e358f;
  color: #ffffff;
  width: 80px;
  min-width: auto;
  display: inline-block;
  min-height: auto;
  padding: 4px 8px;
}
.section1 img {
  width: 171px;
}

.fit-5-40-5-logo {
  position: relative;
  background-image: url("../images/fithub.svg");
  background-size: contain;
  width: 400px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
}

p span {
  color: #ff9432;
}

.transform {
  margin-top: 160px;
  margin-bottom: 60px;
}
.transform > .section-column {
  padding: 0 40px;
}
.transform p {
  font-weight: 600;
}

.list-transform {
  position: relative;
  color: #ffffff;
  font-size: 18px;
}
.list-transform .list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.list-transform .text p {
  font-size: 20px;
}

p.join-text {
  font-size: 24px;
  font-weight: 600;
}

.section2 p.header {
  font-size: 48px;
  font-weight: 600;
  color: #2e358f;
}
.section2 p.header span {
  color: #ff9432;
}
.section2 .section-landing-content {
  padding: 20px 0px 20px 0px;
}
.section2 .section-column-wrapper {
  justify-content: center;
}
.section2 .section-column {
  align-items: center;
}
.section2 .icon-box-list {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 40px 0px;
  justify-content: space-between;
  width: 100%;
}
.section2 .icon-box-list .icon-box-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  align-items: center;
  max-width: 200px;
}
.section2 .icon-box-list .icon-box-item .icon {
  width: 160px;
  height: 160px;
  background-size: 160px;
  display: flex;
}
.section2 .icon-box-list .icon-box-item .icon.ic1 {
  background-image: url("../images/theme/landing/member/section2/icon1.svg");
}
.section2 .icon-box-list .icon-box-item .icon.ic2 {
  background-image: url("../images/theme/landing/member/section2/icon2.svg");
}
.section2 .icon-box-list .icon-box-item .icon.ic3 {
  background-image: url("../images/theme/landing/member/section2/icon3.svg");
}
.section2 .icon-box-list .icon-box-item .icon.ic4 {
  background-image: url("../images/theme/landing/member/section2/icon4.svg");
}
.section2 .icon-box-list .icon-box-item .icon.ic5 {
  background-image: url("../images/theme/landing/member/section2/icon5.svg");
}
.section2 .icon-box-list .icon-box-item .text {
  margin-top: 20px;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
}

.section3 {
  flex-direction: column;
}
.section3 .section3-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section3 .section3-overlay.top {
  background-image: url("../images/theme/landing/member/section2/section2-background-top.png");
  background-position: top left;
  z-index: 2;
  position: relative;
  height: 175px;
}
.section3 .section3-overlay.under {
  background-position: bottom left;
  z-index: 1;
  background-color: #2e3691;
  background-size: cover;
  top: 175px;
  height: calc(100% - 199px - 175px);
}
.section3 .section3-overlay.bottom {
  background-image: url("../images/theme/landing/member/section2/section2-background-bottom.png");
  background-position: bottom left;
  z-index: 2;
  position: relative;
  height: 199px;
  z-index: 1;
}
.section3 p.header {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 100px;
  padding: 20px 20px;
}
.section3 .section-landing-content {
  padding: 80px 0px 40px 0px;
  z-index: 4;
}
.section3 .section-column-wrapper {
  justify-content: center;
}
.section3 .section-column-wrapper.before {
  justify-content: space-between;
}
.section3 .section-column {
  align-items: center;
}
.section3 .section-media {
  position: relative;
  max-width: 100%;
}
.section3 .section-media img {
  max-width: 100%;
  max-height: 100%;
}
.section3 .section-media p {
  padding: 20px;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}

.section4 p.header {
  font-size: 48px;
  font-weight: 600;
  color: #2e358f;
  margin-bottom: 100px;
  padding: 20px 20px;
}
.section4 .section-landing-content {
  padding: 40px 0px 20px 0px;
}
.section4 .section-column-wrapper {
  justify-content: center;
}
.section4 .section-column-wrapper.before {
  justify-content: space-between;
}
.section4 .section-column {
  align-items: center;
}
.section4 .section-column.dotted:after, .section4 .section-column.dotted:before {
  position: absolute;
  display: block;
  content: "";
  height: 298px;
  width: 228px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section4 .section-column.dotted:after {
  height: 298px;
  width: 264px;
  left: 98%;
  top: 0%;
  background-image: url("../images/theme/landing/member/section4/line-right.png");
}
.section4 .section-column.dotted:before {
  right: 94%;
  top: -30%;
  background-image: url("../images/theme/landing/member/section4/line-left.png");
}
.section4 .section-media {
  position: relative;
  max-width: 100%;
}
.section4 .section-media img {
  max-width: 100%;
  max-height: 100%;
}
.section4 .section-media p {
  padding: 20px;
  font-size: 40px;
  font-weight: 300;
  color: #2e358f;
  text-align: center;
}

.section5 {
  flex-direction: column;
}
.section5 .background {
  background-image: url("../images/theme/landing/member/section5/section5-background.png");
  background-position: top center;
  background-size: 100%;
}
.section5 .section5-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section5 .section5-overlay.top {
  background-image: url("../images/theme/landing/member/section5/section5-bottom-wave.png");
  background-position: top left;
  z-index: 2;
  position: relative;
  height: 255px;
}
.section5 .section5-overlay.under {
  background-position: bottom left;
  z-index: 1;
  background-color: #2e3691;
  background-size: auto;
  top: 255px;
  height: calc(100% - 255px);
}
.section5 .section5-overlay.bottom {
  background-position: bottom center;
  z-index: 3;
  background-size: auto;
  background-position: 80% 218%;
  top: 0;
  background-image: url("../images/theme/landing/member/section5/photo_frame.png");
}
.section5 p.header {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 100px;
  padding: 20px 20px;
}
.section5 .section-landing-content {
  z-index: 5;
  padding: 32px 100px 0px 100px;
}
.section5 .section-column-wrapper {
  justify-content: center;
  align-content: flex-end;
}
.section5 .section-column {
  align-items: center;
  padding-bottom: 70px;
}
.section5 p {
  font-size: 48px;
  color: #fff;
}
.section5 .list-text-wrapper {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  margin-top: 48px;
}
.section5 .list-text-wrapper .list-item {
  position: relative;
  margin-top: 20px;
}
.section5 .list-text-wrapper .list-item.company {
  margin-top: 12px;
}
.section5 .list-text-wrapper .list-item.address {
  margin-top: 60px;
}
.section5 .list-text-wrapper p {
  font-size: 20px;
  font-weight: normal;
}
.section5 .list-text-wrapper .partner-name {
  font-size: 40px;
  font-weight: 700;
}
.section5 .section-media-wrapper {
  width: 100%;
  height: 100%;
  max-width: 600px;
}
.section5 .section-media {
  position: relative;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.section5 .section-media img {
  max-width: 100%;
  max-height: 100%;
}
.section5 .section-media p {
  padding: 20px;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}

.landing-footer {
  position: relative;
  width: 100%;
  display: flex;
  background-color: #2f2f2f;
  height: 240px;
  justify-content: center;
}

.fit-button span.title {
  font-size: 20px;
  font-weight: 600;
}
.fit-button span.subtitle {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}

.section1.partner .transform {
  margin-top: 40px;
}
.section1.partner img {
  max-width: 754px;
  width: 100%;
}
.section1.partner .section1-partner-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section1.partner .section1-partner-overlay.top {
  background-image: url("../images/theme/landing/member/section1/section1-top-wave.png");
  background-position: top left;
  z-index: 2;
}
.section1.partner .section1-partner-overlay.under {
  z-index: 1;
  background-color: #2e3691;
}
.section1.partner .section1-partner-overlay.bottom {
  background-image: url("../images/theme/landing/member/section1/section1-bottom-wave.png");
  background-position: bottom left;
  z-index: 2;
  /*background-size: 100% auto;*/
}

.fit-text-header {
  font-size: 38px;
  line-height: 1;
  padding: 4px 4px;
}
.fit-text-header.light {
  color: #ffffff;
}
.fit-text-header.dark {
  color: #2e358f;
}
.fit-text-header.theme {
  color: #ff9432;
}
.fit-text-header.left {
  text-align: left;
}
.fit-text-header.right {
  text-align: right;
}

.fit-text-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.fit-text-box.left {
  align-items: flex-start;
}
.fit-text-box.center {
  align-items: center;
}
.fit-text-box.right {
  align-items: flex-end;
}

.fit-text {
  font-size: 16px;
  padding: 8px 4px;
}
.fit-text.light {
  color: #ffffff;
}
.fit-text.dark {
  color: #2e358f;
}
.fit-text b {
  color: #2e358f;
}
.fit-text.left {
  text-align: left;
}
.fit-text.right {
  text-align: right;
}
.fit-text.very-large {
  font-size: 40px;
}
.fit-text.weight-300 {
  font-weight: 300;
}

.spacing-top {
  margin-top: 24px;
}

.spacing-bottom {
  margin-bottom: 24px;
}

.section2.partner .icon-box-list {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 40px 40px;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.section2.partner .icon-box-list .icon-box-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  align-items: center;
  max-width: 216px;
}
.section2.partner .icon-box-list .icon-box-item .icon {
  width: 216px;
  height: 216px;
  background-size: 216px;
  display: flex;
}
.section2.partner .icon-box-list .icon-box-item .icon.ic1 {
  background-image: url("../images/theme/landing/partner/icon1.png");
}
.section2.partner .icon-box-list .icon-box-item .icon.ic2 {
  background-image: url("../images/theme/landing/partner/icon2.png");
}
.section2.partner .icon-box-list .icon-box-item .icon.ic3 {
  background-image: url("../images/theme/landing/partner/icon3.png");
}
.section2.partner .icon-box-list .icon-box-item .icon.ic4 {
  background-image: url("../images/theme/landing/partner/icon4.png");
}
.section2.partner .icon-box-list .icon-box-item .icon.ic5 {
  background-image: url("../images/theme/landing/partner/icon5.png");
}
.section2.partner .icon-box-list .icon-box-item .icon.ic6 {
  background-image: url("../images/theme/landing/partner/icon6.png");
}
.section2.partner .icon-box-list .icon-box-item .text {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
}
.section2.partner .icon-box-list .icon-box-item .text.dark {
  color: #2e358f;
}

.section3.partner .section3-partner-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section3.partner .section3-partner-overlay.top {
  background-image: url("../images/theme/landing/partner/section3/graphic_1_top.png");
  background-position: top left;
  z-index: 2;
}
.section3.partner .section3-partner-overlay.under {
  z-index: 1;
  background-color: #f3f3f3;
  top: 259px;
  height: calc(100% - 259px - 257px);
}
.section3.partner .section3-partner-overlay.bottom {
  background-image: url("../images/theme/landing/partner/section3/graphic_1_bottom.png");
  background-position: bottom left;
  z-index: 2;
  /*background-size: 100% auto;*/
}
.section3.partner .section-column img {
  max-width: 100%;
}
.section3.partner .section-landing-content {
  flex-direction: row;
}
.section3.partner .section-column {
  justify-content: center;
  padding-top: 80px;
}

.section4.partner .section-column img {
  max-width: 100%;
}
.section4.partner .section-landing-content {
  flex-direction: row;
  padding: 20px 0px 20px 0px;
}
.section4.partner .section-column {
  justify-content: center;
}
.section4.partner .fit-list-item-box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  justify-content: space-between;
  width: 100%;
}
.section4.partner .fit-list-item-box .fit-list-item {
  display: flex;
}
.section4.partner .fit-icon-box {
  display: flex;
  padding: 20px 0px;
  align-items: center;
}
.section4.partner .fit-icon-box .icon {
  width: 88px;
  height: 88px;
  background-size: 88px;
  display: flex;
  min-width: 88px;
  margin-right: 20px;
}
.section4.partner .fit-icon-box .icon.ic1 {
  background-image: url("../images/theme/landing/partner/step1.jpg");
}
.section4.partner .fit-icon-box .icon.ic2 {
  background-image: url("../images/theme/landing/partner/step2.jpg");
}
.section4.partner .fit-icon-box .icon.ic3 {
  background-image: url("../images/theme/landing/partner/step3.jpg");
}
.section4.partner .fit-icon-box .icon.ic4 {
  background-image: url("../images/theme/landing/partner/step4.jpg");
}
.section4.partner .fit-icon-box .icon.ic5 {
  background-image: url("../images/theme/landing/partner/step5.jpg");
}
.section4.partner .fit-icon-box .icon.ic6 {
  background-image: url("../images/theme/landing/partner/step6.jpg");
}
.section4.partner .fit-icon-box .icon.ic7 {
  background-image: url("../images/theme/landing/partner/step7.jpg");
}
.section4.partner .fit-icon-box .icon.ic8 {
  background-image: url("../images/theme/landing/partner/step8.jpg");
}
.section4.partner .fit-icon-box .text {
  font-weight: normal;
  font-size: 18px;
  text-align: left;
}
.section4.partner .fit-icon-box .text.dark {
  color: #2e358f;
}

.section5.partner .section-column img {
  max-width: 100%;
}
.section5.partner .section-column {
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section5.partner .section-landing-content {
  flex-direction: row;
}
.section5.partner .section-column {
  justify-content: center;
}

.section6.partner .section-column img {
  max-width: 100%;
}
.section6.partner .section-column {
  align-items: flex-start;
}
.section6.partner .section-landing-content {
  flex-direction: row;
}
.section6.partner .section-column {
  justify-content: center;
}

.section7.partner .section-column img {
  max-width: 100%;
}
.section7.partner .section-column {
  align-items: flex-start;
}
.section7.partner .section-landing-content {
  flex-direction: row;
}
.section7.partner .section-column {
  justify-content: center;
}

.section8.partner .section-column img {
  max-width: 100%;
}
.section8.partner .section-column {
  align-items: flex-start;
}
.section8.partner .section-landing-content {
  flex-direction: row;
}
.section8.partner .section-column {
  justify-content: center;
}

.section9.partner .section-column img {
  max-width: 100%;
}
.section9.partner .section-column {
  align-items: flex-start;
}
.section9.partner .section-landing-content {
  flex-direction: row;
}
.section9.partner .section-column {
  justify-content: center;
}

.section10.partner .background {
  background-image: url("../images/theme/landing/member/section5/section5-background.png");
  background-position: top center;
  background-size: cover;
}
.section10.partner .section10-partner-overlay {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}
.section10.partner .section10-partner-overlay.top {
  background-image: url("../images/theme/landing/partner/section10/section5-bottom-wave.png");
  background-position: top left;
  z-index: 2;
}
.section10.partner .section10-partner-overlay.under {
  z-index: 1;
  background-color: #2e3691;
  top: 255px;
  height: calc(100% - 255px);
}
.section10.partner p.header {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 100px;
  padding: 20px 20px;
}
.section10.partner .section-landing-content {
  padding: 60px 100px 0px 100px;
}
.section10.partner .section-column-wrapper {
  justify-content: center;
  align-content: flex-end;
}
.section10.partner .section-column {
  align-items: center;
  padding-top: 260px;
  padding-bottom: 120px;
}
.section10.partner p {
  font-size: 48px;
  color: #fff;
}
.section10.partner .list-text-wrapper {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  margin-top: 48px;
}
.section10.partner .list-text-wrapper .list-item {
  position: relative;
  margin-top: 20px;
}
.section10.partner .list-text-wrapper .list-item.company {
  margin-top: 12px;
}
.section10.partner .list-text-wrapper .list-item.address {
  margin-top: 60px;
}
.section10.partner .list-text-wrapper p {
  font-size: 20px;
  font-weight: normal;
}
.section10.partner .section-media {
  position: relative;
  max-width: 100%;
  margin-top: -40%;
}
.section10.partner .section-media img {
  max-width: 100%;
  max-height: 100%;
}
.section10.partner .section-media p {
  padding: 20px;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}

.partner .partner-col-spacing {
  position: relative;
}
.partner .partner-col-spacing .col-text {
  padding-left: 20px;
  padding-right: 20px;
}

.partner .section-landing-content {
  padding-bottom: 90px;
  padding-top: 90px;
}

.section1.partner .section-landing-content {
  padding-bottom: 90px;
  padding-top: 20px;
}

.section-connect-graphic {
  position: absolute;
  width: 100%;
  height: 193px;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: 1;
}
.section-connect-graphic.up {
  background-image: url("../images/theme/landing/partner/graphic_3.png");
  transform: rotate(-10deg);
  top: -133px;
}
.section-connect-graphic.down {
  background-image: url("../images/theme/landing/partner/graphic_4.png");
  transform: rotate(10deg);
  top: -85px;
}

@media (max-width: 1400px) {
  .section-connect-graphic.up {
    transform: rotate(-10deg);
    top: -133px;
  }
  .section-connect-graphic.down {
    transform: rotate(10deg);
    top: -85px;
  }
}
@media (max-width: 1024px) {
  .section-landing-wrapper .section-column-wrapper {
    flex-direction: column;
  }

  .section-landing-wrapper .section-column-wrapper .section-column {
    width: 100% !important;
  }
}
