@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.background-colour-blue {
  background-color: #006D87;
}

.background-colour-light-blue {
  background-color: #D4EDF1;
}

.background-colour-pale-blue {
  background-color: #EBF4F5;
}

.background-colour-white {
  background-color: #FEFEFE;
}

.background-colour-dark-turquoise {
  background-color: #00495A;
}

h1, h2, h3, h4, h5, h6 {
  color: #101828;
}

h1 {
  font-size: 2.25rem;
  line-height: 44px;
  font-weight: 600;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}

h4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

h6 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

p {
  font-size: 1rem;
  line-height: 24px;
}

strong {
  font-weight: 600;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
    line-height: 72px;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.25rem;
  }
  p {
    font-size: 1.125rem;
    line-height: 28px;
  }
}
.padding-top {
  padding-top: 50px;
}

.padding-top_small {
  padding-top: 50px;
}

.padding-top_mini {
  padding-top: 24px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.padding-bottom_small {
  padding-bottom: 50px;
}

.padding-bottom_mini {
  padding-bottom: 24px;
}

.margin-top {
  margin-top: 50px;
}

.margin-top_small {
  margin-top: 50px;
}

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

.margin-bottom {
  margin-bottom: 50px;
}

.margin-bottom_small {
  margin-bottom: 50px;
}

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

.background-colour_white {
  background-color: #FEFEFE;
}

.background-colour_slate-100 {
  background-color: #F1F5F9;
}

.background-colour_slate-300 {
  background-color: #EAECF0;
}

.background-colour_slate-900 {
  background-color: #101828;
}

.background-colour_primary-colour-600 {
  background-color: #00B2D2;
}

.spacer {
  height: 48px;
}

.disable-scroll {
  width: 100%;
  max-width: 100%;
  position: fixed;
}

@media screen and (min-width: 768px) {
  .padding-top {
    padding-top: 72px;
  }
  .padding-bottom {
    padding-bottom: 72px;
  }
  .margin-top {
    margin-top: 72px;
  }
  .margin-bottom {
    margin-bottom: 72px;
  }
  .spacer {
    height: 72px;
  }
}
@media screen and (min-width: 1200px) {
  .padding-top {
    padding-top: 96px;
  }
  .padding-bottom {
    padding-bottom: 96px;
  }
  .margin-top {
    margin-top: 96px;
  }
  .margin-bottom {
    margin-bottom: 96px;
  }
  .spacer {
    height: 96px;
  }
}
.link_text:before, .link_text:after {
  width: 0;
  height: 2px;
  top: calc(100% + 2px);
  right: 0;
  position: absolute;
  content: "";
}
.link_text:before {
  background-color: rgba(16, 24, 40, 0.3);
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
}
.link_text:after {
  background-color: #101828;
  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}
.link_text:hover:before, .link_text:hover:after {
  width: 100%;
  left: 0;
}

.background-colour_slate-900 .link_text:before {
  background-color: rgba(234, 236, 240, 0.3);
}
.background-colour_slate-900 .link_text:after {
  background-color: #eaecf0;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 0px 20px 0px 20px;
  margin: auto;
  margin-top: 1.5rem;
  position: relative;
  display: inline-block;
  background-color: #00B2D2;
  border: none;
  border-radius: 25px;
  box-shadow: none;
  color: #FEFEFE !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 47px;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  overflow: hidden;
}
.button span {
  color: #FEFEFE;
  position: relative;
  z-index: 1;
}
.button.button_primary:after, .button.btn:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  background-color: #006D87;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.button.button_primary:hover:after, .button.btn:hover:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button.button_secondary {
  background-color: transparent;
  border: 1px solid #FEFEFE;
  color: #FEFEFE !important;
}
.button.button_secondary span {
  color: #FEFEFE;
}
.button.button_secondary:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  background-color: #00B2D2;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.button.button_secondary:hover {
  border-color: #03b1d2;
}
.button.button_secondary:hover span {
  color: #FEFEFE;
}
.button.button_secondary:hover:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button.button_tertiary {
  background-color: transparent;
}

.materialize-button, .loadMoreBtn {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 0px 20px 0px 20px;
  position: relative;
  display: inline-block;
  border-radius: 25px;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 47px;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  transition: 0.4s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  white-space: nowrap;
  text-transform: capitalize;
  text-decoration: none;
}
.materialize-button span, .loadMoreBtn span {
  color: #FEFEFE;
}
.materialize-button span.ripple, .loadMoreBtn span.ripple {
  transform: scale(0.2);
  position: absolute;
  background-color: rgba(0, 109, 135, 0.9);
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  animation: ripple 0.8s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  will-change: transform;
}
.materialize-button.button_primary, .loadMoreBtn.button_primary {
  background-color: #00B2D2;
  box-shadow: 0px 0px 0px rgba(0, 109, 135, 0);
  color: #FEFEFE !important;
}
.materialize-button.button_primary span, .loadMoreBtn.button_primary span {
  color: #FEFEFE;
}
.materialize-button.button_primary span.ripple, .loadMoreBtn.button_primary span.ripple {
  transform: scale(0.2);
  position: absolute;
  background-color: #006D87;
}
.materialize-button.button_primary:hover, .loadMoreBtn.button_primary:hover {
  background-color: #006D87;
  transition: all 0.25s ease-in-out;
}
.materialize-button.button_secondary, .loadMoreBtn.button_secondary {
  background-color: transparent;
  border: 1px solid #FEFEFE;
  color: #FEFEFE !important;
}
.materialize-button.button_secondary span, .loadMoreBtn.button_secondary span {
  color: #FEFEFE;
}
.materialize-button.button_secondary span.ripple, .loadMoreBtn.button_secondary span.ripple {
  transform: scale(0.2);
  position: absolute;
  background-color: #00B2D2;
}
.materialize-button.button_secondary:hover, .loadMoreBtn.button_secondary:hover {
  background-color: #00B2D2;
  border-color: #00B2D2;
  transition: all 0.25s ease-in-out;
}

.loadMoreBtn {
  background-color: #00B2D2;
  box-shadow: 0px 0px 0px rgba(0, 109, 135, 0);
  color: #FEFEFE !important;
}
.loadMoreBtn span {
  color: #FEFEFE;
}
.loadMoreBtn span.ripple {
  transform: scale(0.2);
  position: absolute;
  background-color: #006D87;
}
.loadMoreBtn:hover {
  background-color: #006D87;
  transition: all 0.25s ease-in-out;
}

/* @keyframes. */
@keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
/* Wow. */
.wow {
  visibility: hidden;
}

