html body .header-inner {
  position: fixed;
  z-index: -100;
  max-width: 100%;
  display: block;
  width: 100%;
  padding: 0;
  pointer-events: none;
}
html body .header-inner .header-titles-wrapper, html body .header-inner .header-navigation-wrapper {
  max-width: 100%;
  z-index: -100;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
html body .header-inner .header-titles-wrapper {
  z-index: 101;
  position: relative;
  margin: 0;
  margin-top: 100px;
}
html body .header-inner .header-titles-wrapper .header-titles {
  display: block;
  z-index: 101;
  text-align: center;
  padding: 50px 10px;
}
html body .header-inner .header-titles-wrapper .header-titles .site-logo img {
  margin: auto;
}
html body .header-inner .header-navigation-wrapper .primary-menu-wrapper {
  display: block;
}
html body .header-inner .header-navigation-wrapper nav ul {
  display: block;
}
html body .header-inner .header-navigation-wrapper nav ul li {
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 10px;
}
html body .header-inner .header-navigation-wrapper nav ul li a {
  padding: 15px;
  text-decoration: none;
  background: black;
  padding: 10px;
  font-size: 20px;
  width: 260px;
  margin: auto;
  text-transform: uppercase;
  color: white;
  font-family: "Oswald";
}
html body .header-inner:before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transition: all 500ms ease-in-out;
  clip-path: circle(30px at calc(100% - 65px) 65px);
  visibility: hidden;
}
html body .menu-burger {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  z-index: 101;
  right: 30px;
  top: 30px;
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: #007682;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.24);
  line-height: 0.6;
  text-align: center;
}
html body .menu-burger:focus {
  outline: none;
}
html body .menu-burger:hover > span:after, html body .menu-burger:hover > span:before {
  width: 34px;
  left: 0;
}
html body .menu-burger span {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 34px;
  border-radius: 1px;
  background: #fff;
  vertical-align: middle;
}
html body .menu-burger span:before, html body .menu-burger span:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: all 200ms;
}
html body .menu-burger span:before {
  top: -11px;
  left: 3px;
  width: 28px;
}
html body .menu-burger span:after {
  top: 11px;
  left: 6px;
  width: 22px;
}
html body #site-header.active .header-titles-wrapper, html body #site-header.active .header-navigation-wrapper {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}
html body #site-header.active .header-inner {
  z-index: 100;
  pointer-events: auto;
}
html body #site-header.active .header-inner:before {
  visibility: visible;
  clip-path: circle(100%);
}
html body #site-header.active .menu-burger > span {
  height: 0;
}
html body #site-header.active .menu-burger > span:after, html body #site-header.active .menu-burger > span:before {
  top: 0px;
  left: 0;
  width: 34px;
}
html body #site-header.active .menu-burger > span:after {
  transform: rotate(-45deg);
}
html body #site-header.active .menu-burger > span:before {
  transform: rotate(45deg);
}

html body footer#site-footer .section-inner {
  align-items: center;
}
html body footer#site-footer .section-inner .footer-copyright {
  font-family: "Oswald";
  color: #202020;
  font-weight: 400;
  font-size: 18px;
}
html body footer#site-footer .section-inner .to-the-top {
  width: 40px;
  background: #007682;
  text-align: center;
  border-radius: 50%;
  position: relative;
  height: 42px;
}
html body footer#site-footer .section-inner .to-the-top span .arrow {
  color: white;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

html body .contact input {
  border: none;
  border-radius: 0;
  padding-left: 0;
  outline: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #040608;
  font-size: 16px;
  height: 40px;
  padding: 25px 0;
  font-weight: 400;
  line-height: 1.5;
  background: transparent;
}
html body .contact select {
  border: none;
  border-radius: 0;
  padding-left: 0;
  outline: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #040608;
  font-size: 16px;
  height: 40px;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  background: transparent;
}
html body .contact textarea {
  border: none;
  border-radius: 0;
  padding-left: 0;
  outline: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #040608;
  font-size: 16px;
  padding: 25px 0;
  font-weight: 400;
  line-height: 1.5;
  background: transparent;
}
html body .contact input[type=submit] {
  background: #202020;
  border-color: #202020;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  font-family: Oswald, sans-serif;
  padding: 14px 36px;
  line-height: 1.8em;
  text-transform: uppercase;
  border-radius: 50rem !important;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  height: unset;
}
html body .contact input[type=checkbox] {
  padding: 0;
  height: 16px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
html body .contact .checkbox label {
  cursor: pointer;
}
html body .contact .checkbox .wpcf7-list-item {
  margin-left: 0;
  margin-bottom: 20px;
}

html body .bluebox {
  position: relative;
}
html body .bluebox:after {
  content: "";
  background: #007682;
  top: 0;
  bottom: 0;
  position: absolute;
  right: 0;
  width: 35%;
  margin-left: auto;
}
html body .bluebox .elementor-column-wrap {
  z-index: 1;
}
html body .bluebox .margin-left-auto {
  margin-left: auto;
  margin-top: 10px;
}

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