/* ==============
    Base Setup
   ============== */
/*#region BaseSetup */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
svg,
video {
  vertical-align: middle;
}

img {
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

body {
  font-family: "Barlow", sans-serif;
  font: "Barlow";
  width: 100%;
  height: 100%;
  background-color: #f8f4f4;
}

/*#endregion BaseSetup */

/* ==============
    Header
   ============== */

/*#region HeaderAndMenu */

@media only screen and (max-width: 1140px) {
  .header-shape {
    display: none;
  }
}

.header-container {
  width: 100%;
  min-height: 800px;
  background-image: url("../img/main-image.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .header-container {
    background-image: url("../img/main-image-mobile.webp");
  }
}
.main-container {
  overflow-x: hidden;
  width: 100%;
}

.footer-container {
  overflow-x: hidden;
  width: 100%;
}

.header-shape {
  width: 130px;
  z-index: 20;
  height: 100vh;
  max-height: 1000px;
  border-radius: 100%/50%;
  background-color: #2d2e83;
  position: absolute;
  right: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  top: 25vh;
}

.header-content {
  text-align: center;
  z-index: 20;
}

.header-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.header-title h1 {
  text-align: left;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 800;
  margin-left: 10%;
  font-size: 100px;
  line-height: 95px;
  text-transform: uppercase;
  color: #009fe3;
  text-shadow: 1px 1px 0px #005980;
}

.header-text {
  background-color: #2d2e83;
  border-radius: 30px;
  padding: 30px 30px;
  margin-left: 10%;
  max-width: 540px;
  margin-bottom: 50px;
}

.header-text p {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  line-height: 30px;
  color: #f3f3f3;
}

.logo {
  width: 134px;
  height: 161px;
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #cdcdcd;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  right: 0;
}

.menu-container a {
  text-decoration: none;
  color: #ececec;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #009fe3;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #2d2e83;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #ececec !important;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
  list-style: none;
  text-align: center;
  padding: 0 20%;
}

.menu li {
  padding: 20px 0;
  font-size: 22px;
}

.menu li:last-child {
  border-bottom: 0px;
}

@media only screen and (max-width: 1140px) {
  .header-title {
    margin-top: 100px;
  }
  .header-title h1 {
    font-size: 90px;
    line-height: 85px;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1140px) {
  .header-title h1 {
    font-size: 65px;
    line-height: 70px;
    margin-top: 100px;
  }
  .header-text {
    padding: 20px;
    max-width: 440px;
  }

  .header-text p {
    font-size: 20px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1141px) {
  .header-title h1 {
    font-size: 80px;
    margin-top: 100px;
  }
}
/* mobile styles */

@media only screen and (max-width: 900px) {
  .position-fixed {
    position: fixed !important;
  }

  .header-text {
    margin-left: 10%;
    margin-right: 10%;
  }

  .header-title h1 {
    text-align: left;
    font-style: normal;
    font-weight: 800;
    margin-left: 10%;
    font-size: 60px;
    line-height: 55px;
  }

  .menu-container {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
    margin-right: 10px;
    z-index: 30;
  }

  .menu {
    position: fixed;
    box-sizing: border-box;
    width: calc(100% + 20px);
    right: calc(-100% - 20px);
    top: 0;
    height: 200vh;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #2d2e83;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(-102%);
  }

  .menu li {
    border-bottom: 2px solid #ececec4a;
  }

  .header-title h1 {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10%;
    margin-top: 300px;
  }
  .header-title {
    bottom: -200px;
    text-align: center;
    left: auto;
    right: auto;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  .header-text {
    background-color: #2d2e83;
    border-radius: 30px;
    padding: 30px 50px;
    max-width: 540px;
    text-align: center;
    display: inline-block;
  }
  .header-text p {
    font-weight: 400;
  }
}
@media only screen and (min-width: 550px) and (max-width: 900px) {
  .header-title h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .header-text {
    padding: 15px 25px;
  }

  .header-text p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 200;
  }
}
@media only screen and (max-width: 900px) {
  .header-content {
    margin-top: 40px;
  }
}
/* desktop styles */
@media only screen and (min-width: 901px) {
  .header-content {
    margin-top: -130px;
  }

  .menu {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    margin-right: 10%;
  }

  .menu-container {
    width: 100%;
    top: 50px;
  }

  .menu-container .menu ul {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-end;
  }

  .menu-container .menu ul li {
    padding: 5px 0;
    padding-right: 20px;
    margin-right: 15px;
    z-index: 21;
    position: relative;
    border-right: 3px solid #2d2e83;
  }

  .menu-container .menu ul li:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }

  .menu-container .menu ul li:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .menu-container a {
    color: #2d2e83;
    text-transform: uppercase;
    font-family: "Barlow";
    letter-spacing: 0.045em;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: right;
  }

  .menu-container input {
    display: none;
  }

  /* Burger menu */
  .menu-container span {
    display: none;
  }
}

/*#endregion HeaderAndMenu */

/* ==========================================================================
    Media Queries
   ========================================================================== */

.flex-order-1 {
  order: 5;
}

.flex-order-2 {
  order: 4;
}

.flex-order-3 {
  order: 3;
}

.flex-order-4 {
  order: 2;
}

.flex-order-5 {
  order: 1;
}

.flex-column-70 {
  flex: 100%;
}

.flex-column-60 {
  flex: 100%;
}

.flex-column-50 {
  flex: 100%;
}

.flex-column-40 {
  flex: 100%;
}

.flex-column-30 {
  flex: 100%;
}

@media only screen and (min-width: 480px) {
}

@media only screen and (min-width: 901px) {
}

@media only screen and (min-width: 1140px) {
  .flex-order-1 {
    display: flex;
    order: 1;
  }

  .flex-order-2 {
    display: flex;
    order: 2;
  }

  .flex-order-3 {
    display: flex;
    order: 3;
  }

  .flex-order-4 {
    display: flex;
    order: 4;
  }

  .flex-order-5 {
    display: flex;
    order: 5;
  }
  .flex-column-70 {
    flex: 70%;
  }

  .flex-column-60 {
    flex: 60%;
  }

  .flex-column-50 {
    flex: 50%;
  }

  .flex-column-40 {
    flex: 40%;
  }

  .flex-column-30 {
    flex: 30%;
  }
}

/* ==========================================================================
      Helper classes
     ========================================================================== */

/*#region Helpers */

.wrapper {
  width: 100%;
  margin: 0;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-dark-blue {
  background-color: #2d2e83;
}

.background-blue {
  background-color: #009fe3;
}
.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

hr.divider {
  width: 90px;
  height: 0;
  border: 3px solid #009fe3;
  border-radius: 99px;
  margin: 35px 0;
}
.section-title {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 58px;
  text-transform: uppercase;
  color: #009fe3;
  margin-bottom: 0;
  margin-top: 35px;
}

.section-text-header {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  text-transform: uppercase;
  color: #009fe3;
}

.section-header {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 58px;
  text-transform: uppercase;
  color: #f3f3f3;
  margin-top: 0;
  margin-bottom: 0;
}
.section-subheader {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  color: #2d2e83;
  margin-bottom: 0;
  margin-top: 0;
}

.section-text {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 0;
  margin-top: 0;
}

.text-black {
  color: #2d2e83;
}

.text-white {
  color: #ececec;
}

.center {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-summary {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 34px;
  color: #009fe3;
  margin-bottom: 35px;
  margin-top: 35px;
}

.default-wrapper {
  max-width: 1440px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

/*#endregion Helpers */

#about-me .section-wrapper {
  max-width: 720px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: left;
}

#about-me h2 p {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

#about-me .section-wrapper {
  max-width: 720px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 100px;
  margin-bottom: 100px;
}
.about-me-wrapper {
  text-align: left;
}
@media only screen and (max-width: 900px) {
  .about-me-wrapper {
    margin-top: 200px !important;
  }
}
@media only screen and (min-width: 1140px) {
  .about-me-wrapper {
    margin-left: 10%;
    margin-right: 10%;
  }
}
.default-wrapper #offer {
  margin: auto;
}
.default-wrapper #offer,
.default-wrapper #partners,
.default-wrapper #certificates {
  text-align: center;
}

.default-wrapper {
  margin-top: 120px;
  margin-bottom: 120px;
}

.development-wrapper,
.offer-wrapper {
  margin-top: 120px;
  margin-bottom: 120px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-column {
  padding-left: 0px;
  padding-right: 50px;
}
#development .section-wrapper {
  text-align: left;
}
.development-image {
  max-width: 467px;
  max-height: 200px;
  margin-top: 100px;
}

.section-title-development {
  line-height: 35px;
  margin-bottom: 20px;
  margin-right: 30%;
}

@media only screen and (max-width: 1280px) {
  .development-section-2-margin {
    margin-top: 60px;
  }
}
.offer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.offer-column-reverse {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.offer-box {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 650px;
}
.offer-border {
  width: 0;
  height: 90px;
  border: 3px solid #009fe3;
  border-radius: 99px;
}
.offer-number {
  font-size: 64px;
  color: #009fe3;
  min-width: 60px;
  font-weight: 800;
  padding-left: 30px;
  line-height: 64px;
}
.offer-text {
  margin-left: 40px;
}

.offer-text h4 {
  text-align: left;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 42px;
  text-transform: uppercase;
  color: #2d2e83;
  margin-top: 0;
  line-height: 26px;
  margin-bottom: 10px;
}

.offer-text p {
  text-align: left;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 25px;
  color: #2d2e83;
  margin-bottom: 0;
  margin-top: 0;
}

.offer-box-reverse {
  flex-direction: row-reverse;
}

.offer-box-reverse .offer-number {
  padding-left: 0;
  padding-right: 30px;
}

.offer-box-reverse .offer-text {
  margin-left: 40px;
  margin-right: 40px;
}
.offer-box-reverse .offer-text h4 {
  text-align: right;
  line-height: 26px;
  margin-bottom: 10px;
}
.offer-box-reverse .offer-text p {
  text-align: right;
}

@media only screen and (max-width: 700px) {
  .offer-text {
    margin-left: 10px !important;
  }
  .offer-number {
    padding-left: 10px !important;
  }
}

@media only screen and (max-width: 1140px) {
  .offer-column-reverse {
    align-items: flex-start;
  }
  .offer-box-reverse .offer-number {
    padding-left: 30px;
    padding-right: 0;
  }
  .offer-box-reverse .offer-text {
    margin-left: 40px;
    margin-right: 40px;
    text-align: left;
  }
  .offer-box {
    max-width: none;
    margin-bottom: 0;
  }
  .offer-box-reverse {
    flex-direction: row;
  }
  .offer-box-reverse .offer-text h4 {
    text-align: left;
  }
  .offer-box-reverse .offer-text p {
    text-align: left;
  }
}
#sentence .sentence-image-bg {
  border-bottom-right-radius: 500px;
  border-top-right-radius: 500px;
  margin-right: -100px;
  overflow: hidden;
}

#sentence .flex-column-60 {
  align-self: center;
}