.fadeIn {
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.flipInX {
  animation-name: flipInX;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.flipInY {
  animation-name: flipInY;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.zoomOut {
  animation-name: zoomOut;
  animation-iteration-count: 1;
  animation-duration: 1.2s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.51, 0.18, 0, 0.88);
  animation-fill-mode: both;
  backface-visibility: hidden;
}

.frm_forms form .frm_form_fields fieldset {
  padding: 0 !important;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field {
  margin: 0rem 0rem 0.75rem 0rem;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field label, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_primary_label {
  padding: 0;
  margin: 0px 0px 5px 0px;
  color: #344054;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field label span, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_primary_label span {
  left: -3px;
  position: relative;
  color: #EB5757;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field input:not([type=checkbox]), .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field select, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field textarea {
  width: 100%;
  height: 50px;
  padding: 0rem 0.75rem 0rem 0.75rem;
  background-color: #FEFEFE;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: none;
  color: #344054;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 50px;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field input:not([type=checkbox]):focus, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field select:focus, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field textarea:focus {
  background-color: #FEFEFE;
  border: 1px solid #D0D5DD;
  box-shadow: none;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field textarea {
  height: 150px;
  padding: 1.5rem 0.75rem 1.5rem 0.75rem;
  line-height: 24px;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_checkbox {
  margin: 0rem 0rem 0.25rem 0rem;
  background-color: transparent !important;
  outline: none !important;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_checkbox label {
  width: 100% !important;
  padding: 0px 0px 0px calc(15px + 0.75rem) !important;
  margin: 0 !important;
  position: relative;
  background-color: transparent !important;
  text-indent: 0;
  outline: none !important;
  cursor: pointer;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_checkbox label input[type=checkbox] {
  top: 2px;
  left: 0;
  position: absolute;
  cursor: pointer;
  border-color: #D0D5DD;
  border-radius: 5px;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_description, .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_error {
  margin: 5px 0px 0px 0px;
  color: #344054;
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 15px;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field .frm_error {
  color: #EB5757;
  font-weight: 500;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field ::-webkit-input-placeholder {
  color: #667085;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field :-moz-placeholder {
  color: #667085;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field ::-moz-placeholder {
  color: #667085;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field :-ms-input-placeholder {
  color: #667085;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field#frm_field_18_container {
  margin: 0rem 0rem 2.25rem 0rem;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field#frm_field_18_container .frm_primary_label {
  display: none;
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_submit .frm_button_submit {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 175px;
  height: 50px;
  padding: 0px 25px 0px 25px;
  margin: auto;
  position: relative;
  display: inline-block;
  background-color: #00B2D2;
  border: none;
  border-radius: 25px;
  box-shadow: none;
  color: #FEFEFE !important;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}
.frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_submit .frm_button_submit:hover {
  background-color: #006D87;
  transition: all 0.25s ease-in-out;
}
.frm_forms form .frm_error_style {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
.frm_forms .frm_message {
  padding: 0 !important;
  margin: 0rem 0rem 2rem 0rem !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
.frm_forms .frm_message p {
  font-weight: 600;
}

#form_projectfundingcategorya #frm_field_26_container,
#form_projectfundingcategorya #frm_field_37_container,
#form_projectfundingcategorya #frm_field_48_container,
#form_projectfundingcategorya #frm_field_56_container,
#form_projectfundingcategorya #frm_field_65_container,
#form_projectfundingcategorya #frm_field_68_container {
  margin-bottom: 0;
  font-weight: 600;
  color: #344054;
  font-size: 16px;
  line-height: 24px;
}
#form_projectfundingcategorya #frm_field_26_container p,
#form_projectfundingcategorya #frm_field_37_container p,
#form_projectfundingcategorya #frm_field_48_container p,
#form_projectfundingcategorya #frm_field_56_container p,
#form_projectfundingcategorya #frm_field_65_container p,
#form_projectfundingcategorya #frm_field_68_container p {
  font-size: 16px;
  line-height: 24px;
}
#form_projectfundingcategorya #frm_field_25_container,
#form_projectfundingcategorya #frm_field_28_container,
#form_projectfundingcategorya #frm_field_38_container,
#form_projectfundingcategorya #frm_field_39_container,
#form_projectfundingcategorya #frm_field_49_container,
#form_projectfundingcategorya #frm_field_50_container,
#form_projectfundingcategorya #frm_field_57_container,
#form_projectfundingcategorya #frm_field_58_container {
  margin: 0rem 0rem 0.5rem 0rem;
}
#form_projectfundingcategorya #frm_field_31_container,
#form_projectfundingcategorya #frm_field_45_container,
#form_projectfundingcategorya #frm_field_62_container,
#form_projectfundingcategorya #frm_field_74_container {
  margin: 5rem 0 3rem 0;
}

#form_projectfundingcategoryb #frm_field_85_container,
#form_projectfundingcategoryb #frm_field_97_container,
#form_projectfundingcategoryb #frm_field_108_container,
#form_projectfundingcategoryb #frm_field_116_container,
#form_projectfundingcategoryb #frm_field_125_container,
#form_projectfundingcategoryb #frm_field_130_container {
  margin-bottom: 0;
  font-weight: 600;
  color: #344054;
  font-size: 16px;
  line-height: 24px;
}
#form_projectfundingcategoryb #frm_field_85_container p,
#form_projectfundingcategoryb #frm_field_97_container p,
#form_projectfundingcategoryb #frm_field_108_container p,
#form_projectfundingcategoryb #frm_field_116_container p,
#form_projectfundingcategoryb #frm_field_125_container p,
#form_projectfundingcategoryb #frm_field_130_container p {
  font-size: 16px;
  line-height: 24px;
}
#form_projectfundingcategoryb #frm_field_86_container,
#form_projectfundingcategoryb #frm_field_87_container,
#form_projectfundingcategoryb #frm_field_98_container,
#form_projectfundingcategoryb #frm_field_99_container,
#form_projectfundingcategoryb #frm_field_109_container,
#form_projectfundingcategoryb #frm_field_110_container,
#form_projectfundingcategoryb #frm_field_117_container,
#form_projectfundingcategoryb #frm_field_118_container {
  margin: 0rem 0rem 0.5rem 0rem;
}
#form_projectfundingcategoryb #frm_field_91_container,
#form_projectfundingcategoryb #frm_field_105_container,
#form_projectfundingcategoryb #frm_field_122_container,
#form_projectfundingcategoryb #frm_field_136_container {
  margin: 5rem 0 3rem 0;
}

#form_corefundingcategoryc #frm_field_142_container,
#form_corefundingcategoryc #frm_field_154_container,
#form_corefundingcategoryc #frm_field_165_container,
#form_corefundingcategoryc #frm_field_173_container,
#form_corefundingcategoryc #frm_field_182_container,
#form_corefundingcategoryc #frm_field_187_container {
  margin-bottom: 0;
  font-weight: 600;
  color: #344054;
  font-size: 16px;
  line-height: 24px;
}
#form_corefundingcategoryc #frm_field_142_container p,
#form_corefundingcategoryc #frm_field_154_container p,
#form_corefundingcategoryc #frm_field_165_container p,
#form_corefundingcategoryc #frm_field_173_container p,
#form_corefundingcategoryc #frm_field_182_container p,
#form_corefundingcategoryc #frm_field_187_container p {
  font-size: 16px;
  line-height: 24px;
}
#form_corefundingcategoryc #frm_field_143_container,
#form_corefundingcategoryc #frm_field_144_container,
#form_corefundingcategoryc #frm_field_155_container,
#form_corefundingcategoryc #frm_field_156_container,
#form_corefundingcategoryc #frm_field_166_container,
#form_corefundingcategoryc #frm_field_167_container,
#form_corefundingcategoryc #frm_field_174_container,
#form_corefundingcategoryc #frm_field_175_container {
  margin: 0rem 0rem 0.5rem 0rem;
}
#form_corefundingcategoryc #frm_field_148_container,
#form_corefundingcategoryc #frm_field_162_container,
#form_corefundingcategoryc #frm_field_179_container,
#form_corefundingcategoryc #frm_field_193_container {
  margin: 5rem 0 3rem 0;
}

@media screen and (min-width: 768px) {
  .frm_forms form .frm_form_fields fieldset .frm_fields_container .frm_form_field {
    margin: 0rem 0rem 2rem 0rem;
  }
}
@media screen and (max-width: 767px) {
  .responsive-table table, .responsive-table thead, .responsive-table tbody, .responsive-table tr, .responsive-table th, .responsive-table td {
    display: block;
  }
  .responsive-table th {
    top: -9999px;
    left: -9999px;
    position: absolute;
  }
  .responsive-table td {
    position: relative;
    text-align: right;
  }
  .responsive-table td:before {
    width: 50%;
    left: 0;
    position: absolute;
    text-align: left;
  }
  .responsive-table td:nth-of-type(1):before {
    content: "Title";
  }
}
.building-block_hero-video {
  height: calc(100vh - 80px);
  padding-top: 144px;
  padding-bottom: 48px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.building-block_hero-video .content {
  padding: 0rem 1.5rem 0rem 1.5rem;
  z-index: 2;
  height: 100%;
}
.building-block_hero-video .content h6, .building-block_hero-video .content h1, .building-block_hero-video .content p {
  color: #FEFEFE !important;
  padding-right: 0;
}
.building-block_hero-video .content p {
  max-width: 500px;
}
.building-block_hero-video .content .button, .building-block_hero-video .content .materialize-button {
  margin: 1.5rem 0rem 0rem 0rem;
}
.building-block_hero-video .content .button.button_secondary, .building-block_hero-video .content .materialize-button.button_secondary {
  border: 1px solid #FEFEFE;
  color: #FEFEFE !important;
}
.building-block_hero-video .button_play-video {
  width: 50px;
  height: 50px;
  bottom: 24px;
  right: 24px;
  display: block;
  background-color: #00B2D2;
  border: none;
  border-radius: 100%;
  box-shadow: none;
  color: #FEFEFE !important;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  transition: 0.4s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  z-index: 2;
}
.building-block_hero-video .button_play-video i {
  color: #FEFEFE;
}
.building-block_hero-video:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  content: "";
}
.building-block_hero-video .logomark {
  right: -150px;
  z-index: 1;
  bottom: 0;
  height: calc(100vh - 80px);
}
.building-block_hero-video .logomark img {
  height: 100%;
}

.building-block_hero-image {
  padding: 0;
  min-height: 350px;
  padding-top: 108px;
  padding-bottom: 108px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.building-block_hero-image .content {
  padding: 0rem 1.5rem 0rem 1.5rem;
  z-index: 2;
}
.building-block_hero-image .content h6, .building-block_hero-image .content h1, .building-block_hero-image .content p {
  color: #FEFEFE !important;
}
.building-block_hero-image .content .button, .building-block_hero-image .content .materialize-button {
  margin: 1.5rem 0rem 0rem 0rem;
}
.building-block_hero-image .content .button.button_secondary, .building-block_hero-image .content .materialize-button.button_secondary {
  border: 1px solid #FEFEFE;
  color: #FEFEFE !important;
}
.building-block_hero-image .button_play-video {
  width: 50px;
  height: 50px;
  bottom: 24px;
  right: 24px;
  display: block;
  background-color: #00B2D2;
  border: none;
  border-radius: 100%;
  box-shadow: none;
  color: #FEFEFE !important;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  transition: 0.4s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  z-index: 2;
}
.building-block_hero-image .button_play-video i {
  color: #FEFEFE;
}
.building-block_hero-image:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  content: "";
}

.building-block_text h6 {
  color: #00B2D2;
  font-weight: 400;
}
.building-block_text .button, .building-block_text .materialize-button {
  margin: 1.5rem 0rem 0rem 0rem;
}
.building-block_text .image_wrapper {
  width: 100%;
  height: 400px;
}
.building-block_text .image_wrapper img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: relative;
}
.building-block_text .image_wrapper .semi-circle {
  height: 75px;
  width: 140px;
}
.building-block_text .image_wrapper .semi-circle-1 {
  left: -8%;
  top: -5%;
  border-radius: 150px 150px 0 0;
  background-color: rgba(0, 178, 210, 0.5);
  transform: rotate(330deg);
}
.building-block_text .image_wrapper .semi-circle-2 {
  right: -9%;
  bottom: -4%;
  border-radius: 0 0 150px 150px;
  background-color: rgba(0, 109, 135, 0.3);
  transform: rotate(315deg);
  z-index: 5;
  width: 110px;
  height: 55px;
}
.building-block_text .col-12:first-of-type .image_wrapper {
  left: 0;
}
.building-block_text .col-12:first-of-type .image_wrapper .semi-circle-1 {
  right: -8%;
  left: auto;
  transform: rotate(30deg);
  background-color: rgba(0, 109, 135, 0.3);
}
.building-block_text .col-12:first-of-type .image_wrapper .semi-circle-2 {
  left: -8%;
  right: auto;
  background-color: rgba(0, 178, 210, 0.5);
  transform: rotate(40deg);
}
.building-block_text .col-12:nth-of-type(2) .image_wrapper {
  right: 0;
}

.building-block_text-with-image h6 {
  color: #00B2D2;
}
.building-block_text-with-image .button, .building-block_text-with-image .materialize-button {
  margin: 1.5rem 0rem 0rem 0rem;
}
.building-block_text-with-image .image_wrapper {
  width: 100%;
  margin-top: 45px;
}
.building-block_text-with-image .image_wrapper .image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.building-block_text-with-image .image_wrapper .image:first-of-type {
  width: 55%;
  height: 255px;
  border-radius: 16px 16px 8px 16px;
  position: relative;
  z-index: 3;
}
.building-block_text-with-image .image_wrapper .image:last-of-type {
  width: 75%;
  height: 350px;
  margin-top: -70px;
  margin-right: 0;
  float: right;
}
.building-block_text-with-image .image_wrapper .border {
  width: 55%;
  height: 255px;
  border: none !important;
  border-radius: 20px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}
.building-block_text-with-image .image_wrapper .semi-circle {
  transform: translate(-50%, -50%);
  height: 75px;
  width: 140px;
  border-radius: 150px 150px 0 0;
  background-color: rgba(0, 178, 210, 0.5);
  z-index: 3;
}
.building-block_text-with-image .image_wrapper .semi-circle-1 {
  right: 20%;
  top: 27%;
  border-radius: 150px 150px 0 0;
}
.building-block_text-with-image .image_wrapper .semi-circle-2 {
  left: 20%;
  top: 55.2%;
  border-radius: 0 0 150px 150px;
}
.building-block_text-with-image .image_wrapper.right .image:first-of-type {
  float: right;
}
.building-block_text-with-image .image_wrapper.right .image:last-of-type {
  margin-left: 30px;
  float: left;
}
.building-block_text-with-image .image_wrapper.right .border {
  right: 15px;
  left: auto;
}
.building-block_text-with-image .image_wrapper.right .semi-circle-1 {
  right: 35%;
  left: auto;
}
.building-block_text-with-image .image_wrapper.right .semi-circle-2 {
  right: 12%;
  left: auto;
  transform: translateY(-50%);
}
.building-block_text-with-image.background-colour-blue * {
  color: #FEFEFE;
}

.building-block_icon_text_blocks .blocks .block_wrapper .block {
  height: 100%;
  padding: 32px 32px 32px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block * {
  color: #FEFEFE;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .icon_wrapper {
  width: 80px;
  height: 80px;
  margin: 0 0 20px 0;
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .icon_wrapper i {
  color: #FEFEFE;
  font-size: 80px;
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .content {
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .content h1, .building-block_icon_text_blocks .blocks .block_wrapper .block .content h2, .building-block_icon_text_blocks .blocks .block_wrapper .block .content h3, .building-block_icon_text_blocks .blocks .block_wrapper .block .content h4, .building-block_icon_text_blocks .blocks .block_wrapper .block .content h5, .building-block_icon_text_blocks .blocks .block_wrapper .block .content h6, .building-block_icon_text_blocks .blocks .block_wrapper .block .content p {
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .content p {
  font-size: 1.25rem;
  line-height: 30px;
}
.building-block_icon_text_blocks .blocks .block_wrapper .block .button, .building-block_icon_text_blocks .blocks .block_wrapper .block .materialize-button {
  opacity: 1;
  bottom: unset;
  margin-left: 0;
  margin-top: 1rem;
  transition: all 0.25s ease-in-out;
}
.building-block_icon_text_blocks .container .row.has_border-top {
  border-top: 1px solid #F1F5F9;
}

.building-block_form-with-image-or-map p {
  margin: 0rem 0rem 3rem 0rem;
}
.building-block_form-with-image-or-map .frm_forms {
  width: 100%;
}
.building-block_form-with-image-or-map .image_wrapper, .building-block_form-with-image-or-map .map_wrapper {
  width: 100%;
  padding: 100% 0% 0% 0%;
  border-radius: 16px;
  overflow: hidden;
}
.building-block_form-with-image-or-map .image_wrapper .image, .building-block_form-with-image-or-map .image_wrapper .map, .building-block_form-with-image-or-map .map_wrapper .image, .building-block_form-with-image-or-map .map_wrapper .map {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.building-block_gallery-slider .swiper_gallery-slider .swiper_wrapper .swiper_slide {
  width: auto;
}
.building-block_gallery-slider .swiper_gallery-slider .swiper_wrapper .swiper_slide img {
  height: 444px;
  margin: 0rem 0rem 1.5rem 0rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.building-block_gallery-slider .swiper_gallery-slider.visible {
  overflow: visible;
}

.building-block_gallery-block .image_wrapper {
  padding: 62.5% 0% 0% 0%;
  margin: 0rem 0rem 1.5rem 0rem;
}
.building-block_gallery-block .image_wrapper .image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
  z-index: 4;
}
.building-block_gallery-block .image_wrapper .semi-circle {
  transform: translate(-50%, -50%);
  height: 75px;
  width: 140px;
  border-radius: 150px 150px 0 0;
  z-index: 3;
}
.building-block_gallery-block .image_wrapper .semi-circle-1 {
  right: -8%;
  top: -8%;
  border-radius: 150px 150px 0 0;
  background-color: rgba(0, 178, 210, 0.5);
  transform: rotate(35deg);
}
.building-block_gallery-block .image_wrapper .semi-circle-2 {
  left: -6%;
  bottom: -12%;
  border-radius: 0 0 150px 150px;
  background-color: rgba(0, 109, 135, 0.3);
  transform: rotate(20deg);
  z-index: 5;
}
.building-block_gallery-block .images-1 .image_wrapper .semi-circle {
  height: 75px;
  width: 140px;
  z-index: 3;
}
.building-block_gallery-block .images-1 .image_wrapper .semi-circle-1 {
  right: -8%;
  top: -8%;
  border-radius: 150px 150px 0 0;
  background-color: rgba(0, 178, 210, 0.5);
  transform: rotate(35deg);
}
.building-block_gallery-block .images-1 .image_wrapper .semi-circle-2 {
  left: -6%;
  bottom: -12%;
  border-radius: 0 0 150px 150px;
  background-color: rgba(0, 109, 135, 0.3);
  transform: rotate(20deg);
  z-index: 5;
}
.building-block_gallery-block .images-2 .image_wrapper .semi-circle, .building-block_gallery-block .images-3 .image_wrapper .semi-circle {
  height: 65px;
  width: 120px;
}
.building-block_gallery-block .images-4 .col-12.col-md-6 .image_wrapper .semi-circle {
  opacity: 0;
}
.building-block_gallery-block .images-4 .col-12.col-md-6:nth-of-type(2) .image_wrapper .semi-circle-1 {
  opacity: 1;
}
.building-block_gallery-block .images-4 .col-12.col-md-6:nth-of-type(3) .image_wrapper .semi-circle-2 {
  opacity: 1;
}

.building-block_logos {
  overflow: hidden;
}
.building-block_logos .content {
  z-index: 3;
  background: #FEFEFE;
}
.building-block_logos h6 {
  color: #00B2D2;
}
.building-block_logos .slider {
  position: relative;
  top: auto;
  transform: none;
  width: 100%;
  z-index: 4;
}
.building-block_logos .swiper_logos {
  z-index: 4;
}
.building-block_logos .swiper_logos .swiper_wrapper {
  transition-timing-function: linear;
}
.building-block_logos .swiper_logos .swiper_wrapper .swiper_slide {
  height: 280px;
  border-radius: 16px;
  width: unset;
}
.building-block_logos .swiper_logos .swiper_wrapper .swiper_slide img {
  width: 240px;
  max-height: 140px;
  margin-top: 70px;
  transition: all 0.25s ease-in-out;
}
.building-block_logos .swiper_logos .swiper_wrapper .swiper_slide:hover img {
  margin-top: 0;
}
.building-block_logos .swiper_logos .swiper_wrapper .swiper_slide:hover .button, .building-block_logos .swiper_logos .swiper_wrapper .swiper_slide:hover .materialize-button {
  opacity: 1;
}
.building-block_logos .swiper_logos .swiper_wrapper .button, .building-block_logos .swiper_logos .swiper_wrapper .materialize-button {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.building-block_logos .swiper_logos .swiper_wrapper .button:hover, .building-block_logos .swiper_logos .swiper_wrapper .materialize-button:hover {
  border-color: #00B2D2 !important;
}
.building-block_logos .swiper_logos.visible {
  overflow: visible;
}
.building-block_logos .swiper_logo_slider_navigation {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #00B2D2;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
  transition: all 0.25s ease-in-out;
  z-index: 4;
}
.building-block_logos .swiper_logo_slider_navigation i {
  color: #FEFEFE;
}
.building-block_logos .swiper_logo_slider_navigation#swiper_logo_slider_navigation_next {
  margin-left: 20px;
}
.building-block_logos .swiper_logo_slider_navigation.swiper-button-disabled {
  opacity: 0.5;
}
.building-block_logos .swiper_logo_slider_navigation.swiper-button-disabled:hover {
  background: #00B2D2;
}
.building-block_logos .swiper_logo_slider_navigation:hover {
  background: #006D87;
}
.building-block_logos .button, .building-block_logos .materialize-button {
  margin: 1.5rem 0rem 0rem 0rem;
}
.building-block_logos .semi-circle {
  bottom: 0;
  right: -35px;
  z-index: 3;
}

.building-block_testimonials .swiper_testimonial_slider_navigation_wrapper {
  position: relative;
  top: auto;
  width: 90px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between !important;
  margin-top: 20px;
}
.building-block_testimonials .swiper_testimonial_slider_navigation {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #00B2D2;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
  transition: all 0.25s ease-in-out;
}
.building-block_testimonials .swiper_testimonial_slider_navigation i {
  color: #FEFEFE;
}
.building-block_testimonials .swiper_testimonial_slider_navigation#swiper_testimonial_slider_navigation_next {
  position: relative;
  right: auto;
}
.building-block_testimonials .swiper_testimonial_slider_navigation#swiper_testimonial_slider_navigation_previous {
  position: relative;
  left: auto;
}
.building-block_testimonials .swiper_testimonial_slider_navigation.swiper-button-disabled {
  opacity: 0.5;
}
.building-block_testimonials .swiper_testimonial_slider_navigation.swiper-button-disabled:hover {
  background: #00B2D2;
}
.building-block_testimonials .swiper_testimonial_slider_navigation:hover {
  background: #006D87;
}
.building-block_testimonials .swiper-slide p {
  font-size: 1.25rem;
  line-height: 30px;
}
.building-block_testimonials .swiper-slide p strong {
  font-size: 1.125rem;
  color: #101828;
  font-family: "Inter", sans-serif;
}
.building-block_testimonials .swiper-slide img {
  height: 64px;
  width: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 2rem 0 1rem 0;
  border-radius: 100%;
  background: #fff;
}
.building-block_testimonials .semi-circle {
  top: 0;
  left: -35px;
  z-index: -1;
  transform: rotate(180deg);
}

.building-block_quote * {
  color: #FEFEFE;
}
.building-block_quote h3 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}
.building-block_quote img {
  z-index: -1;
}
.building-block_quote img:first-of-type {
  top: -65px;
  left: 0;
}
.building-block_quote img:last-of-type {
  bottom: -65px;
  right: 0;
  transform: rotate(180deg);
}

.building-block_team {
  overflow: hidden;
}
.building-block_team img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.building-block_team .team-member p {
  font-size: 16px;
  line-height: 24px;
}
.building-block_team .semi-circle img {
  -o-object-fit: contain;
     object-fit: contain;
}
.building-block_team .semi-circle-1 {
  top: 300px;
  right: -150px;
  transform: rotate(270deg);
}
.building-block_team .semi-circle-2 {
  bottom: 60px;
  left: -210px;
  transform: rotate(90deg);
}
.building-block_team .semi-circle-2 img {
  height: 420px;
}

.building-block_image_text_contact_details_blocks .image_wrapper {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
.building-block_image_text_contact_details_blocks .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.building-block_image_text_contact_details_blocks li {
  list-style: none;
  text-decoration: none;
  color: #344054;
  font-weight: 500 !important;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.5rem;
}
.building-block_image_text_contact_details_blocks li i {
  color: #006D87;
  position: absolute;
  left: 0;
  top: 5px;
}
.building-block_image_text_contact_details_blocks li a {
  text-decoration: none;
  color: #344054 !important;
  font-weight: 500 !important;
  transition: all 0.25s ease-in-out;
}
.building-block_image_text_contact_details_blocks li a:before {
  display: none;
}
.building-block_image_text_contact_details_blocks li a:hover {
  color: #00B2D2 !important;
}
.building-block_image_text_contact_details_blocks .button, .building-block_image_text_contact_details_blocks .materialize-button {
  margin-top: 40px;
}

.building-block_posts.posts .post .content_wrapper .content {
  max-width: 100%;
  text-align: center;
}
.building-block_posts .swiper_posts_slider_navigation_wrapper {
  margin-top: 20px;
}
.building-block_posts .swiper_posts_slider_navigation_wrapper .button, .building-block_posts .swiper_posts_slider_navigation_wrapper .materialize-button {
  margin: 0 0 0 20px;
}
.building-block_posts .swiper_posts_slider_navigation {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #00B2D2;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
  transition: all 0.25s ease-in-out;
  z-index: 4;
}
.building-block_posts .swiper_posts_slider_navigation i {
  color: #FEFEFE;
}
.building-block_posts .swiper_posts_slider_navigation#swiper_posts_slider_navigation_next {
  margin: 0 0 0 20px;
}
.building-block_posts .swiper_posts_slider_navigation.swiper-button-disabled {
  opacity: 0.5;
}
.building-block_posts .swiper_posts_slider_navigation.swiper-button-disabled:hover {
  background: #00B2D2;
}
.building-block_posts .swiper_posts_slider_navigation:hover {
  background: #006D87;
}

@media screen and (min-width: 768px) {
  .building-block_hero-video {
    padding-top: 168px;
  }
  .building-block_hero-video .button_play-video {
    bottom: 45px;
    right: 45px;
  }
  .building-block_hero-video h6, .building-block_hero-video h1, .building-block_hero-video p {
    padding-right: 45px;
  }
  .building-block_hero-video .logomark {
    right: 50px;
  }
  .building-block_hero-image {
    height: 400px;
    padding-top: 144px;
    padding-bottom: 144px;
  }
  .building-block_hero-image .swiper_hero .swiper_wrapper .swiper_slide {
    padding-top: 168px;
    padding-bottom: 168px;
  }
  .building-block_hero-image .swiper_hero .swiper_hero_navigation_wrapper {
    bottom: 45px;
  }
  .building-block_text-with-image .image_wrapper {
    margin-top: 0;
  }
  .building-block_text-with-image .image_wrapper .image:first-of-type {
    width: 55%;
    height: 290px;
  }
  .building-block_text-with-image .image_wrapper .image:last-of-type {
    width: 75%;
    height: 399px;
    margin-right: 30px;
  }
  .building-block_text-with-image .image_wrapper .border {
    width: 55%;
    height: 290px;
  }
  .building-block_text .image_wrapper {
    width: 95%;
    height: 600px;
  }
  .building-block_text .image_wrapper .semi-circle {
    height: 75px;
    width: 140px;
  }
  .building-block_text .image_wrapper .semi-circle-1 {
    left: -8%;
    top: -5%;
    transform: rotate(330deg);
  }
  .building-block_text .image_wrapper .semi-circle-2 {
    right: -9%;
    bottom: -4%;
    transform: rotate(315deg);
    width: 110px;
    height: 55px;
  }
  .building-block_text .col-12:first-of-type .image_wrapper {
    left: -5%;
  }
  .building-block_text .col-12:first-of-type .image_wrapper .semi-circle-1 {
    right: -8%;
  }
  .building-block_text .col-12:first-of-type .image_wrapper .semi-circle-2 {
    left: -8%;
  }
  .building-block_text .col-12:nth-of-type(2) .image_wrapper {
    right: -5%;
  }
  .building-block_logos .swiper_logos .swiper_wrapper .swiper_slide {
    width: 330px;
  }
  .building-block_form-with-image-or-map .image_wrapper, .building-block_form-with-image-or-map .map_wrapper {
    height: 100%;
  }
  .building-block_gallery-slider .swiper_gallery-slider .swiper_wrapper .swiper_slide img {
    height: 555px;
  }
  .building-block_gallery-block .row.grid {
    display: grid;
    grid-auto-rows: 150px;
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
    grid-gap: 0;
  }
  .building-block_gallery-block .row.grid .col-md-4 {
    width: 100%;
    margin: 0rem 0rem 1.5rem 0rem;
    grid-row: span 2;
  }
  .building-block_gallery-block .row.grid .col-md-4 .image_wrapper {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .building-block_gallery-block .row.grid .col-md-4:nth-of-type(3) {
    grid-row: span 4;
  }
  .building-block_testimonials .swiper-slide {
    padding: 0 65px;
  }
  .building-block_testimonials .swiper-slide p {
    font-size: 1.875rem;
    line-height: 38px;
  }
  .building-block_testimonials .swiper_testimonial_slider_navigation_wrapper {
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    position: absolute;
    margin-top: 0;
  }
  .building-block_testimonials .swiper_testimonial_slider_navigation#swiper_testimonial_slider_navigation_next {
    position: absolute;
    right: 35px;
    left: auto;
  }
  .building-block_testimonials .swiper_testimonial_slider_navigation#swiper_testimonial_slider_navigation_prev {
    position: absolute;
    left: 15px;
    right: auto;
  }
  .building-block_posts.posts .post .content_wrapper .content {
    max-width: 88%;
    text-align: left;
  }
  .building-block_quote h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .building-block_image_text_contact_details_blocks .image_wrapper {
    height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .building-block_hero-image {
    min-height: 500px;
  }
  .building-block_icon_text_blocks .blocks .block_wrapper .hover .content {
    transition: all 0.25s ease-in-out;
  }
  .building-block_logos .slider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
  }
  .building-block_logos .swiper_logo_slider_navigation_wrapper {
    padding-left: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .building-block_hero-video {
    padding-top: 192px;
    padding-bottom: 96px;
  }
  .building-block_hero-video .button_play-video {
    bottom: 48px;
    right: 48px;
  }
  .building-block_hero-image .swiper_hero .swiper_wrapper .swiper_slide {
    padding-top: 192px;
    padding-bottom: 192px;
  }
  .building-block_hero-image .swiper_hero .swiper_hero_navigation_wrapper {
    bottom: 48px;
  }
  .building-block_gallery-slider .swiper_gallery-slider .swiper_wrapper .swiper_slide img {
    height: 666px;
  }
}
.footer * {
  color: #FEFEFE;
}
.footer .footer_top .padding-bottom_small {
  padding-bottom: 25px;
}
.footer .footer_top .logo_company {
  width: 250px;
  height: auto;
  color: #101828;
}
.footer .footer_top .logo_company img {
  width: 250px;
  height: auto;
}
.footer .footer_top nav ul {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .footer_top nav ul li {
  padding: 0;
  margin: 16px 0 0 0;
}
.footer .footer_top nav ul li a {
  position: relative;
  border-bottom: none;
  color: #FEFEFE;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
  transition: all 0.25s ease-in-out;
}
.footer .footer_top nav ul li a:before, .footer .footer_top nav ul li a:after {
  display: none;
}
.footer .footer_top nav ul li a:hover {
  color: #00B2D2;
}
.footer .footer_top nav ul li:last-of-type {
  margin-right: 0;
}
.footer .footer_top .newsletter p {
  font-weight: 500;
}
.footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 0;
}
.footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container .frm_form_field, .footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container .frm_submit {
  width: 100%;
}
.footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container .frm_submit .frm_button_submit {
  background-color: #344054;
  border-radius: 8px;
}
.footer .footer_top .contact-details a {
  color: #EAECF0;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease-in-out;
}
.footer .footer_top .contact-details a:before, .footer .footer_top .contact-details a:after {
  display: none;
}
.footer .footer_top .contact-details a:hover {
  color: #00B2D2;
}
.footer .footer_bottom span, .footer .footer_bottom a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #EAECF0;
}
.footer .footer_bottom span {
  margin: 0rem 0rem 0.75rem 0rem;
}
.footer .footer_bottom a {
  margin: 0px 16px 0px 16px;
  transition: all 0.25s ease-in-out;
}
.footer .footer_bottom a:first-of-type {
  margin: 0px 16px 0px 0px;
}
.footer .footer_bottom a:last-of-type {
  margin: 0px 0px 0px 16px;
}
.footer .footer_bottom a.author svg {
  margin: -1px 0 0 5px;
}
.footer .footer_bottom a.author svg path {
  transition: all 0.25s ease-in-out;
}
.footer .footer_bottom a:hover {
  color: #00B2D2;
}
.footer .footer_bottom a:hover svg path {
  fill: #00B2D2;
}
.footer .footer_bottom:before {
  width: calc(100% - 1.5rem);
  height: 1px;
  top: 0;
  left: 0.75rem;
  position: absolute;
  background-color: #FEFEFE;
  content: "";
}

@media screen and (min-width: 768px) {
  .footer .footer_top .logo_company {
    margin: 0;
  }
  .footer .footer_top nav ul {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer .footer_top nav ul li {
    margin: 15px 32px 0px 0px;
  }
  .footer .footer_bottom span {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer_top .padding-bottom_small {
    padding-bottom: 50px;
  }
  .footer .footer_top nav ul {
    justify-content: center;
  }
  .footer .footer_top nav ul li {
    margin: 15px 32px 15px 0px;
  }
  .footer .footer_top .contact-details {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container {
    flex-flow: nowrap;
  }
  .footer .footer_top .newsletter .frm_forms#frm_form_4_container form .frm_form_fields fieldset .frm_fields_container .frm_submit {
    width: 175px;
    margin: 0rem 0rem 0rem 0.75rem;
  }
}
.header {
  height: 80px;
  border-bottom: 1px solid #F1F5F9;
  z-index: 99;
}
.header .logo_company {
  width: 100%;
  max-width: 150px;
  height: auto;
  color: #101828;
}
.header .logo_company img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.header .hamburger_container {
  padding: 15px;
  margin: 0px 0px 0px 32px;
  background-color: #F1F5F9;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}
.header .hamburger_container .hamburger_wrapper {
  width: 30px;
  height: 30px;
}
.header .hamburger_container .hamburger_wrapper .hamburger {
  width: 100%;
  height: 100%;
}
.header .hamburger_container .hamburger_wrapper .hamburger .bun {
  width: 100%;
  height: 2px;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #101828;
  transition: 0.3s width cubic-bezier(0.2, 0.6, 0.3, 1), transform 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
  will-change: width, transform;
}
.header .hamburger_container .hamburger_wrapper .hamburger .bun.top {
  transform: translateY(-5px);
}
.header .hamburger_container .hamburger_wrapper .hamburger .bun.bottom {
  transform: translateY(5px);
}
.header .hamburger_container.is-active .hamburger_wrapper .hamburger .bun.top {
  width: 24px;
  transform: translateX(3px) rotate(-135deg);
}
.header .hamburger_container.is-active .hamburger_wrapper .hamburger .bun.bottom {
  width: 24px;
  transform: translateX(3px) rotate(135deg);
}
.header .divider {
  margin: 0px 16px 0px 16px;
  color: rgba(16, 24, 40, 0.1);
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
}
.header nav ul li a {
  transition: all 0.25s ease-in-out;
}
.header nav ul li a:hover {
  color: #00B2D2;
}
.header nav ul li.current-menu-item a {
  color: #00B2D2;
}

.home .header {
  border-bottom: none;
}

.primary-navigation {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  transition: 0.6s cubic-bezier(0.2, 0.6, 0.3, 1);
  will-change: transform, opacity, visibility;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.primary-navigation nav {
  padding: 128px 0px 48px 0px;
}
.primary-navigation nav ul {
  margin: 0;
  list-style: none;
}
.primary-navigation nav ul li {
  padding: 0;
  margin: 0rem 0rem 1.5rem 0rem;
}
.primary-navigation nav ul li a {
  display: block !important;
  color: #101828 !important;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
  transition: all 0.25s ease-in-out;
}
.primary-navigation nav ul li a:before {
  display: none;
}
.primary-navigation nav ul li a:hover {
  color: #00B2D2 !important;
}
.primary-navigation nav ul li ul {
  width: 100%;
  height: 100vh;
  padding: 128px 1.5rem 48px 1.5rem;
  top: 0;
  left: 0;
  transform: translateX(100%);
  position: absolute;
  background-color: #e6edf4;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
  will-change: transform, opacity, visibility;
}
.primary-navigation nav ul li ul li.back a {
  padding: 0rem 0rem 0rem 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.primary-navigation nav ul li ul li.back a:before {
  width: 12px !important;
  height: 12px !important;
  top: calc(50% + 0px) !important;
  left: 0 !important;
  right: auto !important;
  transform: translateY(-50%) rotate(-135deg) !important;
  position: absolute;
  display: block;
  background-color: transparent !important;
  border-top: 2px solid;
  border-right: 2px solid;
  content: "";
}
.primary-navigation nav ul li ul.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.primary-navigation nav ul li.menu-item-has-children > a {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.primary-navigation nav ul li.menu-item-has-children > a:after {
  width: 12px !important;
  height: 12px !important;
  top: calc(50% + 1px) !important;
  left: auto !important;
  right: 10px !important;
  transform: translateY(-50%) rotate(45deg) !important;
  position: absolute;
  display: block;
  background-color: transparent !important;
  border-top: 2px solid;
  border-right: 2px solid;
  content: "";
}
.primary-navigation::-webkit-scrollbar {
  display: none;
}
.primary-navigation.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .primary-navigation {
    max-width: 320px;
  }
  .primary-navigation nav {
    padding: 152px 0px 72px 0px;
  }
  .primary-navigation nav ul li ul {
    padding: 152px 1.5rem 72px 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .header nav ul {
    margin: 0;
    display: flex;
    list-style: none;
  }
  .header nav ul li {
    margin: 0px 16px 0px 16px;
  }
  .header nav ul li a {
    position: relative;
    color: #101828;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 24px;
  }
}
/**
* Hybrid
* Starter Theme.
* Created by Anonymous.
*/
/**
* _login - Small.
*/
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../../fonts/wordpressNeueHaasDisplay-Roman.eot");
  src: url("../../fonts/wordpress/NeueHaasDisplay-Roman.eot?#iefix") format("embedded-opentype"), url("../../fonts/wordpress/NeueHaasDisplay-Roman.woff2") format("woff2"), url("../../fonts/wordpress/NeueHaasDisplay-Roman.woff") format("woff"), url("../../fonts/wordpress/NeueHaasDisplay-Roman.ttf") format("truetype"), url("../../fonts/wordpress/NeueHaasDisplay-Roman.svg#NeueHaasDisplay-Roman") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body.login-action-confirm_admin_email #login .admin-email__heading:before,
body.login-action-confirm_admin_email #login .admin-email__heading:after {
  display: none;
}

body.login-action-confirm_admin_email #login .admin-email__heading {
  padding: 0;
}

body.login-action-confirm_admin_email #login {
  box-shadow: none !important;
}

body.login {
  background-color: #FEFEFE;
}

body.login svg {
  display: none;
}

body.login #login {
  position: relative;
  width: 100% !important;
  min-height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body.login #login h1 {
  width: 100%;
  max-width: calc(320px - 1.25rem);
  padding: 1.875rem;
  margin: 0;
  color: #29293D;
  display: flex;
  justify-content: center;
}

body.login #login h1 a {
  /*display: none;*/ /* add if no cross collab logo */
  background-image: none;
  position: relative;
  margin: 0 20px 0;
  height: auto;
  width: 20px;
}

/* add if cross collab logo */
body.login #login h1 a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #29293D;
  line-height: 22px;
  text-indent: 0;
  width: 75px;
  height: 20px;
  line-height: 22px;
  text-indent: 0;
  transform: translate(-50%, -50%);
  background-image: url("../../images/wordpress/login_cross.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

body.login #login h1:before {
  width: 75px;
  height: 48px;
  margin: 0rem 0rem 0rem 0rem;
  background-image: url("../../images/wordpress/login_company-logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

/* add if cross collab logo */
body.login #login h1:after {
  width: 75px;
  max-width: none;
  height: 48px;
  margin: 0rem 0rem 0rem 0rem;
  background-image: url("../../images/wordpress/login_company-logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

body.login #login form {
  width: 100%;
  max-width: calc(320px - 1.25rem);
  padding: 0.9375rem;
  margin: 0;
  border: none;
  box-shadow: none;
}

body.login #login form label, body.login #login form input {
  font-family: "Neue Haas Grotesk Display Pro";
  color: #29293D;
  font-size: 16px;
  line-height: 22px;
}

body.login #login form label {
  margin: 0px 0px 5px 0px;
  font-size: 16px;
  line-height: 22px;
}

body.login #login form input[type=text], body.login #login form input[type=password], body.login #login form input[type=checkbox] {
  width: 100%;
  height: 50px;
  padding: 0rem 0.625rem 0rem 0.625rem;
  margin: 0rem 0rem 1.5625rem 0rem;
  background-color: #FEFEFE;
  border: 1px solid #C3C3D6;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  color: #29293D;
  line-height: 48px;
}

body.login #login form .wp-hide-pw {
  min-width: 50px;
  min-height: 50px;
  outline: none;
  box-shadow: none;
}

body.login #login form .wp-hide-pw span {
  color: #7773FF;
}

body.login #login form .forgetmenot {
  height: 50px;
  display: flex;
  align-items: center;
}

body.login #login form .forgetmenot input[type=checkbox] {
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0rem 0.625rem 0rem 0rem;
  background-color: #FEFEFE;
  border: 1px solid #C3C3D6;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
}

