@import "normalize.css";
@import "bootstrap-grid.css";
@import url(//fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
@import url(//fonts.googleapis.com/css2?family=Rokkitt:wght@500&display=swap);
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #116BF1;
  transition: all 250ms ease-in;
}
a:hover {
  text-decoration: underline;
  color: #116BF1;
}
:focus {
  outline: 0;
}
b,
strong {
  font-weight: 600;
}
p {
  margin-top: 0;
  margin-bottom: 18px;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 38px;
  font-weight: 600;
  line-height: 120%;
}
@media only screen and (max-width: 1023px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 24px;
  }
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.w-100 {
  width: 100% !important;
}
.clear {
  clear: both;
}
.text-medium {
  font-size: 1.1rem;
}
@media only screen and (max-width: 575px) {
  .text-medium {
    font-size: 20px;
  }
}
.pt-70 {
  padding-top: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
body {
  font-size: 20px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  body.noscroll {
    overflow: hidden;
  }
}
@keyframes footer {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.7);
  }
  100% {
    transform: scaleY(1);
  }
}
.site-header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: all 250ms ease-in;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  max-height: 70px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.site-header.is-sticky .site-header__inner {
  transform: scale(0.9);
  transform-origin: top center;
}
@media only screen and (max-width: 767px) {
  .site-header {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .site-header.open {
    background: #fff;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 0 90px;
  position: relative;
  margin-top: 81px;
}
@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 35px 0 60px;
  }
}
.site-footer.was-animated:before {
  transform: scaleY(1);
  animation: footer 4s ease-in 300ms infinite;
}
.site-footer:before {
  transition: all 250ms ease-in;
  transform-origin: center bottom;
  transform: scaleY(0);
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 81px;
  background: url(../img/footer.svg) center top no-repeat;
  background-size: 100% auto;
}
.site-footer .site-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #C9C9C9;
}
.header-logo {
  max-width: 190px;
  display: block;
}
@media only screen and (max-width: 575px) {
  .header-logo {
    max-width: 106px;
  }
}
.header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .header-menu {
    transition: all 250ms ease-in;
    position: absolute;
    transform: scale(0, 1);
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 999;
    padding-top: 64px;
    transform-origin: right center;
  }
  .header-menu.open {
    transform: scale(1);
  }
}
.header-menu li {
  margin-left: 45px;
  font-size: 18px;
}
@media only screen and (max-width: 1023px) {
  .header-menu li {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu li {
    margin-left: 0;
    margin-bottom: 80px;
  }
}
.header-menu li.current-menu-item a:after {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header-menu li.current-menu-item a:after {
    transform: scale(1);
    width: 169px;
  }
}
.header-menu li a {
  display: block;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .header-menu li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu li a {
    font-size: 18px;
  }
}
.header-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 8px;
  width: 0%;
  border-bottom: 2px solid #F1CD11;
  transition: all 250ms ease-in;
}
@media only screen and (max-width: 767px) {
  .header-menu li a:after {
    height: 127px;
    width: 169px;
    border-bottom: 0;
    margin-top: 0;
    background: url(../img/mobile-menu-bg.svg) center no-repeat;
    background-size: 100%;
    bottom: -50px;
    left: -34px;
    transform: scale(0);
    transform-origin: center center;
  }
}
.header-menu li a:hover {
  text-decoration: none;
}
.header-menu li a:hover:after {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header-menu li a:hover:after {
    transform: scale(1);
    width: 169px;
  }
}
.header .trp-language-switcher-container {
  position: relative !important;
  display: flex !important;
  align-items: center;
  margin-left: 45px !important;
  margin-bottom: 0 !important;
  list-style: none !important;
}
@media only screen and (max-width: 1023px) {
  .header .trp-language-switcher-container {
    margin-left: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container {
    margin-left: 0 !important;
    margin-bottom: 80px !important;
  }
}
.header .trp-language-switcher-container > a {
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 5px 10px !important;
  font-size: 14px;
  font-weight: 600;
  color: #000 !important;
  text-transform: uppercase;
  transition: all 250ms ease-in;
  text-decoration: none;
  cursor: pointer;
  position: static !important;
  margin: 0 !important;
  width: auto !important;
}
.header .trp-language-switcher-container > a:after {
  display: none !important;
}
.header .trp-language-switcher-container > a:hover {
  text-decoration: none;
  color: #116BF1 !important;
}
.header .trp-language-switcher-container > a:hover:after {
  display: none !important;
}
.header .trp-language-switcher-container .trp-menu-ls-label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header .trp-language-switcher-container .trp-flag-image {
  width: 24px !important;
  height: 18px !important;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block !important;
  margin: 0 !important;
}
.header .trp-language-switcher-container .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-width: 120px;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px);
  transition: all 250ms ease-in;
  z-index: 1000;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0 !important;
  display: block !important;
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container .sub-menu {
    position: static;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-top: 0;
    margin-left: 0 !important;
  }
}
.header .trp-language-switcher-container .sub-menu li {
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0 !important;
  list-style: none !important;
}
.header .trp-language-switcher-container .sub-menu li:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container .sub-menu li {
    margin-bottom: 0 !important;
  }
}
.header .trp-language-switcher-container .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #000 !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 250ms ease-in;
  margin: 0 !important;
  width: auto !important;
  position: static !important;
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container .sub-menu li a {
    font-size: 18px;
    font-weight: 600;
  }
}
.header .trp-language-switcher-container .sub-menu li a:after {
  display: none !important;
}
.header .trp-language-switcher-container .sub-menu li a:hover {
  background: #f9f9f9;
  text-decoration: none;
  color: #000 !important;
}
.header .trp-language-switcher-container .sub-menu li a:hover:after {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container .sub-menu li a:hover {
    background: transparent;
  }
}
.header .trp-language-switcher-container .sub-menu li.current-language-menu-item a {
  background: #f0f0f0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .header .trp-language-switcher-container .sub-menu li.current-language-menu-item a {
    background: transparent;
  }
}
.header .trp-language-switcher-container:hover .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
}
@media only screen and (max-width: 1023px) {
  .hero-row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.block {
  padding: 40px 0;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .block {
    padding: 30px 0;
  }
}
.block-intro {
  padding-bottom: 120px;
  min-height: 100vh;
}
@media only screen and (max-width: 767px) {
  .block-intro {
    padding-bottom: 60px;
  }
}
.block-intro p {
  max-width: 480px;
}
.block-intro__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .block-intro-2 {
    padding-bottom: 80px;
  }
}
.block-intro-2 .block-intro__inner p {
  max-width: 545px;
}
.block-intro-2 .block-intro__img {
  display: block;
  max-width: 545px;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .block-intro-2 .block-intro__img {
    max-width: 335px;
    margin: 0 auto;
  }
}
.block-intro-2 p {
  max-width: 100%;
}
.block-text .title {
  max-width: 450px;
}
.block-text__inner {
  max-width: 675px;
}
@media only screen and (max-width: 575px) {
  .block-list {
    overflow: hidden;
  }
}
.block-contact {
  background: #FBFBFC;
  padding: 140px 0 100px;
}
@media only screen and (max-width: 767px) {
  .block-contact {
    padding: 130px 0 90px;
  }
}
@media only screen and (max-width: 575px) {
  .block-contact {
    padding: 70px 0 90px;
  }
}
.block-contact__inner {
  max-width: 435px;
}
.block-contact__inner p {
  color: #656565;
}
.block-contact__inner a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
@media only screen and (max-width: 1023px) {
  .block-contact__inner a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .block-contact__inner a {
    font-size: 16px;
  }
}
.block-contact form .hint {
  margin-left: 55px;
  max-width: 450px;
}
@media only screen and (max-width: 1023px) {
  .block-contact form .hint {
    margin-left: 25px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .block-contact form .hint {
    margin-left: 55px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .block-contact form .hint {
    margin-left: 0;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    max-width: 100%;
  }
}
.block-contact form .btn {
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .block-contact form .btn {
    width: 100%;
    width: calc(100% - 20px);
  }
}
.block-contact .form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
}
.block-contact .form-success > *:not(.spot) {
  position: relative;
  z-index: 1;
}
.block-contact .form-success p {
  max-width: 465px;
  margin: 0 auto;
}
.block-team {
  padding-top: 60px;
}
.block-team h3 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .block-team__inner {
    text-align: center;
    margin-bottom: 70px;
  }
}
.block-team__inner-1 {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .block-team__inner-1 {
    margin-top: 30px;
  }
}
.block-team__inner-3 {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .block-team__inner-3 {
    margin-top: 0;
  }
}
.block-team__inner svg {
  margin-bottom: 40px;
}
.block-team__name {
  margin-bottom: 9px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .block-team__text {
    max-width: 305px;
    margin: 0 auto;
  }
}
.block-happy {
  padding-top: 80px;
  padding-bottom: 120px;
}
.block-happy .title {
  max-width: 580px;
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .block-happy .title {
    max-width: 330px;
  }
}
.block-bottom {
  padding-bottom: 80px;
}
.block-bottom p {
  max-width: 694px;
  color: #656565;
  margin: 0 auto;
  margin-bottom: 40px;
}
.block-services {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .block-services-2 .block-services__inner {
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .block-services-3 .block-services__inner {
    margin-bottom: 270px;
  }
}
.block-services__inner {
  margin-bottom: 160px;
}
@media only screen and (max-width: 1023px) {
  .block-services__inner {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .block-services__inner {
    margin-bottom: 90px;
  }
}
.block-projects {
  overflow: hidden;
  padding-bottom: 60px;
}
.block-projects__row {
  padding: 86px 0;
}
@media only screen and (max-width: 575px) {
  .block-projects__row {
    padding: 56px 0;
  }
}
.block-projects__row.fill {
  position: relative;
}
.block-projects__row.fill.was-animated:before,
.block-projects__row.fill.was-animated:after {
  transform: scaleY(1);
}
.block-projects__row.fill:before,
.block-projects__row.fill:after {
  transition: all 250ms ease-in;
  transform-origin: center bottom;
  transform: scaleY(0);
  background: url(../img/fill-top.svg) left top no-repeat;
  background-size: 100% auto;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 50%;
  left: calc((100vw - 1200px) / -2);
  top: 0;
}
@media only screen and (max-width: 1279px) {
  .block-projects__row.fill:before,
  .block-projects__row.fill:after {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .block-projects__row.fill:before,
  .block-projects__row.fill:after {
    background-size: auto 100%;
    height: 60%;
  }
}
.block-projects__row.fill:after {
  background: url(../img/fill-bottom.svg) left bottom no-repeat;
  background-size: 100% auto;
  top: auto;
  bottom: 0;
  transform-origin: center top;
}
@media only screen and (max-width: 767px) {
  .block-projects__row.fill:after {
    background-size: auto 100%;
  }
}
.block-projects__subtitle {
  color: #041840;
  margin-bottom: 1rem;
  font-weight: 600;
  max-width: 450px;
}
.block-projects__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  border-radius: 15px;
  max-width: 508px;
  float: none !important;
}
@media only screen and (max-width: 767px) {
  .block-projects__img {
    max-width: 345px;
    height: 230px;
  }
}
.block-projects__img.video {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.block-projects__img.video iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.block-projects__img.video .wp-video-shortcode,
.block-projects__img.video .mejs-container,
.block-projects__img.video .mejs-inner,
.block-projects__img.video .wp-video {
  height: 100% !important;
}
.block-projects__img.video .wp-video {
  opacity: 0;
}
.block-projects__img.video:before {
  content: "";
  pointer-events: none;
  width: 50px;
  height: 50px;
  background: url(../img/play-button.svg) center no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.title {
  font-size: 38px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .title {
    font-size: 24px;
  }
}
.title-page {
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1023px) {
  .title-page {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .title-page {
    font-size: 38px;
  }
}
.btn {
  transition: all 250ms ease-in;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
  cursor: pointer;
  padding: 10px 30px;
  position: relative;
  color: #000;
  transform: translateX(10px);
  border: 0;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 20px;
  }
}
.btn::before {
  transition: all 250ms ease-in;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F1CD11;
  transform: skew(20deg, 0deg);
  z-index: -1;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
}
.btn:hover::before {
  background-color: #000;
}
.mask {
  position: relative;
  max-width: 100%;
  min-width: 600px;
}
.mask svg {
  max-width: 100%;
  height: auto;
}
.mask image {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .mask-1 svg {
    width: 333px;
  }
}
.mask-1.was-animated:before {
  transform: scale(1, 1);
}
.mask-1:before {
  transition: all 250ms ease-in;
  transform: scale(0, 0);
  transform-origin: center top;
  content: "";
  width: 88px;
  height: 94px;
  background: url(../img/line-1.svg) center no-repeat;
  position: absolute;
  display: block;
  top: 0;
  left: 15%;
}
@media only screen and (max-width: 1023px) {
  .mask-1:before {
    left: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .mask-1:before {
    left: 28%;
    top: 2%;
    width: 75px;
    height: 64px;
  }
}
@media only screen and (max-width: 575px) {
  .mask-1:before {
    left: 12%;
  }
}
.mask-1 image {
  clip-path: url(#shape-1);
}
@media only screen and (max-width: 767px) {
  .mask-2 svg {
    width: 350px;
  }
}
.mask-2.was-animated:before {
  transform: scale(1, 1);
}
.mask-2:before {
  transition: all 250ms ease-in;
  transform: scale(0, 0);
  transform-origin: center top;
  content: "";
  width: 88px;
  height: 94px;
  background: url(../img/line-2.svg) center no-repeat;
  position: absolute;
  display: block;
  top: 0;
  right: 15%;
}
@media only screen and (max-width: 1023px) {
  .mask-2:before {
    right: 8%;
  }
}
@media only screen and (max-width: 767px) {
  .mask-2:before {
    right: 24%;
    top: 2%;
    width: 70px;
    height: 66px;
  }
}
@media only screen and (max-width: 575px) {
  .mask-2:before {
    right: 12%;
  }
}
.mask-2 image {
  clip-path: url(#shape-2);
}
.mask-team image {
  clip-path: url(#shape-3);
}
.alignright {
  float: right;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .alignright {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}
.alignleft {
  float: left;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 767px) {
  .alignleft {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}
.scroll-down {
  position: relative;
  bottom: -100px;
  font-weight: 500;
  color: #041840;
  text-transform: lowercase;
}
@media only screen and (max-width: 1023px) {
  .scroll-down {
    bottom: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .scroll-down {
    display: none;
  }
}
.scroll-down:before {
  content: "";
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../img/mouse.svg) center no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 250ms ease-in;
}
.scroll-down:hover {
  text-decoration: none;
}
.scroll-down:hover:before {
  transform: translateY(5px);
}
.list-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1023px) {
  .list-icons {
    padding-bottom: 50px;
  }
}
.list-icons li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .list-icons li {
    margin-bottom: 40px;
  }
}
.list-icons li img {
  flex-basis: 65px;
  max-width: 65px;
  width: auto;
}
@media only screen and (max-width: 575px) {
  .list-icons li img {
    flex-basis: 56px;
    max-width: 56px;
  }
}
.list-icons-content {
  padding-left: 35px;
}
@media only screen and (max-width: 575px) {
  .list-icons-content {
    padding-left: 17px;
    width: calc(100% - 56px);
  }
}
.list-icons-content__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 1.2;
}
@media only screen and (max-width: 575px) {
  .list-icons-content__title {
    font-size: 20px;
  }
}
.list-icons-content__text {
  max-width: 685px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  background: #fff;
  border-radius: 2px;
  padding: 22px 24px;
  margin-bottom: 20px;
  border: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="password"] {
    font-size: 20px;
  }
}
textarea {
  background: #fff;
  border-radius: 2px;
  padding: 22px 24px;
  margin-bottom: 20px;
  border: 0;
  width: 100%;
  height: 110px;
  resize: vertical;
}
@media only screen and (max-width: 767px) {
  textarea {
    font-size: 20px;
  }
}
.hint {
  font-size: 14px;
  color: #7E7E7E;
  font-weight: 600;
}
.hint a {
  color: #116BF1;
}
.widget-footer {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .widget-footer {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .widget-footer {
    margin-bottom: 40px;
    font-size: 18px;
  }
}
.widget-footer a {
  color: #fff;
}
.widget-footer ul {
  list-style: none;
  line-height: 2.3rem;
  margin-top: 35px;
}
.widget-footer.footer-address {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .widget-footer.footer-address {
    margin-bottom: 40px;
  }
}
.widget-footer.footer-social {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .widget-footer.footer-social {
    position: absolute;
    top: 0;
    right: 3px;
  }
}
.widget-footer.footer-social a {
  display: inline-block;
  margin-right: 12px;
}
.widget-footer.footer-social a:hover {
  text-decoration: none;
}
.widget-footer.footer-logo img {
  max-width: 137px !important;
}
.widget-footer.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-footer.footer-menu ul li {
  margin-bottom: 1.5rem;
  display: block;
}
.widget-footer.footer-menu ul li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .widget-footer.footer-menu ul li a {
    font-size: 16px;
  }
}
.widget-footer.footer-copyright {
  color: #C9C9C9;
  text-transform: capitalize;
  font-size: 1rem;
}
.widget-footer.footer-copyright a {
  color: #C9C9C9;
  text-decoration: underline;
}
.widget-footer.footer-copyright a:hover {
  color: #fff;
}
.spot {
  position: absolute;
  width: auto;
  z-index: -1;
}
.spot-1 {
  transform: translate(-18px, -38px);
}
@media only screen and (max-width: 575px) {
  .spot-1 {
    transform: translate(-39px, -25px);
  }
}
.spot-2 {
  transform: translate(-25px, -15px);
}
.spot-3 {
  transform: translate(-45px, -80px);
}
@media only screen and (max-width: 575px) {
  .spot-3 {
    width: 185px;
    transform: translate(-5px, -45px);
  }
}
.spot-big {
  right: 0;
  top: -225px;
}
@media only screen and (max-width: 767px) {
  .spot-big {
    top: 105px;
    height: 550px;
  }
}
.spot-big-2 {
  top: auto;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .spot-big-2 {
    bottom: 150px;
  }
}
.spot-big-left {
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .spot-big-left {
    width: 400px;
  }
}
.spot-curve {
  top: -95px;
  right: -25%;
  left: -25%;
  width: 150%;
  height: auto;
  max-width: 1582px;
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .spot-curve {
    top: -25px;
    right: -25%;
    left: -25%;
    min-width: 600px;
  }
}
.spot-form {
  transform: translate(28%, -35px);
  z-index: 0;
  left: 0;
  top: auto;
}
@media only screen and (max-width: 1279px) {
  .spot-form {
    transform: translate(0, -35px);
  }
}
@media only screen and (max-width: 1023px) {
  .spot-form {
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .spot-form {
    transform: translate(28%, -35px);
  }
}
@media only screen and (max-width: 575px) {
  .spot-form {
    transform: translate(0, -35px);
  }
}
.path {
  position: absolute;
  z-index: -1;
}
.path-1 {
  width: 171px;
  left: 100%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .path-1 {
    width: 110px;
    left: auto;
    top: 0;
    right: 0px;
  }
}
.path-2 {
  width: 96px;
  right: 100%;
  top: 95px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .path-2 {
    width: 60px;
    right: 30%;
    top: 100%;
    margin-right: 0;
    transform: translate(0px, -165px);
  }
}
.path-3 {
  width: 527px;
  right: 100%;
  bottom: 100%;
  transform: translate(-70px, 165px);
}
@media only screen and (max-width: 767px) {
  .path-3 {
    width: 280px;
    right: auto;
    left: 0;
    bottom: 100%;
    transform: translate(-20px, -30px);
  }
}
.plane {
  position: absolute;
  width: 67px;
  z-index: -1;
}
.plane-1 {
  left: 100%;
  top: 0;
  transform: translate(-15px, -10px);
}
@media only screen and (max-width: 767px) {
  .plane-1 {
    left: auto;
    right: 0;
    top: 0;
    transform: translate(-70px, -10px);
  }
}
.plane-2 {
  right: 100%;
  transform: translate(-473px, -303px) rotate(136deg);
}
@media only screen and (max-width: 767px) {
  .plane-2 {
    right: 100%;
    bottom: 100%;
    transform: translate(58px, -358px) rotate(136deg);
  }
}
#burger path {
  transition: all 250ms ease-in;
}
#burger.open > path:nth-child(1) {
  transform: rotate(30deg);
  transform-origin: left top;
}
#burger.open > path:nth-child(2) {
  opacity: 0;
}
#burger.open > path:nth-child(3) {
  transform: rotate(-30deg) translateY(-3px);
  transform-origin: center bottom;
}
#overlay {
  position: fixed;
  opacity: 0;
  z-index: -999;
  background-color: rgba(0, 0, 0, 0.74);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #overlay.open {
    opacity: 1;
    z-index: 998;
  }
}
.viewport {
  position: relative;
  height: auto;
  width: 100%;
}
.scroll-container {
  position: relative;
  overflow: visible;
  z-index: 10;
  display: block;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  left: 0;
  right: 0;
  padding-top: 100px;
}
.smooth-scroll .viewport {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.smooth-scroll .scroll-container {
  position: absolute;
  overflow: hidden;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  z-index: 9;
}
.scrolldown a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #000;
  border-radius: 50px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .scrolldown a span {
    top: -30vh !important;
  }
}
.scrolldown a {
  position: absolute;
  top: 85vh;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #000;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.scrolldown a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #000;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes inpanleft {
  0% {
    transform: translateX(6rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0rem);
    opacity: 1;
  }
}
@keyframes inpanright {
  0% {
    transform: translateX(-6rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0rem);
    opacity: 1;
  }
}
@keyframes inpanup {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
@keyframes inpandown {
  0% {
    transform: translateY(-6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
.panIniLeft {
  transform: translateX(6rem);
  animation: inpanleft 1s ease-out 0.5s 1 forwards;
}
.panIniRight {
  transform: translateX(-6rem);
  animation: inpanright 1s ease-out 0.5s 1 forwards;
}
.panIniUp {
  transform: translateY(6rem);
  animation: inpanup 1s ease-out 0.5s 1 forwards;
}
.panIniDown {
  transform: translateY(-6rem);
  animation: inpandown 1s ease-out 0.5s 1 forwards;
}
.scrollReveal {
  opacity: 0;
}
.scrollReveal:nth-child(1) {
  animation-delay: 0.2s;
}
.scrollReveal:nth-child(2) {
  animation-delay: 0.4s;
}
.scrollReveal:nth-child(3) {
  animation-delay: 0.6s;
}
#herotext {
  color: #fff;
}
#herotext strong {
  color: #02968a;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}
@media (max-width: 740px) {
  #herotext strong {
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
  }
}
.fade-in {
  animation: fade-in 3s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0px 0px 18px 1px rgba(0, 151, 139, 0.14);
  }
  50% {
    box-shadow: 0px 0px 25px 6px rgba(0, 151, 139, 0.74);
  }
  100% {
    box-shadow: 0px 0px 18px 1px rgba(0, 151, 139, 0.14);
  }
}
/*# sourceMappingURL=main.css.map */