@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
@font-face {
  font-family: "Arial Nova";
  src: url("ArialNova-Bold.eot");
  src: local("Arial Nova Bold"), local("ArialNova-Bold"), url("../fonts/ArialNova-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ArialNova-Bold.woff2") format("woff2"), url("../fonts/ArialNova-Bold.woff") format("woff"), url("../fonts/ArialNova-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Arial Nova";
  src: url("ArialNova.eot");
  src: local("Arial Nova"), local("ArialNova"), url("../fonts/ArialNova.eot?#iefix") format("embedded-opentype"), url("../fonts/ArialNova.woff2") format("woff2"), url("../fonts/ArialNova.woff") format("woff"), url("../fonts/ArialNova.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2?2820a3852bdb9a5832199cc61cec4e65") format("woff2"), url("../fonts/bootstrap-icons.woff?2820a3852bdb9a5832199cc61cec4e65") format("woff");
}
/* ------ */
:root {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  font: normal 400 20px "Arial Nova", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #164F4D;
}

body {
  background-color: #FFF;
  margin: 0;
  overflow-x: hidden;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

/* ------ */
a {
  text-decoration: none;
  color: #164F4D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  color: rgba(22, 79, 77, 0.7);
}

h1, h2, h3, h4, h5, h6 {
  color: #164F4D;
  font-family: "Arial Nova", sans-serif;
}

section {
  color: #164F4D;
  background-color: #FFF;
  padding: 60px 0;
  overflow: clip;
}

.btn {
  display: inline-block;
  border-radius: 99px;
  border: 0px solid #FFF;
  padding: 12px 40px;
  letter-spacing: 0;
  font-family: "Arial Nova", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #164F4D;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary {
  background: #FFF;
  color: #164F4D;
}
.btn-primary:hover, .btn-primary:focus {
  background: #164F4D !important;
  color: #FFF;
}

/* ------ */
/* ------ */
.header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .logo img {
  max-height: 100px;
  margin-top: 15px;
  margin-right: 15px;
}

/* ------ */
@-webkit-keyframes animate-preloader-1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes animate-preloader-1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes animate-preloader-2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes animate-preloader-2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@-webkit-keyframes animate-preloader-3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes animate-preloader-3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #FFF;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#preloader div {
  border-radius: 50%;
  background-color: #D8BF9F;
  width: 13px;
  height: 13px;
  position: absolute;
  left: 50%;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  -webkit-animation: animate-preloader-1 0.6s infinite;
          animation: animate-preloader-1 0.6s infinite;
}
#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  -webkit-animation: animate-preloader-2 0.6s infinite;
          animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  -webkit-animation: animate-preloader-2 0.6s infinite;
          animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  -webkit-animation: animate-preloader-3 0.6s infinite;
          animation: animate-preloader-3 0.6s infinite;
}

/* ------ */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 80px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero .carousel {
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero .carousel .carousel-inner,
.hero .carousel .carousel-item {
  height: 100%;
}
.hero .carousel .carousel-item {
  position: relative;
}
.hero .carousel .carousel-item:before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  position: absolute;
  inset: 0;
}
.hero .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero .text-block {
  max-width: 770px;
}
.hero h2 {
  color: #FFF;
  margin: 0;
  font-size: 26px;
}
.hero p {
  color: #FFF;
  margin: 5px 0 0;
  font-size: 18px;
}
.hero .logos {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  position: absolute;
  bottom: 0;
  right: 25px;
  z-index: 9;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.hero .logos img {
  display: block;
  height: 50%;
}
@media screen and (min-width: 667px) {
  .hero {
    padding-bottom: 100px;
  }
  .hero .logos {
    gap: 50px;
    right: 50px;
  }
}
@media screen and (min-width: 768px) {
  .hero .carousel .carousel-item:before {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.75) 0%, transparent 66%);
  }
  .hero .logos {
    height: 75px;
  }
}
@media screen and (min-width: 992px) {
  .hero {
    padding-bottom: 140px;
    padding-left: 0;
  }
  .hero .container {
    max-width: none;
    padding-left: 200px;
  }
  .hero h2 {
    font-size: 44px;
  }
  .hero p {
    font-size: 20px;
  }
  .hero .logos {
    height: 100px;
  }
}
@media screen and (min-width: 1300px) {
  .hero {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 200px;
  }
}

.hero-bar {
  position: relative;
}
.hero-bar:before {
  content: "";
  background: #D8BF9F;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 100%;
  z-index: 2;
}
.hero-bar:after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #D8BF9F), color-stop(50%, #164F4D));
  background: linear-gradient(90deg, #D8BF9F 50%, #164F4D 50%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
}
@media screen and (min-width: 667px) {
  .hero-bar:before {
    width: 50px;
  }
  .hero-bar:after {
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .hero-bar:before {
    width: 75px;
  }
  .hero-bar:after {
    height: 75px;
  }
}
@media screen and (min-width: 992px) {
  .hero-bar:before {
    width: 100px;
  }
  .hero-bar:after {
    height: 100px;
  }
}

/* ------ */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  margin-bottom: 24px;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #FFF;
}
.php-email-form .sent-message {
  display: none;
  background: #059652;
  margin-bottom: 24px;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #FFF;
}
.php-email-form input[type=text],
.php-email-form input[type=tel],
.php-email-form input[type=email],
.php-email-form textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border-color: transparent;
  border-bottom: 1px solid #164F4D;
  background-color: transparent !important;
  padding: 10px 0;
  font-size: 16px;
  color: #164F4D;
}
.php-email-form input[type=text]:placeholder,
.php-email-form input[type=tel]:placeholder,
.php-email-form input[type=email]:placeholder,
.php-email-form textarea:placeholder {
  color: rgba(22, 79, 77, 0.3);
}
.php-email-form input[type=text]:focus,
.php-email-form input[type=tel]:focus,
.php-email-form input[type=email]:focus,
.php-email-form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  border-bottom: 2px solid #164F4D;
  outline: none;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  border-radius: 0px;
  background-color: transparent;
  border: var(--bs-border-width) solid #164F4D;
}

.form-check a {
  color: #164F4D;
  text-decoration: underline;
}

@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 2rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: #164F4D;
  --bs-modal-bg: #D8BF9F;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
@media screen and (min-width: 1200px) {
  .modal h3 {
    font-size: 1.35rem;
  }
}

.modal-fullscreen {
  width: 100vw;
}
@media screen and (min-width: 769px) {
  .modal-fullscreen {
    width: 50vw;
    float: inline-end;
  }
}

.modal-header {
  border-bottom: transparent;
}

.modal-content {
  font-size: 14px;
}

@media screen and (min-width: 1400px) {
  .modal-body {
    padding: 150px;
  }
}
/*# sourceMappingURL=style.css.map */
