@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8A.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Text Me One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/textmeone/v24/i7dOIFdlayuLUvgoFvHQFWZc.ttf) format('truetype');
}
:root {
  --bg-color: #fff;
  --bg-color-inv: #000;
  --text-color: #000;
  --text-color-inv: #fff;
  --text-accent-color: #59c2e7ff;
}
body {
  background-image: url('../images/background.jpeg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  color: var(--text-color);
  margin: 0;
  overflow-x: hidden;
  touch-action: pan-y;
  scroll-behavior: smooth;
  scroll-margin-top: 128px;
}
body .back-sheet {
  background-color: var(--bg-color);
  transition: background-color 0.5s ease-in-out;
}
body.noscroll {
  overflow: hidden;
}
html[data-theme='dark'] {
  color-scheme: dark;
  --bg-color: #000;
  --text-color: #fff;
  --bg-color-inv: #fff;
  --text-color-inv: #000;
}
html[data-theme='dark'] button.toggle-scheme i.toggle-icon::before {
  content: "\f185";
}
h1,
h2 {
  color: var(--text-accent-color);
  font-family: "Text Me One", sans-serif;
  font-size: 36px;
}
h1h2,
h2h2 {
  font-weight: bold;
}
.content a:not(.btn-hover-slide),
footer a:not(.btn-hover-slide),
.content a:active:not(.btn-hover-slide),
footer a:active:not(.btn-hover-slide),
.content a:hover:not(.btn-hover-slide),
footer a:hover:not(.btn-hover-slide),
.content a:visited:not(.btn-hover-slide),
footer a:visited:not(.btn-hover-slide) {
  color: var(--text-color);
  text-decoration: underline;
}
.clip.sw {
  clip-path: polygon(0 5%, 100% 0, 100% calc(100% - 5%), 0% 100%);
}
.clip.se {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% calc(100% - 5%));
}
.clip.nw {
  clip-path: polygon(0 0, 100% 100%, 100% calc(100% - 5%), 0% 0);
}
.clip.ne {
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% calc(100% - 5%));
}
@media (max-width: 575.98px) {
  .clip.xs-sw {
    clip-path: polygon(0 5%, 100% 0, 100% calc(100% - 5%), 0% 100%);
  }
  .clip.xs-se {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% calc(100% - 5%));
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .clip.md-ne-sw {
    clip-path: polygon(5% 0%, 100% 0%, calc(100% - 5%) 100%, 0% 100%);
  }
  .clip.md-nw-se {
    clip-path: polygon(0 0, calc(100% - 5%) 1%, 100% 100%, 5% 100%);
  }
}
@media (min-width: 992px) {
  .clip.lg-ne-sw {
    clip-path: polygon(5% 0%, 100% 0%, calc(100% - 5%) 100%, 0% 100%);
  }
  .clip.lg-nw-se {
    clip-path: polygon(0 0, calc(100% - 5%) 1%, 100% 100%, 5% 100%);
  }
}
.triangle {
  height: 10vw;
  width: 100%;
  position: absolute;
  background-color: var(--bg-color);
  z-index: 1;
}
.triangle.top:not(.position-relative) {
  top: 0;
}
.triangle.top.right {
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.triangle.top.left {
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.triangle.bottom {
  top: -0.3px;
}
.triangle.bottom:not(.position-relative) {
  bottom: 0;
}
.triangle.bottom.right {
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.triangle.bottom.left {
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.logo {
  width: 3em;
}
header {
  position: relative;
  padding-top: 1em;
}
header .navbar-brand {
  height: 200px;
}
header .navbar-brand img {
  height: 40vw;
  max-height: 128px;
  margin: 0 auto;
  display: block;
}
header .photo {
  max-height: 800px;
  width: 100%;
  background-color: #59c2e7ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (max-width: 767px) {
  header .photo {
    max-height: 600px;
  }
}
header .photo .text {
  text-align: center;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  margin: 0px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
header .photo .text h1 {
  font-family: 'Oswald', sans-serif;
}
header .photo .text h3 {
  font-family: 'Text me one', sans-serif;
}
header.collapse {
  display: block;
}
#welcome {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: 24px;
  font-family: 'Archivo', sans-serif;
}
#welcome .title {
  font-size: 36px;
  color: #2c8dc9;
  font-family: 'Text Me One', sans-serif;
}
.blocks p {
  font-family: "Archivo";
  font-size: 22px;
}
.blocks img {
  width: 100%;
  overflow-clip-margin: content-box;
  overflow: clip;
  margin-bottom: 24px;
}
footer {
  position: relative;
}
footer .btn-hover-slide {
  background-color: white;
  color: black;
  background-image: linear-gradient(to left, black 50%, white 50%);
}
footer .btn-hover-slide:hover {
  background-image: linear-gradient(to left, black 50%, white 50%);
  color: white;
  border-color: #59c2e7ff;
}
footer .container {
  color: white;
}
footer .container p {
  font-family: "Archivo", sans-serif;
}
footer .container p a,
footer .container p a:active,
footer .container p a:hover,
footer .container p a:visited {
  color: white;
}
section.video {
  position: relative;
  height: 40vw;
  width: 100%;
}
section.video .video-container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  direction: ltr;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% calc(100% - 5%));
}
section.video .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container.content {
  padding: 40px 1em;
}
.boldToAccent {
  font-family: "Text Me One", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.5px;
}
.boldToAccent strong {
  color: var(--text-accent-color);
  font-weight: normal;
}
.btn-hover-slide {
  background-color: var(--bg-color-inv);
  color: var(--text-color-inv);
  border-radius: 2em;
  border-color: #59c2e7ff;
  background-image: linear-gradient(to left, var(--bg-color) 50%, var(--bg-color-inv) 50%);
  padding: 1em;
  width: 230px;
  background-size: 200% 100%;
  background-position-x: 0;
  transition: background-position-x 0.45s ease;
}
.btn-hover-slide:hover {
  background-color: var(--bg-color-inv);
  color: var(--text-color);
  background-image: linear-gradient(to left, var(--bg-color) 50%, var(--bg-color-inv) 50%);
  background-position-x: -100%;
  border-color: #59c2e7ff;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 430px) {
  .w-xs-100 {
    width: 100% !important;
  }
}
@media (min-width: 430px) {
  .w-sm-auto {
    width: auto !important;
  }
  .grid-sm-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-sm-cols-2-reverse :nth-child(1) {
    grid-column: 2;
  }
  .grid-sm-cols-2-reverse :nth-child(2) {
    grid-row: 1;
  }
}
nav.navbar .navbar-brand {
  margin: 0;
}
.navbar-nav .nav-link {
  color: var(--text-color);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--text-color);
}
@media (max-width: 430px) {
  nav.navbar {
    position: fixed;
    left: -350px;
    top: 0;
    padding: 80px 10px 60px;
    overflow: scroll;
    z-index: 1;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    align-content: flex-start;
    width: 100%;
  }
  nav.navbar ul > li.nav.item .dropdown-menu {
    background-color: orange;
    color: var(--text-color);
  }
  nav.navbar ul > li.nav.item .dropdown-menu a {
    color: var(--text-color);
  }
  nav.navbar ul > li.nav.item > a.nav-link {
    text-decoration: none;
    padding: 1em 0;
    display: block;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    color: var(--text-color);
    font-size: 18px;
    font-family: Archivo, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: initial;
  }
  nav.navbar ul > li.nav.item > a.nav-link.active,
  nav.navbar ul > li.nav.item > a.nav-link.show {
    color: var(--text-color);
  }
  nav.navbar.open {
    visibility: visible;
    opacity: 1;
    background-color: var(--bg-color);
    left: 0;
  }
}
@media (min-width: 430px) {
  nav.navbar li {
    margin: 0 0.1em;
  }
  nav.navbar li .dropdown-menu {
    background-color: #59c2e7ff;
    padding: 24px;
    list-style-type: none;
  }
  nav.navbar li .dropdown-menu li {
    padding: 0.5em 0;
  }
  nav.navbar li .dropdown-menu li a {
    text-decoration: none;
    color: var(--text-color);
  }
  nav.navbar li a.nav-link {
    position: relative;
  }
  nav.navbar li a.nav-link::before {
    top: 0;
  }
  nav.navbar li a.nav-link::after {
    bottom: 0;
  }
  nav.navbar li a.nav-link::before,
  nav.navbar li a.nav-link::after {
    content: ' ';
    position: absolute;
    z-index: 1;
    left: 0;
    height: 3px;
    width: 100%;
    opacity: 0;
    transition: all 0.5s;
    background-color: #59c2e7ff;
    transform: translateY(0);
  }
  nav.navbar li a.nav-link:hover::before,
  nav.navbar li a.nav-link.active::before,
  nav.navbar li a.nav-link:focus::before,
  nav.navbar li a.nav-link:hover::after,
  nav.navbar li a.nav-link.active::after,
  nav.navbar li a.nav-link:focus::after {
    opacity: 1;
  }
  nav.navbar li a.nav-link:hover::before,
  nav.navbar li a.nav-link.active::before,
  nav.navbar li a.nav-link:focus::before {
    transform: translateY(-5px);
  }
  nav.navbar li a.nav-link:hover::after,
  nav.navbar li a.nav-link.active::after,
  nav.navbar li a.nav-link:focus::after {
    transform: translateY(5px);
  }
}
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
.smart-access-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 0 2.5px 5px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  z-index: 4;
  transition: right 0.2s, transform 0.3s;
  cursor: pointer;
}
.smart-access-button:not(.visible) {
  right: -100px;
}
.smart-access-button .fa-solid {
  line-height: 56px;
  color: #333;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.smart-access-button .fa-solid::before {
  content: "\f129";
}
.smart-access-button.active .fa-solid {
  transform: rotate(-180deg);
  transition: transform 0.3s;
}
.smart-access-button.active .fa-solid::before {
  content: "\f00d";
}
.smart-access-menu {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  z-index: 3;
  line-height: 0;
}
.smart-access-menu.transition {
  transition: opacity 0.3s;
}
.smart-access-menu.open {
  visibility: visible;
  opacity: 1;
}
.smart-access-menu.open.closing {
  transition: visibility 0s 0.3s;
  opacity: 0;
}
.smart-access-menu .protector {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.smart-access-menu .tiles {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 208px;
  margin: auto;
}
.smart-access-menu .tiles .tile {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 2px;
  background-color: #FFF;
  color: #333;
  cursor: pointer;
}
.smart-access-menu .tiles .tile .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 30px;
}
.smart-access-menu .tiles .tile .title {
  position: absolute;
  bottom: 14px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  color: #333;
  line-height: 1;
}
.smart-access-menu .tiles:last-child:nth-child(odd) .tile {
  width: 204px;
}
.smart-access-menu .tiles .tile.facebook {
  background-color: #4267B2;
  color: #FFF;
}
.smart-access-menu .tiles .tile.facebook .title {
  display: none;
}
.smart-access-menu .tiles .tile.twitter {
  background-color: #1DA1F2;
  color: #FFF;
}
.smart-access-menu .tiles .tile.twitter .title {
  display: none;
}
.smart-access-menu .tiles .tile.instagram {
  background-color: #D62A6A;
  color: #FFF;
}
.smart-access-menu .tiles .tile.instagram .title {
  display: none;
}
.smart-access-menu .tiles .tile.linkedin {
  background-color: #0073B1;
  color: #FFF;
}
.smart-access-menu .tiles .tile.linkedin .title {
  display: none;
}
.smart-access-menu .tiles .tile.mail .icon .fa::before {
  content: "\f003";
}
.smart-access-menu .tiles .tile.call .icon .fa::before {
  content: "\f095";
}
.smart-access-menu .tiles .tile.map .icon .fa::before {
  content: "\f041";
}
.smart-access-menu .tiles .tile.about .icon .fa::before {
  content: "\f129";
}
.smart-access-button.mail .fa::before {
  content: "\f003";
}
.smart-access-button.call .fa::before {
  content: "\f095";
}
.smart-access-button.map .fa::before {
  content: "\f041";
}
.smart-access-button.about .fa::before {
  content: "\f129";
}
@media (orientation: landscape) {
  .smart-access-menu.num-buttons-5 .tiles {
    width: 312px;
  }
  .smart-access-menu.num-buttons-6 .tiles {
    width: 312px;
  }
  .smart-access-menu.num-buttons-7 .tiles {
    width: 416px;
  }
  .smart-access-menu.num-buttons-8 .tiles {
    width: 416px;
  }
}
button.toggle-scheme {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  padding: 1em;
  background-color: transparent;
  border: none;
}
button.toggle-scheme i.toggle-icon::before {
  content: "\f186";
  color: var(--color-text);
}
.toggle_navigation {
  display: block;
  position: fixed;
  z-index: 2;
  display: inline-block;
  top: 0px;
  left: 0px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle_navigation .hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 1em;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: var(--text-color);
  border: 0;
}
.toggle_navigation .hamburger .hamburger-box {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
}
.toggle_navigation .hamburger .hamburger-box .hamburger-inner {
  position: absolute;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  transition: background-color 0.5s ease-in-out, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  top: 50%;
  background-color: var(--text-color);
}
.toggle_navigation .hamburger .hamburger-box .hamburger-inner:before {
  content: "";
  display: block;
  top: -14px;
  position: absolute;
  width: 52px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease, background-color 0.5s ease-in-out;
  background-color: var(--text-color);
}
.toggle_navigation .hamburger .hamburger-box .hamburger-inner:after {
  content: "";
  display: block;
  bottom: -14px;
  position: absolute;
  width: 52px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.5s ease-in-out;
  background-color: var(--text-color);
}
.toggle_navigation .hamburger.active .hamburger-box .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.toggle_navigation .hamburger.active .hamburger-box .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.toggle_navigation .hamburger.active .hamburger-box .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.f-carousel__slide {
  height: auto;
  max-width: 100%;
}
.f-carousel__slide img {
  width: 100%;
}
/** Forms CSS **/
.form-block {
  accent-color: #59c2e7ff;
}
.form-block input,
.form-block select,
.form-block textarea {
  border: 1px solid #e7e9ec;
  display: block;
  padding: 15px 20px;
  width: 100%;
  color: --var(text-color);
}
.form-block button[type=submit] {
  background-color: #59c2e7ff;
  color: --var(text-color);
}
.form-block .grid {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.form-block .grid__item {
  flex: 1;
  padding: 10px;
  width: 100%;
}
.form-block [class*=" width-"],
.form-block [class^=width-] {
  flex: 0 0 auto;
}
.form-block .width-6 {
  width: 50%;
}
.form-block .width-12 {
  width: 100%;
}
.form-block label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: --var(text-color);
  font-family: 'Oswald', sans-serif;
}
.form-block .honing {
  display: none;
}
.form-block input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: inline-block;
}
.form-block input[type=checkbox] + label {
  display: inline-block;
}
.block.service {
  padding: 5%;
  background-color: #59c2e7ff;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}
.block .divLink {
  padding: 8%;
}
.block:not(.hasImage) h2 {
  color: white;
}
.block h2 {
  filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.4));
}
.divLink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  transform: rotate(-1deg);
}
.carousel-indicators > button[data-bs-target] {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-right: 3px;
  margin-left: 3px;
  height: 10px;
  width: 10px;
  background-color: #59c2e7ff;
  border-radius: 50%;
  display: inline-block;
}
.carousel-indicators > button[data-bs-target]:not(.active) {
  opacity: 0.4;
}
/*# sourceMappingURL=stylesheet.css.map */