body.login #login form .forgetmenot input[type=checkbox]:before {
  width: 4px;
  height: 12px;
  margin: 0;
  top: -14px;
  transform: rotate(45deg);
  position: relative;
  display: none;
  border-bottom: 3px solid #7773FF;
  border-right: 3px solid #7773FF;
  float: none;
  vertical-align: baseline;
  content: "";
}

body.login #login form .forgetmenot input[type=checkbox]:checked:before {
  display: inline-block;
}

body.login #login form .forgetmenot label {
  margin: 0;
  line-height: 20px;
}

body.login #login form input[type=text]:focus, body.login #login form input[type=password]:focus, body.login #login form .forgetmenot input[type=checkbox]:focus {
  border: 1px solid #7773FF;
  outline: none;
  box-shadow: none;
}

body.login #login form .submit input[type=submit] {
  width: auto;
  min-width: 125px;
  height: 50px;
  padding: 0 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7773FF;
  border: none;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  color: #FEFEFE;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 16px;
  transition: 0.4s cubic-bezier(0.51, 0.18, 0, 0.88);
}

body.login #login form .submit input[type=submit]:focus {
  background-color: #CC54BA;
}

body.login #nav, body.login #backtoblog {
  margin: 1.9375rem 0rem 0rem 0rem;
}

