/* FONTS
   ========================================================================== */
/* MAIN  FILES
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: #252432;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #F5F8FF;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
body ::-moz-selection {
  background: #3b5993;
  color: #ffffff;
}
body ::selection {
  background: #3b5993;
  color: #ffffff;
}

#wrap {
  -webkit-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

mark {
  background: none;
}

/* ==========================================================================
   FORMS & TABLE & NAVIGATION
   ========================================================================== */
input, textarea, select {
  outline: 0 none;
  padding: 0 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type=text], input[type=number], input[type=email], input[type=password], input[type=search], input[type=tel], textarea {
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #222222;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #4c4c4c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #4c4c4c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, textarea:focus {
  border-color: #3b5993;
}

textarea {
  resize: none;
  height: 100px;
  padding: 10px;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=search], input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Exo 2", sans-serif;
}

h1 {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.13;
}
@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.13;
}
@media (max-width: 576px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 576px) {
  h3 {
    font-size: 16px;
  }
}

p {
  padding-bottom: 15px;
  line-height: 1.8;
  font-size: 20px;
}
@media (max-width: 576px) {
  p {
    font-size: 16px;
    line-height: 160%;
    padding-bottom: 5px;
  }
}

a {
  color: #252432;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  outline: 0;
  color: #248150;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

strong, b {
  font-weight: 700;
}

i {
  font-style: normal;
}

.btn-green {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 19px 40px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  will-change: transform;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #139159;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
}
.btn-green .btn-text {
  line-height: 100%;
  font-size: 16px;
  letter-spacing: -0.3125px;
  color: #FFFFFF;
}
.btn-green:hover {
  background: #105E3C;
  -webkit-box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
}
.btn-green.btn-white {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
          box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
}
.btn-green.btn-white .btn-text {
  color: #252432;
}
.btn-green.btn-white:hover {
  background: #E9F2EE;
  border: 1px solid #C6E3D3;
  -webkit-box-shadow: 0px 10px 8px -3px rgba(51, 64, 58, 0.15);
          box-shadow: 0px 10px 8px -3px rgba(51, 64, 58, 0.15);
}

.row1280 {
  width: 1280px;
  max-width: 96%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 576px) {
  .row1280 {
    max-width: 89.333%;
  }
}

#wrap > h1, #wrap > .breadcrumbs, #wrap .wp-block-image,
#wrap > p, #wrap > ul, #wrap > ol, #wrap > .wp-block-heading {
  width: 720px;
  max-width: 96%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 576px) {
  #wrap > h1, #wrap > .breadcrumbs, #wrap .wp-block-image,
  #wrap > p, #wrap > ul, #wrap > ol, #wrap > .wp-block-heading {
    max-width: 89.333%;
  }
}

#wrap > p, #wrap > ul, #wrap > ol {
  font-size: 18px;
  line-height: 155%;
  padding-bottom: 15px;
}

#wrap > .wp-block-heading {
  margin-bottom: 24px;
}

#wrap > ul {
  list-style: disc;
}
#wrap > ul li {
  margin-left: 30px;
}

#wrap > h1 {
  margin-top: 65px;
}

#wrap > p:last-child {
  padding-bottom: 70px;
}