#sentence .sentence-blue-bg {
  background-color: #009fe3;
  padding-right: 10%;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom-left-radius: 500px;
  border-top-left-radius: 500px;
  margin-left: -50px;
}
#sentence h2 {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  text-align: right;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 900px;
}

@media only screen and (max-width: 1140px) {
  #sentence .sentence-image-bg {
    border-radius: 0;
    margin-right: 0;
  }
  #sentence .sentence-blue-bg {
    border-radius: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  #sentence h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 500px) {
  #sentence h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1140px) {
  #partners .section-subheader,
  #certificates .section-subheader {
    font-size: 50px;
  }
}
h5.partners-description {
  text-align: center;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 25px;
  color: #2d2e83;
  margin-bottom: 30px;
  margin-top: 0;
}
.partners-column ul {
  text-align: left;
}
.partners-column ul li {
  font-weight: 700;
  font-size: 19px;
  line-height: 21px;
  color: #2d2e83;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.partners-column-reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.partners-column-reverse img {
  width: 23%;
  margin: 1%;
}

.certificates-column-reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: revert;
}

.certificates-column-reverse img {
  width: 100%;
}
#next-steps .section-title,
#next-steps .section-header,
#next-steps .divider {
  text-align: left;
  margin-right: auto;
}

#next-steps .flex {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.step-box {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  text-align: left;
}

