@charset "UTF-8";
/* Eric Meyer's Reset v2.0 (https://meyerweb.com/eric/tools/css/reset/) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

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

/* comfortaa-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Comfortaa";
  font-style: normal;
  font-weight: 600;
  src: url("./../fonts/comfortaa-v46-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/nunito-v31-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  src: url("./../fonts/nunito-v31-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  margin-top: 0 !important;
}

body,
html,
* {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #1e1a34;
}

strong,
b {
  font-weight: 600;
}

.btn,
input[type=submit] {
  cursor: pointer !important;
  display: inline-flex !important;
  background-color: #ffc845 !important;
  font-size: 600 !important;
  color: #1e1a34 !important;
  border: 2px solid #ffc845 !important;
  padding: 12px 40px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  line-height: 1em !important;
}
.btn:hover,
input[type=submit]:hover {
  background-color: #1e1a34 !important;
  color: #ffc845 !important;
}
@media (max-width: 991px) {
  .btn,
  input[type=submit] {
    padding: 12px 20px !important;
  }
}

.header,
.hero {
  background-size: cover;
  background-repeat: no-repeat;
}
.header__hamburger,
.hero__hamburger {
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 1000;
}
.header__hamburger span,
.hero__hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 0;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header__hamburger span:nth-child(1),
.hero__hamburger span:nth-child(1) {
  top: 0px;
}
.header__hamburger span:nth-child(2), .header__hamburger span:nth-child(3),
.hero__hamburger span:nth-child(2),
.hero__hamburger span:nth-child(3) {
  top: 12px;
}
.header__hamburger span:nth-child(4),
.hero__hamburger span:nth-child(4) {
  top: 24px;
}
.header__hamburger.open span:nth-child(1), .header__hamburger.open span:nth-child(4),
.hero__hamburger.open span:nth-child(1),
.hero__hamburger.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}
.header__hamburger.open span:nth-child(2),
.hero__hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header__hamburger.open span:nth-child(3),
.hero__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .header__hamburger,
  .hero__hamburger {
    display: block;
  }
}
.header__wrapper,
.hero__wrapper {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}
@media (max-width: 639px) {
  .header__wrapper,
  .hero__wrapper {
    padding: 0 15px;
  }
}
.header__flex,
.hero__flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__flex,
  .hero__flex {
    justify-content: space-between;
  }
}
.header__content,
.hero__content {
  width: 660px;
  max-width: calc(100% - 506px);
  padding: 330px 0 140px;
}
@media (max-width: 991px) {
  .header__content,
  .hero__content {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .header__content,
  .hero__content {
    padding: 200px 0 100px;
  }
}
.header__title,
.hero__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  color: white;
}
.header__title strong,
.hero__title strong {
  color: #ffc845;
}
@media (max-width: 767px) {
  .header__title,
  .hero__title {
    font-size: 45px;
  }
}
.header__text,
.hero__text {
  color: white;
  padding-top: 10px;
}
.header__rect,
.hero__rect {
  position: absolute;
  right: 30px;
  bottom: -265px;
}
@media (max-width: 991px) {
  .header__rect,
  .hero__rect {
    display: none;
  }
}

.hero {
  margin-top: -154px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 30px 0;
  transition: all 0.3s ease;
}
.header--sticky, .header--open {
  background-color: #1e1a34;
}
@media (max-width: 767px) {
  .header {
    padding: 15px 0;
  }
}
.header__logo {
  display: block;
  width: 180px;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .header__logo {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 150px;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .header--open .header__nav {
    display: block;
  }
}
.header__nav {
  flex: 1;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
}
.header__nav ul li {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .header__nav ul li {
    padding-left: 0;
    padding-right: 0;
  }
}
.header__nav ul li:last-child {
  margin-right: 0;
  margin-left: auto;
  padding-right: 0;
}
.header__nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  line-height: 1em !important;
  text-align: center;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100px;
    background: #1e1a34;
    left: 0;
    right: 0;
  }
  .header__nav ul {
    flex-wrap: wrap;
  }
  .header__nav ul li {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .header__nav a.btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .header__nav a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section__wrapper {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 639px) {
  .section__wrapper {
    padding: 0 15px;
  }
}
.section--our-mission {
  margin-top: 280px;
}
@media (max-width: 991px) {
  .section--our-mission {
    margin-top: 80px;
  }
}
.section--our-mission .section__text {
  width: 600px;
  max-width: 100%;
  margin-bottom: 70px;
}
.section--our-mission .box {
  padding: 30px 35px;
  height: 540px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .section--our-mission .box {
    font-size: 15px 20px;
  }
}
.section--our-mission .box__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 45px;
  color: white;
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .section--our-mission .box__title {
    font-size: 40px;
  }
}
.section--our-mission .box__subtitle {
  font-family: "Comfortaa", sans-serif;
  font-size: 25px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .section--our-mission .box__subtitle {
    font-size: 22px;
  }
}
.section--our-mission .box__text {
  color: white;
}
.section--our-method {
  background-color: #1e1a34;
  border-radius: 30px;
  margin-top: 150px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .section--our-method {
    margin-top: 75px;
  }
}
.section--our-method .row {
  margin-top: 80px;
}
.section--our-method .section__title,
.section--our-method .section__text {
  color: white;
  width: 650px;
  max-width: 100%;
  margin-bottom: 20px;
}
.section--where-we-operate {
  padding-top: 120px;
}
.section--where-we-operate .section__title {
  text-align: center;
}
.section__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 60px;
  color: #1e1a34;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 45px;
  }
}
.section .icon img {
  display: block;
  margin: 0 auto 30px;
}
.section .icon__title {
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  color: white;
  line-height: 1;
}
.section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.section .row .col {
  width: 100%;
}
.section .row .col--third {
  width: calc(33.333% - 16.6666px);
  margin-right: 25px;
}
.section .row .col--third:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .section .row .col--third {
    width: calc(50% - 12.5px);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .section .row .col--third:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .section .row .col--third {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.section .row .col--half {
  width: calc(50% - 12.5px);
  margin-right: 25px;
}
.section .row .col--half:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .section .row .col--half {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.section .map {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}
.section .map__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 50px;
  color: #1e1a34;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section .map__title {
    font-size: 35px;
  }
}
.section .map__text {
  font-family: "Comfortaa", sans-serif;
  text-transform: uppercase;
  font-size: 35px;
  color: #1e1a34;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section .map__text {
    font-size: 25px;
  }
}
.section .map__text ul {
  list-style: disc;
  padding-left: 30px;
}
.section .map__content + .map__image {
  padding-left: 50px;
  padding-right: 0;
}
.section .map__image {
  flex: 1;
  padding-right: 50px;
}
.section .map__image img {
  display: block;
  max-width: 100%;
}
@media (max-width: 767px) {
  .section .map__content {
    order: 2;
  }
  .section .map__content, .section .map__image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 25px;
  }
}
.section--contact-us {
  margin-top: 150px;
  background-image: url("../img/contact-bg.jpg");
  padding-top: 30px;
  padding-bottom: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 70px 70px 0 0;
}
@media (max-width: 767px) {
  .section--contact-us {
    margin-top: 75px;
  }
}
.section--contact-us .contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section--contact-us .contacts__content {
  width: 330px;
  margin-top: 50px;
}
.section--contact-us .contacts__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 50px;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section--contact-us .contacts__form {
  padding-right: 80px;
  max-width: calc(100% - 330px);
}
@media (max-width: 1199px) {
  .section--contact-us .contacts__form {
    padding-right: 30px;
  }
}
.section--contact-us .contacts__form label,
.section--contact-us .contacts__form input,
.section--contact-us .contacts__form span {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.section--contact-us .contacts__form .row {
  margin-top: 50px;
}
.section--contact-us .contacts__form .row:first-child {
  margin-top: 0;
}
.section--contact-us .contacts__form .row--submit {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .section--contact-us .contacts__form .row {
    margin-top: 25px !important .section--contact-us .contacts__form .row --submit;
    margin-top-margin-top: 0 !important;
  }
}
.section--contact-us .contacts__form input {
  background: none;
  border: 1px solid white;
  color: white;
  font-size: 25px;
  line-height: 1em;
  font-family: "Nunito", sans-serif;
  padding: 18px 26px;
  box-sizing: border-box;
}
.section--contact-us .contacts__form input::-moz-placeholder {
  color: white;
  opacity: 1;
}
.section--contact-us .contacts__form input::placeholder {
  color: white;
  opacity: 1;
}
.section--contact-us .contacts__form input[type=submit] {
  padding: 21px 41px !important;
  max-width: 100%;
  width: 284px;
  float: right;
  font-size: 30px;
}
.section--contact-us .contacts__form input[type=checkbox] {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 0;
  display: inline-flex;
  -webkit-appearance: none;
  border: 1px solid white;
}
.section--contact-us .contacts__form .wpcf7-acceptance label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section--contact-us .contacts__form .wpcf7-acceptance label span {
  color: white;
  width: calc(100% - 40px);
  padding-left: 10px;
}
.section--contact-us .contacts__form .wpcf7-acceptance label input[type=checkbox]:checked + span:before {
  content: "✔";
  position: absolute;
  left: -25px;
  top: 0;
}
.section--contact-us .contacts__form .wpcf7-not-valid-tip,
.section--contact-us .contacts__form .wpcf7-response-output {
  color: palevioletred;
  position: absolute;
  padding-top: 5px;
  max-width: none;
  width: auto;
}
@media (max-width: 767px) {
  .section--contact-us .contacts__form .wpcf7-not-valid-tip,
  .section--contact-us .contacts__form .wpcf7-response-output {
    position: relative;
  }
}
.section--contact-us .contacts__form .wpcf7-response-output {
  padding-top: 20px;
}
.section--contact-us .contacts__text {
  color: white;
}
@media (max-width: 991px) {
  .section--contact-us .contacts__content, .section--contact-us .contacts__form {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section--contact-us .contacts__form {
    order: 2;
  }
}

.screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__wrapper {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 639px) {
  .footer__wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .footer__wrapper {
    display: block;
    text-align: center;
  }
}
.footer__logo img {
  display: block;
  max-width: 100%;
}
@media (max-width: 991px) {
  .footer__logo {
    margin: 0 auto;
    max-width: 100%;
    width: 360px;
  }
}
.footer__links {
  padding-bottom: 20px;
}
.footer__links ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer__links ul {
    justify-content: center;
    margin-top: 30px;
  }
}
.footer__links ul li {
  padding: 0 20px;
}
.footer__links a {
  color: #1e1a34;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid;
}/*# sourceMappingURL=style.css.map */