.flex {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex.h-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.flex.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.v-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.flex.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.flex-column {
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
.flex.flex-nowrap {
  flex-wrap: nowrap;
  -ms-flex-wrap: none;
}

[class*=col-] {
  width: 100%;
}

.col-1 {
  -ms-flex-basis: 5.5833333333%;
  -ms-flex-preferred-size: 5.5833333333%;
      flex-basis: 5.5833333333%;
}

.col-2 {
  -ms-flex-basis: 14.1666666667%;
  -ms-flex-preferred-size: 14.1666666667%;
      flex-basis: 14.1666666667%;
}

.col-3 {
  -ms-flex-basis: 22.75%;
  -ms-flex-preferred-size: 22.75%;
      flex-basis: 22.75%;
}

.col-4 {
  -ms-flex-basis: 31.3333333333%;
  -ms-flex-preferred-size: 31.3333333333%;
      flex-basis: 31.3333333333%;
}

.col-5 {
  -ms-flex-basis: 39.9166666667%;
  -ms-flex-preferred-size: 39.9166666667%;
      flex-basis: 39.9166666667%;
}

.col-6 {
  -ms-flex-basis: 48.5%;
  -ms-flex-preferred-size: 48.5%;
      flex-basis: 48.5%;
}

.col-7 {
  -ms-flex-basis: 57.0833333333%;
  -ms-flex-preferred-size: 57.0833333333%;
      flex-basis: 57.0833333333%;
}

.col-8 {
  -ms-flex-basis: 65.6666666667%;
  -ms-flex-preferred-size: 65.6666666667%;
      flex-basis: 65.6666666667%;
}

.col-9 {
  -ms-flex-basis: 74.25%;
  -ms-flex-preferred-size: 74.25%;
      flex-basis: 74.25%;
}

.col-10 {
  -ms-flex-basis: 82.8333333333%;
  -ms-flex-preferred-size: 82.8333333333%;
      flex-basis: 82.8333333333%;
}

.col-11 {
  -ms-flex-basis: 91.4166666667%;
  -ms-flex-preferred-size: 91.4166666667%;
      flex-basis: 91.4166666667%;
}

.col-12 {
  -ms-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.col-50 {
  -ms-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -ms-flex-basis: 5.5833333333%;
    -ms-flex-preferred-size: 5.5833333333%;
        flex-basis: 5.5833333333%;
  }
  .md-2 {
    -ms-flex-basis: 14.1666666667%;
    -ms-flex-preferred-size: 14.1666666667%;
        flex-basis: 14.1666666667%;
  }
  .md-3 {
    -ms-flex-basis: 22.75%;
    -ms-flex-preferred-size: 22.75%;
        flex-basis: 22.75%;
  }
  .md-4 {
    -ms-flex-basis: 31.3333333333%;
    -ms-flex-preferred-size: 31.3333333333%;
        flex-basis: 31.3333333333%;
  }
  .md-5 {
    -ms-flex-basis: 39.9166666667%;
    -ms-flex-preferred-size: 39.9166666667%;
        flex-basis: 39.9166666667%;
  }
  .md-6 {
    -ms-flex-basis: 48.5%;
    -ms-flex-preferred-size: 48.5%;
        flex-basis: 48.5%;
  }
  .md-7 {
    -ms-flex-basis: 57.0833333333%;
    -ms-flex-preferred-size: 57.0833333333%;
        flex-basis: 57.0833333333%;
  }
  .md-8 {
    -ms-flex-basis: 65.6666666667%;
    -ms-flex-preferred-size: 65.6666666667%;
        flex-basis: 65.6666666667%;
  }
  .md-9 {
    -ms-flex-basis: 74.25%;
    -ms-flex-preferred-size: 74.25%;
        flex-basis: 74.25%;
  }
  .md-10 {
    -ms-flex-basis: 82.8333333333%;
    -ms-flex-preferred-size: 82.8333333333%;
        flex-basis: 82.8333333333%;
  }
  .md-11 {
    -ms-flex-basis: 91.4166666667%;
    -ms-flex-preferred-size: 91.4166666667%;
        flex-basis: 91.4166666667%;
  }
  .md-12 {
    -ms-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -ms-flex-basis: 5.5833333333%;
    -ms-flex-preferred-size: 5.5833333333%;
        flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -ms-flex-basis: 14.1666666667%;
    -ms-flex-preferred-size: 14.1666666667%;
        flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -ms-flex-basis: 22.75%;
    -ms-flex-preferred-size: 22.75%;
        flex-basis: 22.75%;
  }
  .sm-4 {
    -ms-flex-basis: 31.3333333333%;
    -ms-flex-preferred-size: 31.3333333333%;
        flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -ms-flex-basis: 39.9166666667%;
    -ms-flex-preferred-size: 39.9166666667%;
        flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -ms-flex-basis: 48.5%;
    -ms-flex-preferred-size: 48.5%;
        flex-basis: 48.5%;
  }
  .sm-7 {
    -ms-flex-basis: 57.0833333333%;
    -ms-flex-preferred-size: 57.0833333333%;
        flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -ms-flex-basis: 65.6666666667%;
    -ms-flex-preferred-size: 65.6666666667%;
        flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -ms-flex-basis: 74.25%;
    -ms-flex-preferred-size: 74.25%;
        flex-basis: 74.25%;
  }
  .sm-10 {
    -ms-flex-basis: 82.8333333333%;
    -ms-flex-preferred-size: 82.8333333333%;
        flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -ms-flex-basis: 91.4166666667%;
    -ms-flex-preferred-size: 91.4166666667%;
        flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -ms-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .xs-1 {
    -ms-flex-basis: 5.5833333333%;
    -ms-flex-preferred-size: 5.5833333333%;
        flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -ms-flex-basis: 14.1666666667%;
    -ms-flex-preferred-size: 14.1666666667%;
        flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -ms-flex-basis: 22.75%;
    -ms-flex-preferred-size: 22.75%;
        flex-basis: 22.75%;
  }
  .xs-4 {
    -ms-flex-basis: 31.3333333333%;
    -ms-flex-preferred-size: 31.3333333333%;
        flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -ms-flex-basis: 39.9166666667%;
    -ms-flex-preferred-size: 39.9166666667%;
        flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -ms-flex-basis: 48.5%;
    -ms-flex-preferred-size: 48.5%;
        flex-basis: 48.5%;
  }
  .xs-7 {
    -ms-flex-basis: 57.0833333333%;
    -ms-flex-preferred-size: 57.0833333333%;
        flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -ms-flex-basis: 65.6666666667%;
    -ms-flex-preferred-size: 65.6666666667%;
        flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -ms-flex-basis: 74.25%;
    -ms-flex-preferred-size: 74.25%;
        flex-basis: 74.25%;
  }
  .xs-10 {
    -ms-flex-basis: 82.8333333333%;
    -ms-flex-preferred-size: 82.8333333333%;
        flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -ms-flex-basis: 91.4166666667%;
    -ms-flex-preferred-size: 91.4166666667%;
        flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -ms-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
   HELPERS
   ========================================================================== */
.wrap {
  margin: 0 auto;
  width: 1140px;
  max-width: 94%;
  position: relative;
}

#content {
  padding: 40px 0;
}
@media (max-width: 1140px) {
  #content {
    padding: 20px 0;
  }
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.c {
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}

.cfx:after, .cfx:before {
  display: table;
  clear: both;
  content: " ";
}

.bg-center {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline:after {
  display: block;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  -webkit-transition: width 0.5s ease, background-color 0.5s ease;
  transition: width 0.5s ease, background-color 0.5s ease;
  background: transparent;
}
.underline:hover:after {
  width: 100%;
  background: #3b5993;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.btn {
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  outline: 0;
  background: #3b5993;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.btn:hover {
  background: rgb(47.3145631068, 71.372815534, 117.8854368932);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn:active {
  background: rgb(37.0898058252, 55.9490291262, 92.4101941748);
}

/* ==========================================================================
   WORDPRESS DEFAULT CLASSES
   ========================================================================== */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background-color: #f3f3f3;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* ==========================================================================
   WYSIWYG
   ========================================================================== */
.wysiwyg h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.wysiwyg p {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 20px;
  word-break: break-word;
}
.wysiwyg ul {
  margin-left: 30px;
  padding-bottom: 20px;
}
.wysiwyg ul li {
  line-height: 1.4;
}

/* ==========================================================================
   FULL FRAME
   ========================================================================== */
.fullframe {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.fullframe iframe, .fullframe object, .fullframe embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* ==========================================================================
   CONTACT FORM 7
   ========================================================================== */
.wpcf7 {
  width: 100%;
}
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  background: #16a085;
}
.wpcf7 .wpcf7-not-valid-tip {
  font: 500 16px/1 "Inter", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ff5f5f;
  background: #eeeeee;
}
.wpcf7 .wpcf7-response-output {
  display: none;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px 20px;
  cursor: pointer;
  text-align: center;
  color: white;
  background: #ff5f5f;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block !important;
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url(../img/ajax-loader.gif);
  width: 16px;
  height: 16px;
  border: none;
  margin: 0 0 0 4px;
  vertical-align: middle;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

div.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}

/* ==========================================================================
   SOCIAL LINK
   ========================================================================== */
.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.s-link a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  color: #ffffff;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 20px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.s-link a:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.s-link a.fa-facebook:hover {
  background: #3b5993;
}
.s-link a.fa-twitter:hover {
  background: #55acee;
}
.s-link a.fa-instagram:hover {
  background: #181818;
}
.s-link a.fa-linkedin:hover {
  background: #0177b5;
}
.s-link a.fa-youtube:hover {
  background: #f80000;
}
.s-link a.fa-pinterest:hover {
  background: #bd081c;
}
.s-link a.fa-vimeo:hover {
  background: #1bb7ea;
}
.s-link a.fa-yelp:hover {
  background: #d32323;
}
.s-link a.fa-google-plus:hover {
  background: #dd4c39;
}

/* ==========================================================================
   index-style
   ========================================================================== */
.index-style .post-item {
  margin-bottom: 20px;
}
.index-style .post-title {
  font-size: 18px;
  display: block;
  padding-bottom: 15px;
}
.index-style .post-title:hover {
  color: #f1b820;
}
.index-style .post-thumbnail {
  min-height: 160px;
  will-change: opacity;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.index-style .post-thumbnail:hover {
  opacity: 0.9;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wp-pagenavi {
  font-size: 0;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #cccccc;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  margin: 0 3px;
  padding: 3px 5px;
}
.wp-pagenavi a {
  border: 1px solid #cccccc;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #ffffff;
  border-color: #3b5993;
  background: #3b5993;
}

#top {
  min-height: 500px;
  text-align: center;
  color: #fff;
}
#top h1 {
  font-size: 60px;
}

.desctop_hide {
  display: none;
}

@media (max-width: 1140px) {
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    position: fixed;
    z-index: 101;
    top: 13px;
    right: 2%;
    padding: 10px;
    will-change: transform;
  }
}
@media (max-width: 1140px) and (max-width: 576px) {
  .burger {
    right: 5.33%;
  }
}
@media (max-width: 1140px) {
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #252432;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
  .burger .burger-icon::before, .burger .burger-icon::after {
    position: absolute;
    content: "";
  }
  .burger .burger-icon::before {
    top: -6px;
  }
  .burger .burger-icon::after {
    top: 6px;
  }
  .burger .burger-icon {
    will-change: transform;
  }
  .burger.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
  .mobile_menu_container {
    font-size: 0;
    position: fixed;
    z-index: 100;
    top: 60px;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 80%;
    max-width: 480px;
    height: 100vh;
    padding: 40px 2%;
    background: #F5F8FF;
    will-change: transform, opacity;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 1140px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1140px) and (max-width: 576px) {
  .mobile_menu_container {
    padding: 50px 5.33%;
  }
}
@media (max-width: 1140px) {
  .mobile_menu_container nav {
    margin-bottom: 75px;
  }
  .mobile_menu_container .btn-green {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile_menu_container li {
    position: relative;
  }
  .mobile_menu_container a {
    z-index: 10;
    display: block;
  }
  .mobile_menu_container a:hover {
    text-decoration: none;
  }
  .mobile_menu_container .sub-anchor {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    width: 40px;
    height: 30px;
    cursor: pointer;
    background: rgb(66.3033980583, 100.0169902913, 165.1966019417);
  }
  .mobile_menu_container .sub-anchor:hover {
    background: rgb(51.6966019417, 77.9830097087, 128.8033980583);
  }
  .mobile_menu_container .sub-anchor:before {
    font-size: 20px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .mobile_menu_container .sub-menu {
    display: none;
  }
  .mobile_menu_container .sub-menu a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #252432;
  }
  .mobile_menu_container .sub-menu a:hover {
    color: #248150;
  }
  .mobile_menu_container .sub-menu .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .mobile_menu_container .level_a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 284px;
  }
  .mobile_menu_container .level_a > li.arrow:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 8px;
    width: 16px;
    height: 16px;
    background-size: contain;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.26732 12L3.33398 11.0667L9.73398 4.66671H4.00065V3.33337H12.0006V11.3334H10.6673V5.60004L4.26732 12Z' fill='%23252432'/%3E%3C/svg%3E%0A");
  }
  .mobile_menu_container .level_a > li.arrow > a {
    padding-left: 12px;
  }
  .mobile_menu_container .level_a > li.arrow:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.26732 12L3.33398 11.0666L9.73398 4.66665H4.00065V3.33331H12.0006V11.3333H10.6673V5.59998L4.26732 12Z' fill='%23248150'/%3E%3C/svg%3E%0A");
  }
  .mobile_menu_container .level_a > li > a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    padding: 0 30px;
    color: #252432;
  }
  .mobile_menu_container .level_a > li > a:hover {
    color: #248150;
  }
}
@media (max-width: 1140px) {
  /* resp_menu_active
  ========================================================================== */
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mobile_menu_active header {
    background-color: #F5F8FF;
  }
  .mobile_menu_active .burger {
    position: fixed;
  }
  .mobile_menu_active .burger span {
    position: relative;
    z-index: 101;
  }
  .mobile_menu_active .mobile_menu_container {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}

.alignright {
  float: right;
  margin: 0 0 10px 30px;
}

.aligncenter {
  margin: 0 auto 20px;
}

.alignnone {
  margin: 0 0 20px;
}

.block-center {
  text-align: center;
  position: relative;
}

@media (max-width: 1024px) {
  .alignleft, .aligncenter, .alignright {
    float: none;
    margin: 0 auto 20px;
  }
  .alignnone {
    margin: 0 0 20px;
  }
}
/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 101;
  border-bottom: 1px solid #ebebeb;
  will-change: transform, opacity;
  background: rgba(245, 248, 255, 0.8);
  border-bottom: 1px solid rgba(137, 135, 161, 0.2);
  padding: 10px 0;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #logo {
  max-width: 104px;
}
header #logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .btn-wrap .btn-green {
  padding: 16px 27px;
}
@media (max-width: 1140px) {
  header .btn-wrap {
    display: none;
  }
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.main_nav {
  font-size: 0;
}
.main_nav * {
  line-height: 1;
}
.main_nav a {
  display: block;
}
.main_nav a:hover {
  text-decoration: none;
}
.main_nav .level_a {
  position: relative;
}
.main_nav .level_a li {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.main_nav .level_a > li > a {
  padding: 5px 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #252432;
  font-family: "Roboto", sans-serif;
}
.main_nav .level_a > li.arrow > a {
  padding-right: 46px;
}
.main_nav .level_a > li.arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.26732 12L3.33398 11.0667L9.73398 4.66671H4.00065V3.33337H12.0006V11.3334H10.6673V5.60004L4.26732 12Z' fill='%23252432'/%3E%3C/svg%3E%0A");
}
.main_nav .level_a > li.arrow:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.26732 12L3.33398 11.0666L9.73398 4.66665H4.00065V3.33331H12.0006V11.3333H10.6673V5.59998L4.26732 12Z' fill='%23248150'/%3E%3C/svg%3E%0A");
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: #248150;
}
.main_nav .level_a > li.menu-item-has-children:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  content: "";
}
.main_nav .level_a > li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.main_nav .level_a > li > .sub-menu {
  position: absolute;
  z-index: 100;
  display: none;
  width: 220px;
  margin-top: 27px;
  padding: 10px 0;
  border-top: 3px solid rgb(74.4611650485, 111.3058252427, 182.5388349515);
  border-bottom: 3px solid rgb(74.4611650485, 111.3058252427, 182.5388349515);
  background: #3b5993;
}
.main_nav .level_a > li > .sub-menu .sub-menu {
  display: block;
  padding-left: 10px;
}
.main_nav .level_a > li > .sub-menu li {
  display: block;
  list-style-type: none;
}
.main_nav .level_a > li > .sub-menu a {
  font-size: 13px;
  line-height: 1.3;
  padding: 3px 15px;
  color: #ffffff;
}
.main_nav .level_a > li > .sub-menu a:hover {
  text-decoration: none;
  background: rgb(110.854368932, 140.2718446602, 197.145631068);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 80px 0;
  border-top: 1px solid rgba(137, 135, 161, 0.2);
}
@media (max-width: 960px) {
  footer {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  footer {
    padding: 40px 0;
  }
}
footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 23px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-inner .left-content #logo {
  max-width: 137px;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 576px) {
  footer .footer-inner .left-content #logo {
    max-width: 103px;
    margin-bottom: 10px;
  }
}
footer .footer-inner .left-content #logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-inner .left-content .text_after_logo {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.9;
  padding-bottom: 24px;
}
@media (max-width: 576px) {
  footer .footer-inner .left-content .text_after_logo {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
footer .footer-inner .left-content .social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
footer .footer-inner .right-content {
  max-width: 449px;
}
@media (max-width: 960px) {
  footer .footer-inner .right-content {
    max-width: 100%;
  }
}
footer .footer-inner .right-content .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 960px) {
  footer .footer-inner .right-content .footer-menu {
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
}
footer .footer-inner .right-content .footer-menu > * {
  width: 43%;
}
@media (max-width: 576px) {
  footer .footer-inner .right-content .footer-menu > * {
    width: 100%;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(4) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(5) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 10px;
  }
  footer .footer-inner .right-content .footer-menu > *:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
footer .copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #5A586C;
  margin-top: 40px;
}
@media (max-width: 576px) {
  footer .copyright {
    margin-top: 31px;
  }
}

/* ==========================================================================
   hero
   ========================================================================== */
.hero-rek {
  margin: 74px 0 35px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .hero-rek {
    margin: 35px 0;
  }
}
.hero-rek__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 619px;
  margin-bottom: 94px;
}
@media (max-width: 768px) {
  .hero-rek__grid {
    min-height: 0;
    margin-bottom: 55px;
  }
}
.hero-rek__content {
  max-width: 750px;
  margin-top: 47px;
}
@media (max-width: 576px) {
  .hero-rek__content {
    margin-top: 0;
  }
}
.hero-rek__content .hero-rek__wysiwyg h1 {
  font-size: 40px;
  line-height: 130%;
}
@media (max-width: 576px) {
  .hero-rek__content .hero-rek__wysiwyg h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
.hero-rek__content .hero-rek__wysiwyg h3 {
  font-style: normal;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 150%;
}
@media (max-width: 576px) {
  .hero-rek__content .hero-rek__wysiwyg h3 {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 576px) {
  .hero-rek__content .hero-rek__wysiwyg h3 br {
    display: none;
  }
}
.hero-rek__content .hero-rek__wysiwyg p {
  max-width: 587px;
}
.hero-rek__media {
  max-width: 708px;
  aspect-ratio: 708/619;
  position: absolute;
  top: -10px;
  right: calc((100vw - 1280px) / 2 - 71px);
  z-index: -1;
  width: 53vw;
}
@media (max-width: 768px) {
  .hero-rek__media {
    display: none;
  }
}
.hero-rek__media .hero-rek__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-rek__bottom {
  text-align: center;
}
.hero-rek__bottom h2 {
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.13;
}
@media (max-width: 1140px) {
  .hero-rek__bottom h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .hero-rek__bottom h2 {
    font-size: 16px;
  }
}
.hero-rek__bottom-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .hero-rek__bottom-text {
    font-size: 16px;
    line-height: 160%;
  }
}
.hero-rek__arrow {
  text-align: center;
}

.__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 32px;
  margin-top: 46px;
}
@media (max-width: 576px) {
  .__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .__actions a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ==========================================================================
   pains
   ========================================================================== */
.pains {
  margin: 35px 0 86px 0;
}
@media (max-width: 1140px) {
  .pains {
    margin: 26px 0 57px 0;
  }
}
.pains__title {
  margin-bottom: 60px;
  text-align: center;
  color: #139159;
}
@media (max-width: 576px) {
  .pains__title {
    margin-bottom: 32px;
  }
}
.pains__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 40px;
}
@media (max-width: 1140px) {
  .pains__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.pains__grid .pains-card {
  padding: 32px 24px 40px 24px;
  min-height: 429px;
  background: #F5F8FF;
  -webkit-box-shadow: 0px 4px 40px rgba(2, 22, 11, 0.15);
          box-shadow: 0px 4px 40px rgba(2, 22, 11, 0.15);
  border-radius: 4px;
}
@media (max-width: 1140px) {
  .pains__grid .pains-card {
    min-height: 0px;
  }
}
.pains__grid .pains-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  background: rgba(32, 122, 82, 0.1);
  border-radius: 14px;
  margin-bottom: 24px;
}
.pains__grid .pains-card__title {
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .pains__grid .pains-card__title {
    font-size: 18px;
  }
}
.pains__grid .pains-card__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #4A5565;
}
@media (max-width: 576px) {
  .pains__grid .pains-card__text {
    font-size: 16px;
  }
}