.step-box .step-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.step-arrow {
  width: calc(100% - 106px);
  height: 89px;
  position: relative;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.step-arrow .step-arrow-line {
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #009fe3;
  border: 3px solid #009fe3;
  border-radius: 99px;
}

.step-arrow .step-arrow-line-2 {
  height: 2px;
  width: 30px;
  right: -10px;
  position: absolute;
  background-color: #009fe3;
  border: 3px solid #009fe3;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border-radius: 99px;
  top: 51px;
}
.step-arrow .step-arrow-line-3 {
  height: 2px;
  width: 30px;
  right: -10px;
  position: absolute;
  background-color: #009fe3;
  border: 3px solid #009fe3;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-radius: 99px;
  top: 30px;
}
.step-number {
  font-size: 64px;
  color: #009fe3;
  min-width: 60px;
  font-weight: 800;
  padding-right: 30px;
  line-height: 54px;
}
.step-text {
  max-width: 85%;
}

.step-text h4 {
  text-align: left;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0;
  color: #ffffff;
}

.step-text p {
  text-align: left;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0;
}

@media only screen and (max-width: 1140px) {
  .step-box {
    width: 100%;
  }
}
#about-me,
#development,
#offer,
#partners,
#certificates,
#next-steps,
#pricing,
#contact,
#footer {
  max-width: 1440px;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#about-me {
  max-width: 2000px;
}