body.login #nav a, body.login #backtoblog a, body.login .privacy-policy-page-link a {
  position: relative;
  display: inline-block;
  color: #29293D;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  text-decoration: none;
}

body.login #nav a:before, body.login #nav a:after, body.login #backtoblog a:before, body.login #backtoblog a:after, body.login .privacy-policy-page-link a:before, body.login .privacy-policy-page-link a:after {
  width: 0;
  height: 1px;
  top: 100%;
  right: 0;
  position: absolute;
  content: "";
}

body.login #nav a:before, body.login #backtoblog a:before, body.login .privacy-policy-page-link a:before {
  background-color: rgba(94, 90, 219, 0.1);
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
}

body.login #nav a:after, body.login #backtoblog a:after, body.login .privacy-policy-page-link a:after {
  background-color: rgba(94, 90, 219, 1);
  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

body.login #nav a:focus, body.login #backtoblog a:focus, body.login .privacy-policy-page-link a:focus {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: #7773FF;
}

body.login .privacy-policy-page-link {
  padding: 0rem 0rem 0.9375rem 0rem;
  margin: 1.875rem 0rem 0rem 0rem;
}

.login .message, .login .success, .login #login_error {
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 14px;
  width: 100%;
  max-width: calc(320px - 1.25rem);
  padding: 0.9375rem;
  margin: 0rem 0rem 0.9375rem 0rem;
  background-color: #FEFEFE;
  border-left: 5px solid #7773FF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher {
  display: none;
}