/* ==========================================================================
   how work
   ========================================================================== */
.how-work {
  margin: 86px 0 190px 0;
  position: relative;
}
@media (max-width: 576px) {
  .how-work {
    margin: 57px 0 64px 0;
  }
}
.how-work__media {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 70px;
  z-index: -1;
  text-align: center;
}
.how-work__pretext {
  margin-bottom: 129px;
}
@media (max-width: 576px) {
  .how-work__pretext {
    margin-bottom: 56px;
  }
}
.how-work__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1140px) {
  .how-work__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.how-work__content {
  max-width: 574px;
}
@media (max-width: 1140px) {
  .how-work__content {
    max-width: 100%;
  }
}
.how-work__content h2 {
  color: #139159;
  margin-bottom: 40px;
}
.how-work__cards {
  max-width: 620px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1140px) {
  .how-work__cards {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .how-work__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.how-work .how-work-card {
  padding: 24px;
  min-height: 213px;
  background: #F5F8FF;
  -webkit-box-shadow: 0px 4px 40px rgba(2, 22, 11, 0.15);
          box-shadow: 0px 4px 40px rgba(2, 22, 11, 0.15);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 576px) {
  .how-work .how-work-card {
    min-height: 146px;
  }
}
.how-work .how-work-card__title {
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.how-work .how-work-card__subtitle {
  font-size: 18px;
  line-height: 156%;
  color: #4A5565;
}
@media (max-width: 576px) {
  .how-work .how-work-card__subtitle {
    font-size: 16px;
  }
}
.how-work .how-work-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.how-work__actions {
  margin-top: 17px;
}
@media (max-width: 576px) {
  .how-work__actions.desktop {
    display: none;
  }
}
.how-work__actions.mobile {
  display: none;
}
@media (max-width: 576px) {
  .how-work__actions.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

/* ==========================================================================
   cta banner
   ========================================================================== */
.cta-banner {
  margin: 191px 0 115px 0;
}
@media (max-width: 576px) {
  .cta-banner {
    margin: 64px 0;
    background: #139159;
  }
}
@media (max-width: 576px) {
  .cta-banner .row1280 {
    max-width: 100%;
  }
}
.cta-banner__box {
  min-height: 363px;
  background: #139159;
  border-radius: 12px;
  padding: 40px 5.33%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  .cta-banner__box {
    font-size: 16px;
  }
}
.cta-banner__title {
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  .cta-banner__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.cta-banner__subtitle {
  font-weight: 400;
  font-size: 32px;
  line-height: 121%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .cta-banner__subtitle {
    font-size: 16px;
  }
}
.cta-banner__content {
  width: 100%;
}

/* ==========================================================================
   why
   ========================================================================== */
.why {
  margin: 115px 0 64px 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .why {
    margin: 64px 0;
  }
}
.why__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 531px;
  position: relative;
}
@media (max-width: 576px) {
  .why__grid {
    min-height: 0;
  }
}
.why__content {
  max-width: 670px;
  padding-top: 57px;
}
@media (max-width: 576px) {
  .why__content {
    padding-top: 0;
    padding-bottom: 64px;
  }
}
.why__media {
  max-width: 652px;
  aspect-ratio: 652/531;
  position: absolute;
  right: 46px;
  z-index: -1;
  width: 53vw;
  bottom: 0;
}
@media (max-width: 1250px) {
  .why__media {
    right: calc(100vw - 1300px);
  }
}
.why__media .hero-rek__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.why__title {
  margin-bottom: 24px;
  color: #139159;
}
.why__subtitle {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 108%;
}
@media (max-width: 576px) {
  .why__subtitle {
    font-size: 16px;
  }
}
.why__text {
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .why__text {
    padding-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .why .btn-green {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.why__stats {
  background-color: #139159;
  padding: 30px 0;
}
.why__stats .row1280 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-column-gap: 65px;
     -moz-column-gap: 65px;
          column-gap: 65px;
  row-gap: 55px;
}
@media (max-width: 1140px) {
  .why__stats .row1280 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.why__stats .why-stat {
  min-width: 205px;
}
@media (max-width: 1140px) {
  .why__stats .why-stat {
    min-width: 42%;
    width: 42%;
  }
}
@media (max-width: 576px) {
  .why__stats .why-stat {
    width: 100%;
  }
}
.why__stats .why-stat:nth-child(4) {
  min-width: 251px;
}
@media (max-width: 1140px) {
  .why__stats .why-stat:nth-child(4) {
    min-width: 42%;
    width: 42%;
  }
}
@media (max-width: 576px) {
  .why__stats .why-stat:nth-child(4) {
    width: 100%;
  }
}
.why__stats .why-stat__value {
  margin-bottom: 16px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 576px) {
  .why__stats .why-stat__value {
    font-size: 20px;
  }
}
.why__stats .why-stat__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
}
@media (max-width: 576px) {
  .why__stats .why-stat__text {
    font-size: 16px;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   offer
   ========================================================================== */
.offer {
  margin: 64px 0;
}
@media (max-width: 576px) {
  .offer {
    background: #EBF0FF;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .offer .row1280 {
    max-width: 100%;
  }
}
.offer__box {
  border-radius: 12px;
  padding: 80px 5.33%;
  background: #EBF0FF;
}
.offer h2 {
  margin-bottom: 24px;
  color: #139159;
}
.offer h3 {
  margin-bottom: 24px;
  font-weight: 600;
}
.offer p {
  max-width: 600px;
  margin: 0 auto;
}
.offer__action {
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .offer__action {
    margin-top: 20px;
  }
}

/* ==========================================================================
   contact form
   ========================================================================== */
.contact {
  margin: 64px 0 76px 0;
}
@media (max-width: 576px) {
  .contact {
    background: #139159;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .contact .row1280 {
    max-width: 100%;
  }
}
.contact__box {
  padding: 80px 5.33%;
  background: #139159;
  border-radius: 12px;
  color: white;
}
.contact__top {
/*   display: -ms-grid; */
/*   display: grid; */
  -ms-grid-columns: 1fr 41px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 41px;
  max-width: 745px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .contact__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contact__info {
  padding: 24px 5.33%;
  min-height: 175px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}
.contact__info h3 {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .contact__info h3 {
    font-size: 24px;
  }
}
.contact__info p {
  padding-bottom: 0;
  font-size: 16px;
  line-height: 160%;
}
.contact__info p a {
  color: inherit;
}
.contact__info p a:hover {
  color: #C6E3D3;
}
.contact__form-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 24px;
  padding-top: 24px;
  color: #FFFFFF;
  max-width: 745px;
}
@media (max-width: 576px) {
  .contact__form-title {
    font-size: 16px;
  }
}
.contact__form {
  max-width: 745px;
  margin: 0 auto;
}
.contact form {
  position: relative;
}
.contact form .form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact form .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contact form .footer-row {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 32px;
}
.contact form .footer-row .wpcf7-not-valid-tip {
  display: none !important;
}
@media (max-width: 576px) {
  .contact form .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact form .wpcf7-spinner {
  display: none;
}
.contact form fieldset {
  opacity: 0;
}
.contact form label {
  display: block;
  position: relative;
}
.contact form label:hover .label-text {
  color: #000000;
}
.contact form label .label-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #5E5E5E;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact form label .label-text.active {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  color: #000000;
}
.contact form label .wpcf7-form-control-wrap input {
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: "Inter", sans-serif;
  color: black;
  height: 56px;
  width: 100%;
  background: #F5F8FF;
  border: 1px solid rgba(30, 118, 72, 0.5);
  padding: 15px 5px 15px 24px;
}
.contact form label .wpcf7-form-control-wrap input::-webkit-input-placeholder {
  font-size: 16px;
}
.contact form label .wpcf7-form-control-wrap input::-moz-placeholder {
  font-size: 16px;
}
.contact form label .wpcf7-form-control-wrap input:-ms-input-placeholder {
  font-size: 16px;
}
.contact form label .wpcf7-form-control-wrap input::-ms-input-placeholder {
  font-size: 16px;
}
.contact form label .wpcf7-form-control-wrap input::placeholder {
  font-size: 16px;
}
.contact form label .wpcf7-form-control-wrap input:focus {
  border: 1px solid #000000;
}
.contact form label .wpcf7-form-control-wrap input.wpcf7-not-valid {
  border-color: #FF0000;
}
.contact form label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  height: auto;
  top: 102%;
  text-align: left;
  color: red;
  left: 0px;
  font-size: 12px;
  line-height: 143%;
  background: transparent;
}
.contact form label.alert-danger .input-text {
  color: red;
}
.contact form .field-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: #3B3F3D;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact form .field-title {
    font-size: 16px;
    margin-top: 30px;
  }
}
.contact form textarea {
  font-weight: 400;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 100%;
  color: black;
  -webkit-transition: unset;
  transition: unset;
  resize: none;
  overflow: hidden;
  min-height: 156px;
  background: #F5F8FF;
  border-radius: 4px;
  border: 1px solid rgba(30, 118, 72, 0.5);
  padding: 15px 24px;
}
.contact form textarea::-webkit-input-placeholder {
  font-size: 16px;
}
.contact form textarea::-moz-placeholder {
  font-size: 16px;
}
.contact form textarea:-ms-input-placeholder {
  font-size: 16px;
}
.contact form textarea::-ms-input-placeholder {
  font-size: 16px;
}
.contact form textarea::placeholder {
  font-size: 16px;
}
.contact form textarea:focus {
  border: 1px solid #000000;
}
.contact form textarea.wpcf7-not-valid {
  border-color: #FF0000;
}
.contact form .wpcf7-acceptance {
  width: 100%;
  display: block;
}
.contact form .wpcf7-acceptance.wpcf7-not-valid .checkbox-text:before {
  border-color: red;
}
.contact form .wpcf7-acceptance.wpcf7-not-valid .checkbox-text:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='31' height='31' rx='3.5' fill='%23F5F8FF'/%3E%3Crect x='0.5' y='0.5' width='31' height='31' rx='3.5' stroke='%23252432'/%3E%3Cpath d='M13.5496 22.0125L7.84961 16.3125L9.27461 14.8875L13.5496 19.1625L22.7246 9.9875L24.1496 11.4125L13.5496 22.0125Z' fill='%23252432'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.contact form .wpcf7-acceptance label {
  margin-bottom: 0;
  cursor: pointer;
}
.contact form .wpcf7-acceptance label input {
  display: none;
}
.contact form .wpcf7-acceptance label input:checked + span .checkbox-text:before {
  border-color: transparent;
}
.contact form .wpcf7-acceptance label input:checked + span .checkbox-text:after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.contact form .wpcf7-acceptance label .checkbox-text {
  display: block;
  position: relative;
  padding-left: 48px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.contact form .wpcf7-acceptance label .checkbox-text:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid rgba(90, 88, 108, 0.2);
  border-radius: 4px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background: #F5F8FF;
}
.contact form .wpcf7-acceptance label .checkbox-text:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='31' height='31' rx='3.5' fill='%23F5F8FF'/%3E%3Crect x='0.5' y='0.5' width='31' height='31' rx='3.5' stroke='%23252432'/%3E%3Cpath d='M13.5496 22.0125L7.84961 16.3125L9.27461 14.8875L13.5496 19.1625L22.7246 9.9875L24.1496 11.4125L13.5496 22.0125Z' fill='%23252432'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.contact form input[type=submit] {
  outline: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 19px 40px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
  will-change: transform;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
          box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
  color: #252432;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: -0.3125px;
  width: 190px;
  height: 60px;
}
.contact form input[type=submit]:hover {
  background: #E9F2EE;
  border: 1px solid #C6E3D3;
  -webkit-box-shadow: 0px 10px 8px -3px rgba(51, 64, 58, 0.15);
          box-shadow: 0px 10px 8px -3px rgba(51, 64, 58, 0.15);
}
.contact form .wpcf7-response-output {
  display: none !important;
  position: absolute;
  left: 0;
  text-align: center;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  font-size: 22px;
  z-index: 100;
  background: green !important;
  margin: 0 auto !important;
}
.contact .wpcf7-form.invalid .wpcf7-response-output {
  display: none !important;
}
@media (max-width: 576px) {
  .contact.contact--alt {
    background: #EBF0FF;
  }
}
@media (max-width: 576px) {
  .contact.contact--alt .row1280 {
    max-width: 100%;
  }
}
.contact.contact--alt .contact__box {
  background: #EBF0FF;
  color: #252432;
}
.contact.contact--alt .contact__info {
  border: 1px solid #139159;
}
.contact.contact--alt .contact__form-title {
  color: #252432;
}
.contact.contact--alt form input[type=submit] {
  background: #139159;
  border: none;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
  color: #F5F8FF;
}
.contact.contact--alt form input[type=submit]:hover {
  background: #105E3C;
  -webkit-box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
}

.hidden-fields-container {
  display: none;
}

/* ==========================================================================
   page hero
   ========================================================================== */
.page-hero {
  padding-top: 170px;
  position: relative;
  max-width: 820px;
  margin: 0 auto 64px auto;
}
@media (max-width: 576px) {
  .page-hero {
    padding-top: 48px;
    margin-bottom: 40px;
  }
}
.page-hero__media {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: -1;
  top: 51px;
}
@media (max-width: 576px) {
  .page-hero__media {
    top: 40px;
  }
}
.page-hero__title {
  text-align: center;
  margin-bottom: 33px;
}
.page-hero__text {
  color: #4A5565;
}
.page-hero__text ul, .page-hero__text ol {
  margin-bottom: 24px;
  margin-left: 30px;
}
.page-hero__text ul li, .page-hero__text ol li {
  font-size: 20px;
  line-height: 180%;
}
@media (max-width: 768px) {
  .page-hero__text ul li, .page-hero__text ol li {
    font-size: 16px;
    line-height: 160%;
  }
}
.page-hero__text ul {
  list-style: disc;
}
.page-hero__text h3 {
  color: #252432;
  padding-bottom: 24px;
}
.page-hero__text h3 span {
  margin-bottom: 10px;
  display: inline-block;
}
.page-hero__subline {
  text-align: center;
}
@media (max-width: 576px) {
  .page-hero__subline {
    display: none;
  }
}
.page-hero__schema {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 10px;
}
@media (max-width: 576px) {
  .page-hero__schema {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-hero__schema-col {
  padding: 0 5px;
}
@media (max-width: 576px) {
  .page-hero__schema-col p {
    text-align: left !important;
  }
  .page-hero__schema-col br {
    display: none;
  }
}
.page-hero__schema-note {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
  line-height: 170%;
  color: #4A5565;
  border-top: 1px solid #4A5565;
}
@media (max-width: 576px) {
  .page-hero__schema-note {
    font-size: 16px;
    text-align: left;
    border: none;
  }
}

/* ==========================================================================
   two columns
   ========================================================================== */
.hw-two-col {
  margin: 63px 0 80px 0;
}
@media (max-width: 576px) {
  .hw-two-col {
    margin: 40px 0;
  }
}
.hw-two-col__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #252432;
}
@media (max-width: 768px) {
  .hw-two-col__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hw-two-col__row p {
  color: #4A5565;
}
.hw-two-col__row:first-child {
  border-top: unset;
  margin-bottom: 24px;
}
.hw-two-col__row:first-child p {
  color: #252432;
}
.hw-two-col__col {
  max-width: 547px;
  width: 100%;
}
@media (max-width: 1140px) {
  .hw-two-col__col {
    max-width: 100%;
  }
}
.hw-two-col__col h2, .hw-two-col__col h3, .hw-two-col__col h4, .hw-two-col__col h5, .hw-two-col__col h6 {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hw-two-col__col h2, .hw-two-col__col h3, .hw-two-col__col h4, .hw-two-col__col h5, .hw-two-col__col h6 {
    margin-bottom: 12px;
  }
}

/* ==========================================================================
   culture
   ========================================================================== */
.culture {
  margin: 76px 0 96px 0;
}
@media (max-width: 576px) {
  .culture {
    margin: 40px 0 64px 0;
  }
}
.culture__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1140px) {
  .culture__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.culture__content {
  max-width: 577px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1140px) {
  .culture__content {
    max-width: 100%;
  }
}
.culture__stats {
  padding-right: 20px;
  max-width: 624px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1140px) {
  .culture__stats {
    max-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .culture__stats {
    gap: 16px;
  }
}
.culture .culture-stat {
  padding: 16px 32px;
  min-height: 137px;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  border: 2px solid #E0EEE6;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .culture .culture-stat {
    padding: 16px 24px;
    min-height: 126px;
  }
}
@media (max-width: 576px) {
  .culture .culture-stat {
    padding: 16px;
  }
}
.culture .culture-stat__value {
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 119%;
  color: #258251;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .culture .culture-stat__value {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .culture .culture-stat__label {
    font-size: 14px;
  }
}
.culture__title {
  margin-bottom: 32px;
}

/* ==========================================================================
   culture
   ========================================================================== */
.info-two-col {
  margin: 96px 0 51px 0;
}
@media (max-width: 576px) {
  .info-two-col {
    margin: 64px 0 70px 0;
  }
}
.info-two-col__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1140px) {
  .info-two-col__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.info-two-col__media {
  max-width: 593px;
  width: 100%;
  aspect-ratio: 593/468;
}
@media (max-width: 1140px) {
  .info-two-col__media {
    max-width: 100%;
  }
}
.info-two-col__media img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.info-two-col__content {
  max-width: 630px;
  width: 100%;
}
@media (max-width: 1140px) {
  .info-two-col__content {
    max-width: 100%;
  }
}
.info-two-col__text h2, .info-two-col__text h3, .info-two-col__text h4, .info-two-col__text h5, .info-two-col__text h6 {
  margin-bottom: 32px;
}

/* ==========================================================================
   apply
   ========================================================================== */
.apply {
  margin: 64px 0 80px 0;
  background: transparent;
}
@media (max-width: 576px) {
  .apply .row1280 {
    max-width: 100%;
  }
}
.apply .row1280 {
  width: 745px;
}
@media (max-width: 576px) {
  .apply .row1280 {
    max-width: 89.333%;
  }
}
.apply__text {
  margin-bottom: 30px;
}
.apply__text h2, .apply__text h3, .apply__text h4, .apply__text h5, .apply__text h6 {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .apply__text h2, .apply__text h3, .apply__text h4, .apply__text h5, .apply__text h6 {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .apply__text h3 {
    text-align: left !important;
    font-size: 20px;
  }
}
.apply__text ul, .apply__text ol {
  margin-bottom: 24px;
  margin-left: 30px;
}
.apply__text ul li, .apply__text ol li {
  font-size: 20px;
  line-height: 190%;
}
@media (max-width: 576px) {
  .apply__text ul li, .apply__text ol li {
    font-size: 16px;
    line-height: 160%;
    padding-bottom: 5px;
  }
}
.apply__text ul {
  list-style: disc;
}
.apply form .footer-row {
  margin-top: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 56px;
}
@media (max-width: 576px) {
  .apply form .footer-row {
    margin-top: 35px;
  }
}
.apply form .footer-row input[type=submit] {
  background: #139159;
  border: none;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 15px -3px rgba(32, 122, 82, 0.2), 0px 4px 6px -4px rgba(32, 122, 82, 0.2);
  color: #F5F8FF;
}
.apply form .footer-row input[type=submit]:hover {
  background: #105E3C;
  -webkit-box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
          box-shadow: 0px 10px 8px -3px rgba(32, 122, 82, 0.2), 0px 4px 4px -4px rgba(32, 122, 82, 0.2);
}
.apply form textarea {
  min-height: 130px;
}
@media (max-width: 576px) {
  .apply form textarea {
    min-height: 260px;
  }
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 80px;
  z-index: 999;
}
.modal .modal-content {
  width: 100%;
  height: 100%;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.no-scroll {
  overflow: hidden;
}

.error404 .container {
  width: 547px;
  padding: 36px 0;
  height: 100%;
}
.error404 .container .media {
  text-align: center;
}
@media (max-width: 576px) {
  .error404 .container .media svg {
    width: 100%;
  }
}
.error404 .container h3 {
  margin-bottom: 30px;
  text-align: center;
  margin-top: -20px;
}
.error404 .container p {
  text-align: center;
}
.error404 .container p a {
  text-decoration: underline;
}

.modal-global-form .modal-close {
  position: absolute;
  border: none;
  outline: none;
  right: 20px;
  top: 20px;
  padding: 5px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-close {
  position: absolute;
  border: none;
  outline: none;
  background-color: transparent;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

.modal-thanks {
  padding-top: 0;
}
.modal-thanks.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-thanks .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-thanks .modal-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 66px 20px 50px;
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #252432;
  max-width: 642px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}

.cky-consent-container {
  max-width: 1112px !important;
  width: 92% !important;
}

.cky-notice-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (max-width: 576px) {
  .cky-notice-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cky-notice-des {
  max-width: 344px;
}
@media (max-width: 576px) {
  .cky-notice-des {
    max-width: 100%;
  }
}

.cky-box-bottom-left {
  bottom: 40px;
  left: 0 !important;
  right: 0;
  margin: 0 auto;
}

.cky-consent-container .cky-consent-bar {
  padding: 56px 100px 30px 100px !important;
}
@media (max-width: 960px) {
  .cky-consent-container .cky-consent-bar {
    padding: 40px 20px 30px 20px !important;
  }
}
@media (max-width: 576px) {
  .cky-consent-container .cky-consent-bar {
    padding: 20px !important;
  }
}

.cky-btn.cky-btn-accept {
  width: 190px;
  height: 60px;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
          box-shadow: 0px 10px 15px -3px rgba(51, 64, 58, 0.15);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .cky-btn.cky-btn-accept {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .cky-notice-btn-wrapper {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .cky-custom-brand-logo-wrapper, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper {
    padding: 0 !important;
  }
}
/*# sourceMappingURL=main.css.map */