#about-me .section-subheader p {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}
#footer {
  padding: 0;
}

#pricing .section-title,
#pricing .section-header {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
#pricing .divider {
  text-align: left;
  margin-right: auto;
}

#pricing .divider {
  margin-bottom: 50px !important;
}
#pricing .flex {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

#pricing .section-header {
  margin-right: 20px;
  line-height: 70px;
  font-size: 60px;
}

@media only screen and (max-width: 1140px) {
  #pricing .section-header,
  #next-steps .section-header {
    font-size: 40px;
    line-height: 45px;
  }
}
#pricing .pricing-box {
  background-color: #009fe3;
  padding: 100px 1%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.pricing-background {
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-image: conic-gradient(
      from 90deg at 50% 70%,
      #006b1a00 50%,
      #2d2e83 50%
    ),
    conic-gradient(from 0deg at 50% 50%, #fff 50%, #f8f4f4 50%),
    conic-gradient(from 270deg at 50% 50%, #ffffff00 50%, #ffffff 50%);
}
#pricing .pricing-box ul {
  list-style-type: none;
}
#pricing .pricing-box .price-column {
  padding-right: 30px;
}
#pricing .pricing-box .description-column ul {
  padding-inline-start: 30px;
}
#pricing .pricing-box .price-column ul {
  padding-left: 0px;
}

