:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Kalliope", sans-serif;
  --third-family: "Gilroy", sans-serif;
  --c-light: rgba(249, 250, 251, 0.5);
  --glass-reflex-light: 1;
  --saturation: 105%;
}

/* FONTS
   ========================================================================== */
@font-face {
  font-family: "Kalliope";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Kalliope-Regular.woff") format("woff"), url("../fonts/Kalliope-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.woff2") format("woff2");
}
/* 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%;
}

#wrap {
  position: relative;
  overflow: hidden;
}
#wrap:before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: auto;
  right: -3px;
  background-image: url("../img/banner-bg-2.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1920px;
  height: 1080px;
}
#wrap:after {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -10px;
  left: 0;
  background-image: url("../img/bg-footer.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1920px;
  height: 1080px;
}

body {
  color: #213f0f;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  background: #020400;
}
body ::-moz-selection {
  background: #213f0f;
  color: #ffffff;
}
body ::selection {
  background: #213f0f;
  color: #ffffff;
}

#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-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;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body:not(.wp-admin) input[type=text], body:not(.wp-admin) input[type=number], body:not(.wp-admin) input[type=email], body:not(.wp-admin) input[type=password], body:not(.wp-admin) input[type=search], body:not(.wp-admin) input[type=tel], body:not(.wp-admin) textarea {
  border-radius: 8px;
  padding: 0 14px;
  background: transparent;
  font-family: var(--font-family);
  font-size: 16px;
  height: 64px;
  width: 100%;
  outline: none;
  color: #fff;
  border: 1px solid #fff;
}
body:not(.wp-admin) input[type=text]::-webkit-input-placeholder, body:not(.wp-admin) input[type=number]::-webkit-input-placeholder, body:not(.wp-admin) input[type=email]::-webkit-input-placeholder, body:not(.wp-admin) input[type=password]::-webkit-input-placeholder, body:not(.wp-admin) input[type=search]::-webkit-input-placeholder, body:not(.wp-admin) input[type=tel]::-webkit-input-placeholder, body:not(.wp-admin) textarea::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  opacity: 1;
}
body:not(.wp-admin) input[type=text]::-moz-placeholder, body:not(.wp-admin) input[type=number]::-moz-placeholder, body:not(.wp-admin) input[type=email]::-moz-placeholder, body:not(.wp-admin) input[type=password]::-moz-placeholder, body:not(.wp-admin) input[type=search]::-moz-placeholder, body:not(.wp-admin) input[type=tel]::-moz-placeholder, body:not(.wp-admin) textarea::-moz-placeholder {
  opacity: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  opacity: 1;
}
body:not(.wp-admin) input[type=text]:-ms-input-placeholder, body:not(.wp-admin) input[type=number]:-ms-input-placeholder, body:not(.wp-admin) input[type=email]:-ms-input-placeholder, body:not(.wp-admin) input[type=password]:-ms-input-placeholder, body:not(.wp-admin) input[type=search]:-ms-input-placeholder, body:not(.wp-admin) input[type=tel]:-ms-input-placeholder, body:not(.wp-admin) textarea:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  opacity: 1;
}
body:not(.wp-admin) input[type=text]:focus, body:not(.wp-admin) input[type=number]:focus, body:not(.wp-admin) input[type=email]:focus, body:not(.wp-admin) input[type=password]:focus, body:not(.wp-admin) input[type=search]:focus, body:not(.wp-admin) input[type=tel]:focus, body:not(.wp-admin) textarea:focus {
  border-color: #57e200;
}
body:not(.wp-admin) form label {
  display: block;
  margin-bottom: 24px;
}
body:not(.wp-admin) .hidden-fields-container {
  border: none;
  margin: 0;
  outline: none;
  padding: 0;
}
body:not(.wp-admin) .wpcf7-submit {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
  background: #213f0f;
  transition: 0.3s all ease;
  cursor: pointer;
  outline: none;
  border: none;
}
@media (max-width: 600px) {
  body:not(.wp-admin) .wpcf7-submit {
    min-width: 100%;
  }
}
body:not(.wp-admin) .wpcf7-submit:hover {
  background: #fff;
  color: #213f0f;
}
body:not(.wp-admin) .wpcf7-acceptance {
  margin-top: 30px;
  width: 100%;
  display: block;
}
body:not(.wp-admin) .wpcf7-acceptance label {
  cursor: pointer;
}
body:not(.wp-admin) .wpcf7-acceptance label span {
  margin-top: 0 !important;
}
body:not(.wp-admin) .wpcf7-acceptance label input {
  display: none;
}
body:not(.wp-admin) .wpcf7-acceptance label input:checked + span .checkbox-text:before {
  border-color: transparent;
}
body:not(.wp-admin) .wpcf7-acceptance label input:checked + span .checkbox-text:after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text {
  display: block;
  position: relative;
  padding-left: 80px;
  transition: 0.3s all ease;
  color: #fff;
}
@media (max-width: 425px) {
  body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text {
    padding-left: 30px;
  }
}
body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:before {
  position: absolute;
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #fff;
  border-radius: 4px;
  transition: 0.3s all ease;
}
@media (max-width: 1140px) {
  body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:before {
    width: 29px;
    height: 29px;
  }
}
@media (max-width: 425px) {
  body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:before {
    width: 19px;
    height: 19px;
  }
}
body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:hover:before {
  opacity: 0.7;
}
body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 4C0 1.79086 1.79086 0 4 0H12C14.2091 0 16 1.79086 16 4V12C16 14.2091 14.2091 16 12 16H4C1.79086 16 0 14.2091 0 12V4Z" fill="%23213f0f" /><path d="M12.4688 3.84961C12.6699 3.84961 12.789 4.0837 12.6602 4.24414L12.6592 4.24316L6.9375 11.4961H6.93652C6.7256 11.7609 6.32265 11.7619 6.1123 11.4961L2.90234 7.42969C2.77666 7.27029 2.89024 7.0353 3.09375 7.03516H3.91309L4.03027 7.04883C4.06878 7.05769 4.10681 7.07051 4.14258 7.08789C4.21376 7.12255 4.2762 7.17315 4.3252 7.23535L6.52344 10.0215L11.2383 4.0498C11.3373 3.92341 11.4895 3.84973 11.6494 3.84961H12.4688Z" fill="white" stroke="white" stroke-width="0.3" /></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
@media (max-width: 1140px) {
  body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:after {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 425px) {
  body:not(.wp-admin) .wpcf7-acceptance label .checkbox-text:after {
    width: 20px;
    height: 20px;
  }
}
body:not(.wp-admin) 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: var(--second-family);
  font-weight: 400;
  color: #fff;
}

h1 {
  padding-bottom: 25px;
  font-size: 52px;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 1140px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  padding-bottom: 25px;
  font-size: 48px;
}
@media (max-width: 1440px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  padding-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 1440px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 1140px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  padding-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 1440px) {
  h4 {
    font-size: 32px;
  }
}
@media (max-width: 1140px) {
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

h5, h6 {
  padding-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 1440px) {
  h5, h6 {
    font-size: 30px;
  }
}
@media (max-width: 1140px) {
  h5, h6 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  h5, h6 {
    font-size: 22px;
  }
}

p, li {
  padding-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
p:last-child, li:last-child {
  padding-bottom: 0;
}

a {
  color: #57e200;
  outline: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: 0.3s all ease;
}
a:hover {
  text-decoration-color: #57e200;
}

svg {
  transition: 0.3s all ease;
}
svg path {
  transition: 0.3s all ease;
}

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

strong, b {
  font-weight: 700;
}

i {
  font-style: normal;
}

@media screen and (min-width: 1140px) {
  ::-webkit-scrollbar {
    width: 13px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cccccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #213f0f;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(22.2115384615, 42.4038461538, 10.0961538462);
  }
}
.row1704 {
  width: 1704px;
  max-width: 95%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 4px;
}
@media (max-width: 600px) {
  .row1704 {
    max-width: 92%;
  }
}

.row1400 {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 4px;
}
@media (max-width: 600px) {
  .row1400 {
    max-width: 92%;
  }
}

.full-width {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}

.button {
  width: max-content;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #213f0f;
  border-radius: 10px;
  transition: 0.3s all ease;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
.button:hover {
  background: #fff;
  color: #213f0f;
}
.button:hover svg path {
  fill: #213f0f;
}
@media (max-width: 768px) {
  .button {
    padding: 20px 30px;
    font-size: 16px;
  }
}

.white-button {
  width: max-content;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s all ease;
  text-decoration: none;
  color: #213f0f;
}
.white-button:hover {
  background: #213f0f;
  color: #fff;
}
.white-button:hover svg path {
  fill: #fff;
}

.button-transparent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18.5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
}
.button-transparent svg {
  width: 12px;
  height: 20px;
}
.button-transparent svg path {
  fill: #fff;
}
.button-transparent:hover {
  background: #213f0f;
  color: #fff;
  border-color: #213f0f;
}
.button-transparent:hover svg path {
  fill: #fff;
}

.relative {
  position: relative;
  z-index: 2;
}

ul, ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 25px;
}

ul li {
  position: relative;
}
ul li:before {
  position: absolute;
  top: 5px;
  left: -24px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #57e200;
}

.page .wp-block-heading, .page p, .page .wp-block-list {
  position: relative;
  z-index: 2;
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page .wp-block-heading, .page p, .page .wp-block-list {
    max-width: 92%;
  }
}

section p {
  width: unset !important;
  max-width: unset !important;
  margin: 0 !important;
}

.wpcf7-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

section, div {
  outline: none !important;
}
section:focus, div:focus {
  outline: none !important;
}

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

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

.col-1 {
  -webkit-flex-basis: 5.5833333333%;
  -moz-flex-basis: 5.5833333333%;
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}

.col-2 {
  -webkit-flex-basis: 14.1666666667%;
  -moz-flex-basis: 14.1666666667%;
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}

.col-3 {
  -webkit-flex-basis: 22.75%;
  -moz-flex-basis: 22.75%;
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}

.col-4 {
  -webkit-flex-basis: 31.3333333333%;
  -moz-flex-basis: 31.3333333333%;
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}

.col-5 {
  -webkit-flex-basis: 39.9166666667%;
  -moz-flex-basis: 39.9166666667%;
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}

.col-6 {
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}

.col-7 {
  -webkit-flex-basis: 57.0833333333%;
  -moz-flex-basis: 57.0833333333%;
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}

.col-8 {
  -webkit-flex-basis: 65.6666666667%;
  -moz-flex-basis: 65.6666666667%;
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}

.col-9 {
  -webkit-flex-basis: 74.25%;
  -moz-flex-basis: 74.25%;
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}

.col-10 {
  -webkit-flex-basis: 82.8333333333%;
  -moz-flex-basis: 82.8333333333%;
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}

.col-11 {
  -webkit-flex-basis: 91.4166666667%;
  -moz-flex-basis: 91.4166666667%;
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}

.col-12 {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.col-50 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .md-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .md-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .md-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .md-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .md-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .md-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .md-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .md-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .md-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .md-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .md-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .sm-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .sm-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .sm-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .xs-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .xs-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .xs-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .xs-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 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;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

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

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

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

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

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  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;
  -moz-transition: all 0.4s ease;
  -ms-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);
  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;
}
.wpcf7 .wpcf7-not-valid-tip {
  padding: 0 12px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: -23px;
  color: #f80000;
}
@media (max-width: 600px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 15px;
  }
}
.wpcf7 .wpcf7-response-output {
  position: absolute;
  margin: 0;
  left: 0;
  bottom: -50px;
  display: none;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  text-align: center;
  color: #fff;
}
@media (max-width: 600px) {
  .wpcf7 .wpcf7-response-output {
    font-size: 15px;
    line-height: 120%;
  }
}
.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%);
  -moz-transform: translate(0, -50%);
  -ms-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-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);
  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%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.s-link a:hover {
  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: #1e1e1e;
}
.index-style .post-thumbnail {
  min-height: 160px;
  will-change: opacity;
  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;
  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: #213f0f;
  background: #213f0f;
}

#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: absolute;
    z-index: 101;
    top: 30px;
    right: 10px;
    margin-right: 10px;
    text-align: left;
  }
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    user-select: none;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #fff;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    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.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .burger.is-active .burger-icon::before,
  .burger.is-active .burger-icon::after {
    background: #ffffff;
  }
  .mobile_menu_container {
    font-size: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 80%;
    max-width: 480px;
    height: 100vh;
    padding: 40px 20px;
    background: #04090a;
    will-change: transform, opacity;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  /* resp_menu_active
  ========================================================================== */
}
@media (max-width: 1140px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1140px) {
  .mobile_menu_container nav {
    margin-bottom: 40px;
  }
  .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(43.7884615385, 83.5961538462, 19.9038461538);
  }
  .mobile_menu_container .sub-anchor:hover {
    background: rgb(22.2115384615, 42.4038461538, 10.0961538462);
  }
  .mobile_menu_container .sub-anchor:before {
    font-size: 20px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .mobile_menu_container .sub-menu {
    display: none;
  }
  .mobile_menu_container .sub-menu a {
    font-size: 13px;
    padding: 10px 30px;
    color: #ffffff;
  }
  .mobile_menu_container .sub-menu a:hover {
    background: rgb(54.5769230769, 104.1923076923, 24.8076923077);
  }
  .mobile_menu_container .sub-menu .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .mobile_menu_container .level_a > li {
    border-bottom: 1px solid rgb(43.7884615385, 83.5961538462, 19.9038461538);
  }
  .mobile_menu_container .level_a > li > a {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    padding-left: 20px;
    color: #ffffff;
  }
  .mobile_menu_container .level_a > li > a:hover {
    background: rgb(43.7884615385, 83.5961538462, 19.9038461538);
  }
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .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);
    -moz-transform: translateX(0);
    -ms-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 {
  margin-bottom: 300px;
  padding: 28px 0;
  position: relative;
  z-index: 10;
  will-change: transform, opacity;
}
@media (max-width: 1300px) {
  header {
    margin-bottom: 200px;
  }
}
@media (max-width: 1140px) {
  header {
    padding: 15px 0;
  }
}
@media (max-width: 1024px) {
  header {
    margin-bottom: 20px;
    padding: 0;
  }
}
header .row1400 {
  overflow: visible;
}
header #logo {
  opacity: 1;
  color: #181818;
}
header #logo:hover {
  opacity: 0.8;
}
header .header-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .header_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  header .header_menu {
    display: none;
  }
}
header .header_menu .header-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
header .header_menu .header-link:hover {
  color: #57e200 !important;
}
header .logo-blur {
  position: absolute;
  z-index: 3;
  top: -40px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
  background: url('data:image/svg+xml,<svg width="400" height="370" viewBox="0 0 400 370" fill="none" xmlns="http://www.w3.org/2000/svg"><foreignObject x="-35" y="-41" width="470" height="446"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(17.5px);clip-path:url(%23bgblur_0_21_127_clip_path);height:100%;width:100%"></div></foreignObject><g data-figma-bg-blur-radius="35"><path d="M0 -6H400V346C400 359.255 389.255 370 376 370H24C10.7452 370 0 359.255 0 346V-6Z" fill="%23D4D4D4" fill-opacity="0.05" /><path d="M398.5 -4.5V346C398.5 358.426 388.426 368.5 376 368.5H24C11.5736 368.5 1.5 358.426 1.5 346V-4.5H398.5Z" stroke="url(%23paint0_linear_21_127)" stroke-opacity="0.1" stroke-width="3" stroke-linecap="round" /></g><defs><clipPath id="bgblur_0_21_127_clip_path" transform="translate(35 41)"><path d="M0 -6H400V346C400 359.255 389.255 370 376 370H24C10.7452 370 0 359.255 0 346V-6Z" /></clipPath><linearGradient id="paint0_linear_21_127" x1="-1.25" y1="-4.825" x2="186.391" y2="194.793" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.5" /><stop offset="1" stop-color="white" stop-opacity="0.1" /></linearGradient></defs></svg>');
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1024px) {
  header .logo-blur {
    position: relative;
    top: unset;
  }
}
header .logo-blur .glass {
  padding: 70px 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(35px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1300px) {
  header .logo-blur .glass {
    padding: 50px 80px;
  }
}
@media (max-width: 1024px) {
  header .logo-blur .glass {
    padding: 30px 50px;
  }
}
header .logo-blur img {
  object-fit: contain;
}
@media (max-width: 1300px) {
  header .logo-blur img {
    max-height: 150px;
  }
}
@media (max-width: 1024px) {
  header .logo-blur img {
    max-height: 100px;
  }
}
@media (max-width: 1140px) {
  header .button-header {
    margin-right: 25px;
    padding: 10px 15px;
  }
}
@media (max-width: 1024px) {
  header .button-header {
    display: none;
  }
}

.home header {
  margin-bottom: 0;
}
@media (max-width: 1140px) {
  .home header {
    margin-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .home header {
    margin-bottom: 20px;
  }
}
.home header .logo-blur {
  display: none;
}
@media (max-width: 1024px) {
  .home header .logo-blur {
    display: block;
  }
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.mobile_menu_container:before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: auto;
  right: 0;
  background-image: url("../img/mobile-bg.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 889px;
  height: 500px;
}
.mobile_menu_container * {
  line-height: 1;
}
.mobile_menu_container .menu-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.mobile_menu_container .menu-wrapper .header-link {
  padding: 20px;
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.mobile_menu_container .menu-wrapper .header-link:hover {
  color: #fff !important;
}
.mobile_menu_container .menu-wrapper .header-link:last-child {
  border-bottom: none;
}
.mobile_menu_container .button-header {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_menu_container .button-header svg {
  width: 25px;
  height: 25px;
}
.mobile_menu_container .logo-link {
  position: relative;
  z-index: 2;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: center;
}
.mobile_menu_container .logo-menu {
  margin-left: auto;
  margin-right: auto;
  height: 120px;
  object-fit: contain;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding-top: 60px;
  padding-bottom: 100px;
  background: #04090a;
}
@media (max-width: 600px) {
  footer {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
footer .top-footer {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer .top-footer .logo_footer {
  height: 64px;
  object-fit: contain;
}
@media (max-width: 600px) {
  footer .top-footer .logo_footer {
    height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  footer .top-footer {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
footer .top-footer .button-footer {
  padding: 20px 30px;
}
footer .top-footer .button-footer svg {
  width: 20px;
  height: 20px;
}
footer .bottom-footer {
  position: relative;
  z-index: 2;
}
footer .copyright-links-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1300px) {
  footer .copyright-links-wrap {
    justify-content: flex-start;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  footer .copyright-links-wrap {
    flex-direction: column;
  }
}
footer .copyright-links-wrap .footer-link {
  order: 1;
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1300px) {
  footer .copyright-links-wrap .footer-link {
    padding: 7px;
  }
}
footer .copyright-links-wrap .footer-link:hover {
  color: #57e200 !important;
}
footer .copyright-links-wrap .footer-link:nth-last-of-type(-n+2) {
  order: 3;
}
@media (max-width: 600px) {
  footer .copyright-links-wrap .footer-link:nth-last-of-type(-n+2) {
    order: 2;
  }
}
footer .copyright-links-wrap .copyright {
  order: 2;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
}
@media (max-width: 600px) {
  footer .copyright-links-wrap .copyright {
    order: 3;
    text-align: center;
    font-size: 14px;
  }
}

/* ==========================================================================
   page 404
   ========================================================================== */
.error404 #wrap:before {
  background-image: url("../img/error-bg-1.png");
  width: 973px;
  height: 627px;
}
@media (max-width: 768px) {
  .error404 #wrap:before {
    display: none;
  }
}
.error404 #wrap:after {
  background-image: url('data:image/svg+xml,<svg width="816" height="952" viewBox="0 0 816 952" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_f_93_52)"><ellipse cx="101" cy="686.5" rx="515" ry="486.5" fill="%2357E200" fill-opacity="0.1" /></g><defs><filter id="filter0_f_93_52" x="-614" y="0" width="1430" height="1373" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix" /><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /><feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_93_52" /></filter></defs></svg>');
}
.error404 footer {
  padding: 0;
}
.error404 footer .row1400 {
  display: none;
}

.page-404 {
  text-align: center;
}
.page-404 .img-error404 {
  max-height: 630px;
  max-width: 1128px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-404 h1 {
  font-size: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.page-404 .back-button {
  display: none;
}
@media (max-width: 768px) {
  .page-404 .back-button {
    margin: 24px auto;
    display: flex;
  }
}

.social-media {
  margin: 30px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
}
@media (max-width: 768px) {
  .social-media {
    justify-content: center;
    margin: 40px auto;
  }
}
.social-media .item {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s all ease;
}
.social-media .item:hover {
  background: #213f0f;
}
.social-media .item:hover .icon {
  filter: invert(1);
}
.social-media .item .icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: 0.3s all ease;
}
@media (max-width: 768px) {
  .social-media .item .icon {
    width: 25px;
    height: 25px;
  }
}

.header-error {
  padding: 20px 0;
  margin-bottom: 20px;
}
.header-error .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}
.header-error .header-wrapper .logo_header {
  height: 87px;
  object-fit: contain;
}
@media (max-width: 1140px) {
  .header-error .header-wrapper .logo_header {
    height: 50px;
  }
}
.header-error .header-wrapper .white-button {
  padding: 16px 30px;
}
@media (max-width: 1140px) {
  .header-error .header-wrapper .white-button {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .header-error .header-wrapper .white-button {
    display: none;
  }
}

/* ==========================================================================
   Banner
   ========================================================================== */
.banner {
  position: relative;
  z-index: 2;
}
.banner .row1704 {
  overflow: visible;
}
.banner .left-decor {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 1440px) {
  .banner .left-decor {
    top: 30px;
  }
}
@media (max-width: 768px) {
  .banner .left-decor {
    top: 0;
  }
}
.banner .left-decor .decor-div:before {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  content: "";
  top: -123px;
  left: -208px;
  background: url("../img/decor1.png") no-repeat center/contain;
  width: clamp(250px, 40vw, 582px);
  aspect-ratio: 582/482;
  transform-origin: 50% 90%;
  animation: leafTopMove 3s ease-in-out infinite alternate;
  will-change: transform;
}
@media (max-width: 1440px) {
  .banner .left-decor .decor-div:before {
    top: -100px;
  }
}
@media (max-width: 768px) {
  .banner .left-decor .decor-div:before {
    top: 0;
    left: -90px;
    width: clamp(175px, 40vw, 320px);
  }
}
@media (max-width: 425px) {
  .banner .left-decor .decor-div:before {
    left: -62px;
  }
}
.banner .right-decor {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  bottom: -57%;
  right: 0;
  left: auto;
}
@media (max-width: 768px) {
  .banner .right-decor {
    bottom: -80%;
  }
}
.banner .right-decor .decor-div:after {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -57%;
  right: -187px;
  background: url("../img/decor2.png") no-repeat center/contain;
  width: clamp(250px, 40vw, 582px);
  aspect-ratio: 582/482;
  transform-origin: 10% 100%;
  animation: leafTopMoveTwo 2s ease-in-out infinite alternate;
  will-change: transform;
}
@media (max-width: 768px) {
  .banner .right-decor .decor-div:after {
    right: -100px;
  }
}
@keyframes leafTopMove {
  0% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes leafTopMoveTwo {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(3deg);
  }
}
.banner .circle-div {
  pointer-events: none;
  position: absolute;
  width: 360px;
  height: 360px;
  background: #57e200;
  opacity: 0.3;
  filter: blur(100px);
  border-radius: 50%;
  z-index: -1;
  bottom: -190px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
}
@media (max-width: 768px) {
  .banner .circle-div {
    bottom: 190px;
    width: 180px;
    height: 180px;
  }
}
.banner .banner-wrap {
  position: relative;
}
.banner .glass {
  position: absolute;
  top: -114px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
  z-index: 3;
  padding: 70px 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(35px);
  background: rgba(212, 212, 212, 0.05);
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1440px) {
  .banner .glass {
    padding: 50px 80px;
  }
}
@media (max-width: 1140px) {
  .banner .glass {
    top: -123px;
  }
}
@media (max-width: 1024px) {
  .banner .glass {
    display: none;
  }
}
.banner .glass img {
  object-fit: contain;
}
@media (max-width: 1300px) {
  .banner .glass img {
    max-height: 150px;
  }
}
@media (max-width: 1024px) {
  .banner .glass img {
    max-height: 100px;
  }
}
.banner .image-banner {
  height: 710px;
  width: 100%;
  min-height: 250px;
  max-height: 710px;
  max-width: 1704px;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 1440px) {
  .banner .image-banner {
    height: 100%;
    max-height: 710px;
  }
}
.banner .button {
  position: absolute;
  z-index: 3;
  bottom: 114px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
}
@media (max-width: 976px) {
  .banner .button {
    bottom: 20px;
  }
}

/* ==========================================================================
   Blocks: 3 per line
   ========================================================================== */
.blocks-3-per-line .switcher__filter {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
}
.blocks-3-per-line .row1704 {
  padding-top: 48px;
  padding-bottom: 36px;
}
.blocks-3-per-line h2 {
  text-align: center;
}
.blocks-3-per-line .items {
  padding-top: 52px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
@media (max-width: 768px) {
  .blocks-3-per-line .items {
    padding-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.blocks-3-per-line .items .item {
  padding: 32px 19.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 24px 10px;
  backdrop-filter: blur(4px) var(--switcher-filter) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(4px) saturate(var(--saturation));
  box-shadow: inset 2px 3px 1px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent), inset -3px -7px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 100%), transparent);
}
.blocks-3-per-line .items .item:nth-child(2) .icon {
  border-color: #11340d;
}
@media (max-width: 768px) {
  .blocks-3-per-line .items .item:nth-child(1) .icon {
    border-color: #11340d;
  }
  .blocks-3-per-line .items .item:nth-child(2) .icon {
    border-color: #05110f;
  }
}
.blocks-3-per-line .items .icon {
  position: absolute;
  top: -42px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0%);
  padding: 10px;
  width: max-content;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #05110f;
  border-radius: 50%;
  background: linear-gradient(180deg, #57e200 0%, #213f0f 95.68%);
}
@media (max-width: 768px) {
  .blocks-3-per-line .items .icon {
    padding: 8px;
    top: -30px;
  }
}
.blocks-3-per-line .items .icon svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .blocks-3-per-line .items .icon svg {
    width: 24px;
    height: 24px;
  }
}
.blocks-3-per-line .items span {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.section-cards {
  position: relative;
  padding: 36px 0;
}
@keyframes leafWindCard {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.section-cards .row1400 {
  overflow: visible;
}
.section-cards .row1400:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  background: url("../img/decor5.png") no-repeat center/contain;
  top: -180px;
  left: -250px;
  width: clamp(250px, 40vw, 582px);
  aspect-ratio: 582/482;
  transform-origin: 20% 80%;
  animation: leafWindCard 4s ease-in-out infinite;
}
@media (max-width: 1200px) {
  .section-cards .row1400:before {
    left: -150px;
  }
}
@media (max-width: 876px) {
  .section-cards .row1400:before {
    left: 0;
    top: -140px;
  }
}
.section-cards .circle-div {
  pointer-events: none;
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(87, 226, 0, 0.2) 0%, rgba(87, 226, 0, 0.15) 30%, rgba(87, 226, 0, 0.08) 55%, rgba(87, 226, 0, 0.04) 70%, rgba(87, 226, 0, 0) 100%);
  filter: blur(100px);
  border-radius: 50%;
  z-index: -1;
  top: 150px;
  left: 40%;
  transform: translateX(-50%) !important;
}
@media (max-width: 1200px) {
  .section-cards .circle-div {
    width: 500px;
    height: 500px;
  }
}
.section-cards .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 876px) {
  .section-cards .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-cards .cards-wrapper .item-card {
  padding: 40px 32px 66px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .section-cards .cards-wrapper .item-card {
    padding: 30px 20px 40px 20px;
  }
}
.section-cards .cards-wrapper .item-card .image-card {
  margin-bottom: 24px;
  height: 254px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .section-cards .cards-wrapper .item-card .image-card {
    height: auto;
    border-radius: 10px;
  }
}
.section-cards .cards-wrapper .item-card .title-card {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
.section-cards .cards-wrapper .item-card .description-card {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.section-cards .cards-wrapper .item-card .description-card p {
  margin: 0;
}
.section-cards .cards-wrapper .item-card .button {
  width: 100%;
}

/* ==========================================================================
   Section with image and text
   ========================================================================== */
.section-image-text {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
.section-image-text h2 {
  padding-bottom: 72px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-image-text h2 {
    padding-bottom: 40px;
  }
}
.section-image-text .flex-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}
@media (max-width: 1140px) {
  .section-image-text .flex-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-image-text .flex-wrapper .row1400 {
  overflow: visible;
}
.section-image-text .flex-wrapper .left-content .image-label-wrap {
  position: relative;
}
.section-image-text .flex-wrapper .left-content img {
  border-radius: 24px;
  max-width: 688px;
  width: 100%;
  height: 567px;
  object-fit: cover;
}
@media (max-width: 1140px) {
  .section-image-text .flex-wrapper .left-content img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .section-image-text .flex-wrapper .left-content img {
    height: auto;
    border-radius: 10px;
  }
}
.section-image-text .flex-wrapper .left-content .label-text {
  padding: 13px 10px;
  position: absolute;
  top: -25px;
  left: auto;
  right: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #213f0f;
  border-radius: 10px;
  background: #57e200;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  .section-image-text .flex-wrapper .left-content .label-text {
    padding: 10px 7px;
    font-size: 14px;
    transform: rotate(-8deg);
  }
}
.section-image-text .flex-wrapper .right-content .subtitle {
  margin-bottom: 32px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  color: #fff;
}
@media (max-width: 1440px) {
  .section-image-text .flex-wrapper .right-content .subtitle {
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  .section-image-text .flex-wrapper .right-content .subtitle {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .section-image-text .flex-wrapper .right-content .subtitle {
    font-size: 30px;
  }
}
.section-image-text .flex-wrapper .right-content .text {
  margin-bottom: 24px;
}
.section-image-text .flex-wrapper .right-content .button {
  width: 100%;
}
.section-image-text .left-decor {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.section-image-text .left-decor .decor-div:before {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  content: "";
  top: -123px;
  left: -208px;
  background: url("../img/decor3.png") no-repeat center/contain;
  width: clamp(550px, 40vw, 260px);
  aspect-ratio: 582/482;
  transform-origin: 50% 90%;
  animation: animation5 3s ease-in-out infinite alternate;
  will-change: transform;
}
@media (max-width: 1140px) {
  .section-image-text .left-decor .decor-div:before {
    width: clamp(400px, 40vw, 150px);
  }
}
.section-image-text .right-decor {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -185px;
  left: auto;
}
@media (max-width: 1440px) {
  .section-image-text .right-decor {
    bottom: 250px;
    top: auto;
    right: 0;
  }
}
.section-image-text .right-decor .decor-div:after {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: -187px;
  background: url("../img/decor4.png") no-repeat center/contain;
  width: clamp(313px, 40vw, 821px);
  aspect-ratio: 582/482;
  transform-origin: 10% 100%;
  animation: animation6 2s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes animation5 {
  0% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes animation6 {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

/* ==========================================================================
   Section form
   ========================================================================== */
.section-form {
  padding: 50px 0;
}
.section-form .row1400 {
  overflow: visible;
}
.section-form .flex-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1140px) {
  .section-form .flex-wrapper {
    flex-direction: column;
  }
}
.section-form .flex-wrapper .left-content {
  max-width: 682px;
  width: 100%;
  flex: 1;
}
@media (max-width: 1140px) {
  .section-form .flex-wrapper .left-content {
    max-width: 100%;
    padding-bottom: 20px;
  }
}
.section-form .flex-wrapper .left-content .title {
  margin-bottom: 40px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  color: #fff;
}
@media (max-width: 1440px) {
  .section-form .flex-wrapper .left-content .title {
    margin-bottom: 32px;
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  .section-form .flex-wrapper .left-content .title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .section-form .flex-wrapper .left-content .title {
    font-size: 30px;
  }
}
.section-form .flex-wrapper .right-content {
  padding-top: 50px;
  max-width: 673px;
  width: 100%;
}
@media (max-width: 1300px) {
  .section-form .flex-wrapper .right-content {
    max-width: 500px;
  }
}
@media (max-width: 1140px) {
  .section-form .flex-wrapper .right-content {
    max-width: 100%;
  }
}
.section-form .flex-wrapper .right-content .card-form {
  padding: 40px 32px 60px 32px;
  position: relative;
  z-index: 3;
  border: 1px solid #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .section-form .flex-wrapper .right-content .card-form {
    padding: 30px 20px 60px;
  }
}
.section-form .flex-wrapper .right-content .card-form .title-form {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  color: #fff;
}
@media (max-width: 1140px) {
  .section-form .flex-wrapper .right-content .card-form .title-form {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-form .flex-wrapper .right-content .card-form .title-form {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .section-form .flex-wrapper .right-content .card-form .title-form {
    font-size: 20px;
  }
}
.section-form .flex-wrapper .right-content .label-text {
  padding: 13px 10px;
  position: absolute;
  top: -40px;
  left: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #213f0f;
  border-radius: 10px;
  background: #57e200;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  .section-form .flex-wrapper .right-content .label-text {
    padding: 10px 7px;
    font-size: 14px;
    transform: rotate(-8deg);
  }
}

/*# sourceMappingURL=main.css.map */
