* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

*, h1, h2, h3, h4, h5, h6, p, span, label, button, a, li {
  font-family: "Exo 2", sans-serif;
  outline: none !important;
}

body {
  font-size: 16px;
  position: relative;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
body.is-authorized {
  display: block;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #ee801e;
}

.button {
  padding: 13px 15px;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  background-color: #ee801e;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button:hover {
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.3);
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.image--column {
  margin-bottom: 60px;
}

.divider {
  height: 4px;
  width: 100px;
  margin: 0 auto 35px 0;
  background-color: #ee801e;
}

.divider-grey {
  height: 1px;
  width: 100%;
  margin: 0 0 90px;
  background-color: #E8E8E8;
}

.section {
  width: 100%;
  position: relative;
  padding: 150px 0 30px;
}

.container {
  max-width: 1200px;
}

.input, .textarea {
  margin: 0 0 30px;
  border: 0;
  width: 100%;
  color: #FFFFFF;
  padding: 10px;
  font-size: 16px;
  background-color: transparent;
  border-bottom: 1px solid #FFFFFF;
}
.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
.input:-moz-placeholder, .textarea:-moz-placeholder {
  color: #FFFFFF;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: #FFFFFF;
}
.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
  color: #FFFFFF;
}

.main {
  color: #ee801e;
}

.white {
  color: #FFFFFF !important;
}

.text-center {
  text-align: center;
}

.link {
  text-decoration: none;
  color: #ee801e;
  cursor: pointer;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  padding: 60px 0 120px;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
}
.table-container table th {
  background-color: #ee801e;
  color: #FFFFFF;
  font-weight: 600;
}
.table-container table td, .table-container table th {
  padding: 8px 12px;
  border: 1px solid #ee801e;
  border-top: 0;
}
.table-container table td img {
  height: 90px;
}

.heading-1 {
  font-weight: 900;
  font-size: 3.75rem;
  margin: 0 0 25px;
  width: 100%;
}

.heading-2 {
  font-weight: 600;
  font-size: 3rem;
  margin: 0 0 25px;
  width: 100%;
}

.heading-3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 25px;
  width: 100%;
}

.paragraph {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 0 10px;
  width: 100%;
}

@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scaleHide {
  0% {
    height: auto;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes scaleShow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.625rem 0;
  background-color: #FFFFFF;
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.header--active {
  opacity: 0;
  transform: translateY(-100%);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
  }
}
.header .logo {
  height: 50px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
    padding: 40px 15px;
    width: 100%;
    text-align: center;
  }
}
.nav .nav-list {
  list-style-type: none;
  display: flex;
}
@media screen and (max-width: 768px) {
  .nav .nav-list {
    flex-wrap: wrap;
    width: 100%;
  }
}
.nav .nav-item {
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .nav .nav-item {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 0 20px;
  }
}
.nav .nav-link {
  text-decoration: none;
  padding: 10px 0;
  color: #212121;
  font-weight: 300;
  display: flex;
  position: relative;
  z-index: 10;
  width: 90px;
  justify-content: center;
  border-radius: 3px;
  font-size: 16px;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .nav-link:hover {
  background-color: rgba(238, 128, 30, 0.3);
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .nav-button {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 5px;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav .lang-button {
  padding: 10px 5px;
  color: #212121;
  font-weight: 300;
}

#mobile-nav {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 25px;
  height: 18px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #mobile-nav {
    display: flex;
  }
}
#mobile-nav span {
  height: 2px;
  background-color: #ee801e;
  border-radius: 2px;
  display: flex;
  width: 100%;
}

.home {
  min-height: 100vh;
  display: flex;
  position: relative;
  padding-top: 30px;
  background-image: url("../img/hero1.png");
  background-attachment: fixed;
  background-size: cover;
}
.home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.home .container {
  display: flex;
  align-items: center;
}
.home .heading-1, .home .heading-2 {
  text-align: center;
  position: relative;
  z-index: 20;
  width: 100%;
}
.home .arrow-container {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.home .arrow {
  -webkit-animation-name: upAndDown;
  -moz-animation-name: upAndDown;
  -o-animation-name: upAndDown;
  animation-name: upAndDown;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.about-me {
  padding-bottom: 120px;
}
.about-me .col-12 {
  margin-top: 75px;
}
.about-me .benefit-column {
  margin-bottom: 24px;
}

.image-section {
  height: 400px;
  background-image: url("../img/hero2.png");
  background-attachment: fixed;
}

.services {
  padding-bottom: 90px;
}
.services .heading {
  padding-bottom: 60px;
}
.services .video-container {
  display: flex;
  justify-content: center;
  padding: 90px 0 0;
}

.hero-banner {
  height: 400px;
  background-image: url("../img/hero5.png");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.hero-banner .heading-1 {
  position: relative;
  z-index: 20;
  text-align: center;
}
.hero-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.ows .heading-3 {
  text-align: center;
}
.ows .paragraph {
  margin: 0 0 45px;
}

.contact {
  background-color: #ee801e;
}
.contact .heading-2 {
  color: #FFFFFF;
}
.contact .form-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.contact .form-field {
  width: 100%;
  display: flex;
}
.contact .textarea {
  resize: none;
  height: 150px;
}
.contact .submit-group {
  display: flex;
  justify-content: flex-end;
}
.contact .button {
  background: #45c9ee;
}
.contact .contact-data {
  margin-bottom: 30px;
}

.wpcf7-form label {
  color: #FFFFFF;
  display: block;
  margin: 0 0 16px;
}
.wpcf7-form input[type=text], .wpcf7-form input[type=email], .wpcf7-form textarea {
  margin: 0 0 8px;
  border: 0;
  width: 100%;
  color: #FFFFFF;
  padding: 10px;
  font-size: 16px;
  background-color: transparent;
  border-bottom: 1px solid #FFFFFF;
}
.wpcf7-form input[type=text]::-webkit-input-placeholder, .wpcf7-form input[type=email]::-webkit-input-placeholder, .wpcf7-form textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
.wpcf7-form input[type=text]:-moz-placeholder, .wpcf7-form input[type=email]:-moz-placeholder, .wpcf7-form textarea:-moz-placeholder {
  color: #FFFFFF;
}
.wpcf7-form input[type=text]::-moz-placeholder, .wpcf7-form input[type=email]::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  color: #FFFFFF;
}
.wpcf7-form input[type=text]:-ms-input-placeholder, .wpcf7-form input[type=email]:-ms-input-placeholder, .wpcf7-form textarea:-ms-input-placeholder {
  color: #FFFFFF;
}
.wpcf7-form input[type=submit] {
  cursor: pointer;
  background-color: #45c9ee;
  padding: 13px 15px;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.wpcf7-form input[type=submit]:hover {
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.3);
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.wpcf7-form .wpcf7-response-output {
  color: #FFFFFF;
  margin: 30px 0 !important;
  padding: 0 !important;
  border-width: 0 !important;
}

#cookies {
  display: none;
  text-align: center;
  z-index: 2000;
  width: 1000px;
  max-width: 90%;
  justify-content: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 5px;
  box-shadow: 0 5px 10px 1px rgba(43, 43, 43, 0.3);
}

.footer {
  padding: 20px 0;
  background-color: #212121;
  color: #FFFFFF;
}
.footer .consent {
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
}
.footer .privacy {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

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