* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
:root {
  font-size: 16px;
}
html, body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
strong {
  font-weight: 500;
}
h2 {
  text-align: center;
  font-family: 'Comfortaa', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
a {
  opacity: 0.7;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 1.0;
}
.button-solid {
  padding: 0.75rem 2.75rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  color: #f1f1f1;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  background-color: #1f1f1f;
}
.page {
  min-height: 100%;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  background-color: #1f1f1f;
}
.oc-row {
  display: flex;
  margin: 0 -0.2rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.oc-row .oc-col-full, .oc-row .oc-col-half {
  padding: 0.3rem;
}
.oc-row .oc-col-full {
  width: 100%;
  flex-basis: 100%;
}
.oc-row .oc-col-half {
  width: 50%;
  flex-basis: 50%;
}
@media screen and (max-width: 576px) {
  .oc-row .oc-col-half {
    width: 100%;
    flex-basis: 100%;
  }
}
.atf-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.atf-background-icon {
  position: absolute;
}
.atf-background-star {
  position: absolute;
  border-radius: 50%;
  background-color: #ffffff;
}
.atf-subtitles {
  padding: 0;
  list-style-type: none;
  font-size: 1.5rem;
}
.atf-subtitles .subtitle-option {
  display: none;
}
.atf-subtitles .subtitle-active {
  height: 2rem;
  text-shadow: 1px 1px 0 #000000;
}
.contact-form-footer {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: end;
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.form-spinner {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  animation: spinner 3s linear infinite;
}
.form-text-field {
  position: relative;
  width: 100%;
  opacity: 0.7;
}
.form-text-field label {
  position: absolute;
  top: 0.88rem;
  left: 1rem;
  pointer-events: none;
  transition: top 200ms linear, font-size 200ms linear;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.25rem;
}
.form-text-field.active label {
  position: absolute;
  top: 0.31rem;
  font-size: 0.69rem;
}
.form-text-field textarea {
  resize: vertical;
}
.form-text-field input[type="text"], .form-text-field input[type="email"], .form-text-field textarea {
  width: 100%;
  padding: 1rem 1rem 0.75rem 1rem;
  border: none;
  border-radius: 5px;
  outline: unset;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
  line-height: 1em;
  background-color: #ffffff;
}
.form-text-field input[type="text"]:focus+label, .form-text-field input[type="email"]:focus+label, .form-text-field textarea:focus+label {
  color: #556f94;
}
.form-checkbox-field {
  margin: 0.5em 0;
  font-family: 'Comfortaa', sans-serif;
}
.service-card-wrapper {
  width: 25%;
  padding: 1em;
  flex-basis: 25%;
  text-align: center;
}
.service-card-wrapper .service-card {
  opacity: 0.0;
  transition: all 1000ms ease-in-out;
  transform: scale(0.8) translateY(100px);
}
.service-card-wrapper .service-card.visible {
  opacity: 1.0;
  transform: scale(1);
}
.service-card-wrapper .service-card .service-card-content {
  width: 100%;
  height: 100%;
  padding: 0 2em;
  margin: 0 auto;
  border-radius: 5px;
}
.service-card-wrapper .service-card .service-card-content .service-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 5px #556f94;
  color: #1f1f1f;
  font-size: 1.25rem;
  line-height: 3rem;
  background-color: #a4b9d6;
}
.service-card-wrapper .service-card .service-card-content .service-title {
  display: flex;
  height: 2.4em;
  margin-bottom: 0.5em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  line-height: 1.2em;
}
.service-card-wrapper .service-card .service-card-content .service-description {
  font-size: 0.85rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1200px) {
  .service-card-wrapper {
    width: 33.333333333333336%;
    flex-basis: 33.333333333333336%;
  }
}
@media screen and (max-width: 992px) {
  .service-card-wrapper {
    width: 50%;
    flex-basis: 50%;
  }
}
@media screen and (max-width: 768px) {
  .service-card-wrapper {
    width: 100%;
    flex-basis: 100%;
  }
}
.legal-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}
.legal-header a {
  opacity: 1.0;
}
.legal-header img {
  max-height: 64px;
}
.page.legal-page {
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background-color: #1f1f1f;
  --text: #FFFFFF;
  --content-headings: #FFFFFF;
}
.page.legal-page h1 {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}
.page.legal-page h2 {
  font-weight: 500;
}
.page.legal-page ul li {
  margin-bottom: 0.5rem;
}
.page.legal-page a {
  color: #f1f1f1;
  font-weight: 500;
  text-decoration: none;
}
.page.legal-page .content {
  width: 800px;
  max-width: 100%;
  padding: 100px 1rem 0 1rem;
  margin: 0 auto;
}
.copyright {
  padding: 1.5rem 0;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  background-color: #000000;
}
.atf-section {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
  padding-bottom: 10%;
  overflow: hidden;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}
.atf-section .atf-content {
  z-index: 1;
  padding: 2rem;
  text-align: center;
}
.atf-section .atf-content .atf-logo {
  width: 160px;
  max-width: 100%;
}
.atf-section .atf-content .atf-title {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000000;
}
.atf-section .atf-bottom-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .atf-section {
    height: 85vh;
  }
  .atf-section .atf-bottom-image {
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 200%;
  }
}
.company-section {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #000000;
  background-image: linear-gradient(to bottom, #000000 0%, #1f1f1f 100%);
}
.company-section .company-section-left, .company-section .company-section-right {
  display: flex;
  width: 50%;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  flex-basis: 50%;
}
@media screen and (max-width: 1200px) {
  .company-section .company-section-left, .company-section .company-section-right {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .company-section .company-section-left, .company-section .company-section-right {
    width: 100%;
    flex-basis: 100%;
  }
}
.company-section .company-section-left .company-section-bg, .company-section .company-section-right .company-section-bg {
  height: 100%;
  flex-grow: 1;
}
.company-section .company-section-left .company-section-bg {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
.company-section .company-section-right {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}
.company-section .company-section-right img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.company-section .company-section-box {
  width: 600px;
  max-width: 100%;
  padding: 4rem 2rem;
}
@media screen and (max-width: 768px) {
  .company-section .company-section-box {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.contact-section {
  padding: 3rem 0;
}
.contact-section .contact-section-inner {
  position: relative;
  width: 1300px;
  max-width: 100%;
  padding: 1rem;
  margin: 0 auto;
}
.contact-section .contact-section-inner h2 {
  margin: 0 0 0.5rem 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-section-inner h2 {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .contact-section .contact-section-inner h2 {
    font-size: 2rem;
  }
}
.contact-section .contact-section-inner .contact-left-box {
  position: absolute;
  left: 0;
  width: 50%;
  padding: 2rem 10% 2rem 2rem;
  border-radius: 15px;
  background-color: #000000;
}
.contact-section .contact-section-inner .contact-left-box p {
  margin: 0;
}
.contact-section .contact-section-inner .contact-left-box .contact-box-section {
  margin-bottom: 0.75em;
}
.contact-section .contact-section-inner .contact-left-box .contact-box-company {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-section .contact-section-inner .contact-left-box .contact-box-section-contacts p {
  margin-bottom: 1em;
}
.contact-section .contact-section-inner .contact-left-box .contact-box-email {
  margin: 1.5rem 0 0 0;
}
.contact-section .contact-section-inner .contact-left-box .contact-box-email a {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-section-inner .contact-left-box {
    position: relative;
    width: 100%;
    padding-right: 2rem;
    text-align: center;
  }
}
.contact-section .contact-section-inner .contact-right-box {
  position: relative;
  width: 60%;
  padding: 2rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: 0;
  border-radius: 15px;
  color: #1f1f1f;
  background-color: #cfdcee;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-section-inner .contact-right-box {
    width: 100%;
  }
}
.legal-section {
  padding: 1rem;
}
.legal-section .legal-section-inner {
  display: flex;
  width: 980px;
  max-width: 100%;
  padding: 1rem;
  margin: 0 auto;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .legal-section .legal-section-inner {
    flex-direction: column;
  }
}
.legal-section .legal-section-inner .legal-logo {
  width: 33.333333333333336%;
  padding: 0 3rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .legal-section .legal-section-inner .legal-logo {
    width: 100%;
    text-align: center;
  }
}
.legal-section .legal-section-inner .legal-logo img {
  width: 96px;
  max-width: 100%;
}
.legal-section .legal-section-inner .legal-company-data {
  width: 33.333333333333336%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .legal-section .legal-section-inner .legal-company-data {
    width: 100%;
    text-align: center;
  }
}
.legal-section .legal-section-inner .legal-company-data p {
  margin: 0;
}
.legal-section .legal-section-inner .legal-company-data .legal-company-name, .legal-section .legal-section-inner .legal-company-data .legal-company-address, .legal-section .legal-section-inner .legal-company-data .legal-company-fiscal, .legal-section .legal-section-inner .legal-company-data .legal-company-contacts {
  margin: 1rem 0;
}
.legal-section .legal-section-inner .legal-company-data .legal-company-address, .legal-section .legal-section-inner .legal-company-data .legal-company-fiscal, .legal-section .legal-section-inner .legal-company-data .legal-company-contacts {
  font-size: 0.85rem;
}
.legal-section .legal-section-inner .legal-company-data .legal-company-name p {
  font-weight: 500;
}
.services-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(to bottom, #1f1f1f 0%, #000000 100%);
}
.services-section .service-cards {
  display: flex;
  width: 1300px;
  max-width: 100%;
  padding: 1.2rem 1.2rem 3rem 1.2rem;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}