#pricing .border-column {
  width: 0;
  height: 270px;
  border: 3px solid #ffffff;
  border-radius: 99px;
  margin: 35px 0;
}
#pricing .pricing-box .price-column ul li {
  justify-content: flex-end;
}
#pricing .pricing-box ul li {
  color: #ffffff;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  /* or 34px */

  display: flex;
  align-items: center;
  letter-spacing: 0.045em;
}
@media only screen and (min-width: 1140px) {
  #pricing .pricing-box .mobile-column {
    display: none;
  }
}
@media only screen and (max-width: 1139px) {
  #pricing .pricing-box .description-column,
  #pricing .pricing-box .border-column,
  #pricing .pricing-box .price-column {
    display: none;
  }

  #pricing .pricing-box .mobile-column ul li b {
    display: flex;
    flex-wrap: nowrap;
  }

  #pricing .pricing-box .mobile-column ul li b {
    display: flex;
    border-bottom: 3px solid #ffffff;
    border-radius: 3px;
    text-align: center;
  }
  #pricing .pricing-box .mobile-column ul {
    padding-left: 0;
  }
  #pricing .pricing-box .mobile-column ul li {
    text-align: center;
    flex-direction: column;
    margin-bottom: 30px;
  }

  #pricing .pricing-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pricing-background {
    background-size: 100% 100%;
    background-position: 0px 0px, 0px 0px, 0px 0px;
    background-image: conic-gradient(
        from 90deg at 50% 70%,
        #006b1a00 50%,
        #2d2e83 50%
      ),
      conic-gradient(from 0deg at 50% 50%, #ffffff 50%, #ffffff 50%);
  }
}

#contact {
  z-index: 5;
}

#contact .section-wrapper {
  margin-top: 0;
  margin-bottom: 100px;
}
#contact .section-title,
#contact .contact-text {
  text-align: left;
}
#contact .section-header {
  color: #2d2e83;
  text-align: left;
}

#contact p {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 200px;
  max-width: 80%;
}
.contact-background {
  position: relative;
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-image: conic-gradient(
      from 180deg at 50% 50%,
      #006b1a00 50%,
      #fff 50%
    ),
    conic-gradient(from 90deg at 50% 65%, #009fe3 50%, #f8f4f4 50%),
    conic-gradient(from 180deg at 50% 50%, #ffffff00 50%, #ffffff 50%);
}
#contact .contact-info-background {
  height: 35%;
  position: absolute;
  bottom: 0;
  background-color: #009fe3;
  width: 10%;
  left: calc(50% - 5px);
  border-top-right-radius: 500px;
}
#contact .contact-info-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
#contact .contact-info-box a:first-child {
  margin-top: 140px;
}
#contact .contact-info-box a {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 26px;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 40px;
}

#contact .contact-info-box a:hover {
  text-decoration: underline;
}

#contact .contact-form-box .section-header {
  text-align: right;
  font-size: 36px;
}

#contact .contact-form-box .divider {
  text-align: right;
  width: 70%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 10px;
}

#contact .contact-form-box form {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: auto;
  max-width: 500px;
}

#contact .contact-form-box form input[type="submit"] {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 50px;
  width: 159px;
  height: 48px;
  font-weight: 600;
  opacity: 1;
  color: #ffffff;
  text-transform: uppercase;
  background: #009fe3;
  border: 0;
  border-radius: 25px 0px 25px 25px;
  text-align: right;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 30px;
}

#contact #agreement-message {
  display: none;
  text-align: left;
  margin-top: -64px !important;
  margin-bottom: 85px !important;
}

#contact .contact-form-box form input[type="submit"]:hover {
  box-shadow: 4px 4px 6px rgba(79, 75, 104, 0.2);
}
#contact .contact-form-box form input[type="submit"]:active {
  background: #0096d6;
}

#contact label {
  margin-bottom: 15px;
  position: relative;
  color: #312e45be;
}
#contact input,
#contact textarea {
  width: 100%;
  padding: 10px 0px;
  margin-top: 40px;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #2d2f8376;
}
#contact input::placeholder,
#contact textarea::placeholder {
  opacity: 0;
}
#contact span {
  position: absolute;
  left: 0;
  transform: translateY(50px);
  font-size: 0.825em;
  cursor: auto;
  transition-duration: 300ms;
}

#contact label.textarea {
  margin-bottom: 0;
}