/**
* _login - Medium.
*/
@media screen and (min-width: 640px) {
  body.login #login h1 {
    width: 360px;
    max-width: 360px;
  }
  body.login #login form {
    width: 360px;
    max-width: 360px;
    padding: 1.875rem;
  }
  body.login #login form input[type=text], body.login #login form input[type=password] {
    padding: 0rem 0.9375rem 0rem 0.9375rem;
    margin: 0rem 0rem 1.5625rem 0rem;
  }
  body.login #nav, body.login #backtoblog {
    margin: 2.875rem 0rem 0rem 0rem;
  }
  body.login .privacy-policy-page-link {
    padding: 0rem 0rem 1.875rem 0rem;
  }
  .login .message, .login .success, .login #login_error {
    width: 360px;
    max-width: 360px;
    padding: 1.875rem;
    margin: 0rem 0rem 1.875rem 0rem;
  }
}
/**
* _login - Large.
*/
@media screen and (min-width: 1024px) {
  body.login svg {
    display: block;
    position: absolute;
    height: 100%;
    width: 40%;
    top: 0;
    left: 0;
  }
  body.login svg path#Path_4, body.login svg path#Path_6,
  body.login svg path#Path_29, body.login svg path#Path_22,
  body.login svg path#Path_470, body.login svg path#Path_464,
  body.login svg path#Path_473 {
    animation: fade-out-One 6s infinite;
  }
  body.login svg path#Path_15, body.login svg path#Path_11,
  body.login svg path#Path_13, body.login svg path#Path_9,
  body.login svg path#Path_19, body.login svg path#Path_27,
  body.login svg path#Path_463, body.login svg path#Path_477,
  body.login svg path#Path_475, body.login svg path#Path_489 {
    animation: fade-out-Two 12s infinite;
  }
  body.login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: rgb(142, 118, 245);
    background: linear-gradient(90deg, #8E76F5 0%, #CC54BA 100%);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  /* 50% opacity */
  @keyframes fade-out-One {
    0% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.5;
    }
  }
  /* 20% opacity */
  @keyframes fade-out-Two {
    0% {
      opacity: 0.2;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.2;
    }
  }
  body.login #login {
    width: 60% !important;
    left: 85%;
    transform: translateX(-75%);
    box-shadow: -10px 0px 15px rgba(0, 0, 0, 0.4);
  }
  body.login #login form label, body.login #login form input {
    font-size: 18px;
  }
  body.login #login form .submit input[type=submit] {
    font-size: 18px;
  }
  body.login #login form .submit input[type=submit]:hover {
    background-color: #CC54BA;
  }
  body.login #nav a:hover, body.login #backtoblog a:hover, body.login .privacy-policy-page-link a:hover {
    color: #7773FF;
  }
  body.login #nav a:hover:before, body.login #nav a:hover:after, body.login #backtoblog a:hover:before, body.login #backtoblog a:hover:after, body.login .privacy-policy-page-link a:hover:before, body.login .privacy-policy-page-link a:hover:after {
    width: 100%;
    left: 0;
  }
  body.login #backtoblog {
    position: absolute;
    bottom: 80px;
    /* width: 100%; */
    width: calc(50% - 50px);
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    /* justify-content: center; */ /* comment out if no privacy policy present */
    justify-content: flex-end;
  }
  body.login .privacy-policy-page-link {
    position: absolute;
    bottom: 80px;
    width: calc(50% - 10px);
    margin: 0;
    padding: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
  }
  body.login #nav a, body.login #backtoblog a, body.login .privacy-policy-page-link a {
    font-size: 18px;
  }
}
@media screen and (max-height: 820px) {
  body.login #backtoblog {
    bottom: 25px;
  }
  body.login .privacy-policy-page-link {
    bottom: 25px;
  }
}
@media screen and (max-height: 650px) {
  body.login #backtoblog,
  body.login .privacy-policy-page-link {
    width: -moz-fit-content;
    width: fit-content;
    bottom: 0;
    position: relative;
    display: inline-block;
    margin: 2.875rem 0rem 0rem 0rem;
  }
}
* {
  color: #344054;
  font-family: "Urbanist", sans-serif;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.container-fluid {
  width: 100%;
  max-width: none;
}
.container-fluid .container {
  width: 100%;
  max-width: 1280px;
}

ul, ol {
  padding: 0;
}

a {
  text-decoration: none;
}

.default-content_text h1:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text h2:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text h3:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text h4:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text h5:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text h6:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text p:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text ul:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text ol:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text li:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text a:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button), .default-content_text span:last-child:not(.woocommerce-message):not(.woocommerce-error):not(.cart-empty):not(.ignore):not(.button) {
  margin-bottom: 0 !important;
}
.default-content_text h1, .default-content_text h2, .default-content_text h3 {
  margin: 3rem 0rem 2rem 0rem;
}
.default-content_text h1:first-of-type, .default-content_text h2:first-of-type, .default-content_text h3:first-of-type {
  margin: 0rem 0rem 2rem 0rem;
}
.default-content_text h4, .default-content_text h5, .default-content_text h6 {
  margin: 2rem 0rem 1.5rem 0rem;
}
.default-content_text h4:first-of-type, .default-content_text h5:first-of-type, .default-content_text h6:first-of-type {
  margin: 0rem 0rem 1.5rem 0rem;
}
.default-content_text img.aligncenter {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.default-content_text strong {
  color: #00B2D2;
}
.default-content_text ul, .default-content_text ol {
  margin: 2rem 0rem 2.5rem 3rem;
  font-size: 1rem;
  line-height: 24px;
}
.default-content_text ul li, .default-content_text ol li {
  padding: 0rem 0rem 0.625rem 0rem;
}
.default-content_text ul li:last-of-type, .default-content_text ol li:last-of-type {
  padding-bottom: 0;
}
.default-content_text ul {
  margin: 2rem 0rem 2.5rem 1rem;
}
.default-content_text ol li {
  counter-increment: step-counter;
  position: relative;
  list-style: none;
  font-weight: 500;
  padding: 0rem 0rem 1.5rem 1.4rem;
}
.default-content_text ol li:before {
  content: counter(step-counter);
  font-size: 32px;
  line-height: 40px;
  width: 50px;
  height: 50px;
  color: #036c87;
  font-weight: 600;
  position: absolute;
  left: -45px;
  top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.default-content_text ol li:after {
  content: "";
  position: absolute;
  left: -45px;
  top: -10px;
  height: 25px;
  width: 50px;
  border-radius: 150px 150px 0 0;
  background-color: rgba(0, 178, 210, 0.5);
}
.default-content_text ol li:nth-of-type(2):after, .default-content_text ol li:nth-of-type(3n + 2):after {
  height: 50px;
  width: 25px;
  border-radius: 150px 0 0 150px;
}
.default-content_text ol li:nth-of-type(3):after, .default-content_text ol li:nth-of-type(3n + 3):after {
  height: 25px;
  width: 50px;
  border-radius: 0 0 150px 150px;
  top: auto;
  bottom: -12px;
}
.default-content_text a:not([class]) {
  position: relative;
  display: inline-block;
  color: #00B2D2;
  font-weight: 600;
}
.default-content_text a:not([class]):before {
  width: 100%;
  height: 2px;
  top: calc(100% - 2px);
  left: 0;
  position: absolute;
  background-color: #00b2d2;
  content: "";
}
.default-content_text.background-colour_slate-900 * {
  color: #EAECF0;
}

.woocommerce .default-content_text a:not([class]), .woocommerce-page .default-content_text a:not([class]) {
  color: inherit;
  font-weight: inherit;
}
.woocommerce .default-content_text a:not([class]):before, .woocommerce-page .default-content_text a:not([class]):before {
  display: none;
}

.breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0;
}
.breadcrumbs .breadcrumb, .breadcrumbs .spacer_for-breadcrumb {
  margin: 0;
  color: #101828 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 21px !important;
  text-decoration: none !important;
}
.breadcrumbs .breadcrumb.is-active, .breadcrumbs .spacer_for-breadcrumb.is-active {
  font-weight: 600 !important;
}
.breadcrumbs .container .row .col-12 {
  white-space: nowrap;
  overflow: hidden;
}

.posts .post .image_wrapper {
  padding: 62.5% 0% 0% 0%;
  overflow: hidden;
  border-radius: 8px;
}
.posts .post .image_wrapper .image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale3d(1, 1, 1);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.7s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.posts .post .content_wrapper {
  margin: 1.5rem 0rem 0rem 0rem;
}
.posts .post .content_wrapper .content {
  max-width: 88%;
}
.posts .post .content_wrapper .content .link_text {
  color: #00B2D2;
  font-weight: 600;
  line-height: 28px;
}
.posts .post .content_wrapper .content .link_text i {
  margin: 0rem 0rem 0rem 0.375rem;
  color: #00B2D2;
}
.posts .post .content_wrapper .content .link_text svg {
  width: 60px;
  height: 25px;
  transform: scale(0.6);
}
.posts .post .content_wrapper .content .link_text svg path {
  transition: all 0.25s ease-in-out;
}
.posts .post .content_wrapper .content .link_text:before, .posts .post .content_wrapper .content .link_text:after {
  display: none;
}
.posts .post .content_wrapper .content p {
  font-size: 1rem;
}
.posts .post .content_wrapper .content .col-auto {
  padding-right: 8px;
  padding-left: 8px;
}
.posts .post.featured .wrapper {
  padding: 125% 0% 0% 0%;
  border-radius: 8px;
}
.posts .post.featured .wrapper .image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale3d(1, 1, 1);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.7s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.posts .post.featured .wrapper .content {
  max-width: calc(100% - 1.5rem - 1.5rem);
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
}
.posts .post.featured .wrapper .content h5, .posts .post.featured .wrapper .content p {
  color: #FEFEFE !important;
}
.posts .post.featured .wrapper .content .link_text {
  color: #00B2D2;
  font-weight: 600;
}
.posts .post.featured .wrapper .content .link_text i {
  margin: 0rem 0rem 0rem 0.375rem;
  color: #00B2D2;
}
.posts .post.featured .wrapper .content .link_text svg {
  width: 60px;
  height: 25px;
  transform: scale(0.6);
}
.posts .post.featured .wrapper .content .link_text svg path {
  transition: all 0.25s ease-in-out;
}
.posts .post.featured .wrapper:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  z-index: 1;
  content: "";
  border-radius: 8px;
}
.posts .post:hover .image_wrapper .image, .posts .post:hover .wrapper .image, .posts .post:focus .image_wrapper .image, .posts .post:focus .wrapper .image {
  transform: scale3d(1.04, 1.04, 1.04);
}
.posts .post:hover .content_wrapper svg path, .posts .post:hover .content svg path, .posts .post:focus .content_wrapper svg path, .posts .post:focus .content svg path {
  d: path("M0 9.35772H50.9956L44.2001 2.29941L46.4134 0L57 11L46.4134 22L44.2001 19.7006L50.9956 12.6423H0V9.35772Z");
  d: "M0 9.35772H50.9956L44.2001 2.29941L46.4134 0L57 11L46.4134 22L44.2001 19.7006L50.9956 12.6423H0V9.35772Z";
}