#contact span.span-textarea {
  transform: translateY(130px);
  cursor: auto;
}
#contact label:focus-within > span,
#contact input:not(:placeholder-shown) + span,
#contact textarea:not(:placeholder-shown) + span {
  color: #312e45be;
  transform: translateY(0px);
  margin-top: 20px;
}

@media only screen and (max-width: 1139px) {
  .contact-background {
    position: relative;
    background-size: 100% 100%;
    background-position: 0px 0px, 0px 0px, 0px 0px;
    background-image: linear-gradient(0deg, #ffffff 55%, #ffffff 55%);
  }
  #contact .contact-form-box .section-header,
  #contact .contact-form-box .divider {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .contact-info-background {
    display: none;
  }
  #contact .contact-form-box form {
    max-width: none;
  }

  #contact .contact-info-box {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .contact-info-box a:first-child {
    margin-top: 50px;
    font-size: 23px;
    padding-bottom: 20px;
  }
  #contact .contact-info-box a:last-child {
    margin-bottom: 50px;
    font-size: 23px;
  }
  #contact .contact-info-box a {
    color: #2d2e83;
  }

  #contact .contact-text {
    margin-bottom: 50px;
    margin-block-end: 10px;
  }

  #contact .default-wrapper {
    margin-top: 0;
  }

  #contact .contact-form-box form label {
    width: 100%;
  }

  #contact .contact-form-box form label.agreement-checker {
    width: 17px;
  }
}

#agreement-check {
  display: none;
}
.agreement-checker {
  background-image: url("../img/checkbox.png");
  background-position: left center;
  background-size: auto 100%;
  width: 18px;
  height: 18px;
  margin-right: 20px;
  background-repeat: no-repeat;
  min-width: 18px;
  max-width: 18px;
}
#agreement-check:checked + .agreement-checker {
  background-position: right center;
}

#contact .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
}

#contact .checkbox-label,
#contact .checkbox-label a {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #2d2e83;
  margin-bottom: 20px;
  max-width: none;
}

#contact .checkbox-label a {
  text-decoration: underline;
}

#contact .contact-text {
  color: #2d2e83;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 26px;
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-container .section-wrapper {
  margin-bottom: 60px;
}
.footer-box {
  width: 33%;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-container .divider {
  border-color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 45px;
}

.footer-box h4 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.footer-box-text {
  display: flex;
  justify-content: flex-end;
}
.footer-box p,
.footer-box p a {
  font-family: "Barlow";
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: 200;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.footer-box p a:hover {
  text-decoration: underline;
}
.footer-box-text .footer-text {
  text-align: right;
  max-width: 350px;
  margin: 0;
}
.footer-box ul {
  list-style-type: none;
  text-align: center;
  line-height: 30px;
  margin: 0;
  padding: 0;
}
.footer-box ul li a {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.footer-container p.hued,
.footer-container p.hued a {
  color: #f3f3f3;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  margin-top: 100px;
  font-weight: 200;
}

.footer-container p.hued a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1140px) {
  .footer-box {
    width: 100%;
    text-align: center;
    justify-content: center;

    margin-bottom: 50px;
  }
  .footer-box-text {
    display: flex;
    justify-content: center;
  }
  .footer-box-text .footer-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.validation-message {
  float: none !important;
  position: relative !important;
  margin-top: -50px !important;
  margin-bottom: 60px !important;
  font-weight: 500 !important;
  color: rgb(192, 0, 0) !important;
  padding-left: 0 !important;
  line-height: 20px !important;
}

.form-message {
  margin-top: 30px !important;
}
.form-response {
  height: 0;
  margin-top: 30px !important;
  transition: 0.5s ease-out;
}

.form-response-success {
  font-weight: bold;
  height: 100px;
  margin-bottom: 30px;
  color: green !important;
  transition: 0.5s ease-out;
}

.form-response-failed {
  font-weight: bold;
  height: 100px;
  margin-bottom: 30px;
  color: rgb(192, 0, 0) !important;
  transition: 0.5s ease-out;
}