.posts_pagination .posts_pagination_inner {
  border-top: 1px solid #EAECF0;
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper {
  position: relative;
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers {
  min-width: 40px;
  height: 40px;
  margin: 0rem 0.375rem 0rem 0.375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #FEFEFE;
  color: #475467;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 40px;
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers.prev, .posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers.next {
  padding: 0rem 1rem 0rem 1rem;
  background-color: #FEFEFE;
  color: #475467;
  position: absolute;
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers.next {
  right: 0;
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers.prev {
  left: 0;
}
.posts_pagination .posts_pagination_inner .page-numbers_wrapper .page-numbers.current {
  background-color: #D4EDF1;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: 0.2s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: 0.2s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-iframe-holder .mfp-close {
  padding: 0;
  top: -60px;
  right: 0;
}

@media screen and (min-width: 768px) {
  .default-content_text ul li {
    padding: 0rem 0rem 0.9375rem 0rem;
  }
  .default-content_text ol li {
    padding: 0rem 0rem 0rem 1.4rem;
    margin-bottom: 2.5rem;
  }
  .default-content_text ul, .default-content_text ol {
    margin: 2rem 0rem 2.5rem 3rem;
    font-size: 1.125rem;
    line-height: 28px;
  }
  .breadcrumbs {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .posts .post.featured .wrapper {
    height: 100%;
    padding: 0;
  }
  .posts .post.featured .wrapper .content {
    max-width: calc(77% - 2.25rem - 2.25rem);
    left: 2.25rem;
    bottom: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumbs {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .breadcrumbs .container .row .col-12 {
    white-space: normal;
    overflow: visible;
  }
  .posts .post.featured .wrapper .content {
    max-width: calc(66% - 2.25rem - 2.25rem);
  }
}/*# sourceMappingURL=custom.css.map */