@charset "UTF-8";

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --font-family: "dm-sans", var(--default-font-family);
  --headings-font-family: "transducer", var(--default-font-family);
  --headings-font-family-condensed: "transducer-condensed",
    var(--default-font-family);
  --headings-font-family-extended: "transducer-extended",
    var(--default-font-family);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --size: 15px;
  --white: #fff;
  --black: #000;
  --main-color: #314c5f; /* text */
  --main-color-hover: #9edbf4; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #02055a; /* tmavo modra */
  --main-bg-color-grey-light: #eaedf9; /* svetlo modra */
  --main-bg-color-red: #e30016; /* cervena */
  --main-bg-color-yellow: #ffec00; /* zlta */
  --main-bg-color-green: #009035; /* zelena */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 18px;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_link {
  position: relative;
  font-size: 1rem;
  color: var(--main-color);
  text-align: center;
  background-color: transparent;
  border: 2px solid var(--black);
  overflow: hidden;
  isolation: isolate;
}
a.cta_link:hover {
  color: var(--white);
}
a.cta_link:before {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 0;
  height: 0;
  content: "";
  background-color: var(--black);
  z-index: -1;
  opacity: 0;
}
a.cta_link:hover:before {
  width: 130%;
  height: 130%;
  opacity: 1;
}
a.cta_link span {
  position: relative;
  top: 0.1rem;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 9.66);
  padding-bottom: calc(var(--size) * 9.66);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.row-smaller-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-bg-color-custom);
}
.container_bg_img {
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-medium);
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(22px + (40 - 22) * ((100vw - 320px) / (1920 - 320)));
}
.title_box :is(h3, h4) {
  font-size: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Animate */

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main_logo {
  position: absolute;
  top: 50%;
  left: calc(var(--size) * 6);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.main_logo img {
  width: 280px;
}
.main_logo.scroll img {
  width: 180px;
}
.header-contacts-wrapper {
  top: 50%;
  right: calc(var(--size) * 6);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.header-contacts a {
  font-size: 1.55rem;
  border-bottom: 0;
}
.header-button a {
  font-size: 1rem;
  text-align: center;
  background-color: transparent;
  padding: 0.5rem 3rem;
  border: 2px solid var(--black);
}

.mainNavigation {
  padding: 0;
  padding-right: 450px;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--main-color) !important;
  line-height: 50px;
  margin-right: 40px;
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-color-hover);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after {
  width: 100%;
  opacity: 1;
}

.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-size: 1rem !important;
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-bg-color-grey);
  margin-left: 0 !important;
  border-bottom: 1px solid #3135ab;
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover {
  color: var(--main-color);
  background-color: var(--main-color-hover);
}

/* Dropdown Transition */

.mainNavigation .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}

/* Rslider ............................................................... */

.slider-wrapper .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slider-wrapper .owl-carousel .owl-animated-in {
  z-index: 0;
}
.slider-wrapper .owl-carousel .owl-animated-out {
  z-index: 1;
}
.fadeOutScale {
  animation-name: fadeOutScale;
}
@keyframes fadeOutScale {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInScale {
  animation-name: fadeInScale;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slider-wrapper {
  width: 100%;
  height: 80vh;
}
.slider-wrapper .owl-carousel,
.slider-wrapper .item {
  height: 80vh;
}
.slider-wrapper-in {
  height: 40vh;
}
.slider-wrapper-in .owl-carousel,
.slider-wrapper-in .item {
  height: 40vh;
}
.carousel-content {
  width: 100%;
  height: 100%;
  color: var(--white);
  /* background-color: rgba(0, 1, 55, 0.55); */
}
.carousel-title {
  font-family: var(--headings-font-family-extended);
  font-weight: var(--font-weight-bold);
  font-size: calc(18px + (50 - 18) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.slider-bottom {
  bottom: 3vh;
  left: 0;
  z-index: 3;
}
.arrow-icon {
  flex: none;
}
.arrow-icon a {
  display: inline-block;
  flex: none;
}
.arrow-icon a img {
  width: 24px;
}
.arrow-icon a:hover img {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}
.text-content {
  color: var(--white);
}
a.slider-button {
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white) !important;
  text-decoration: none;
}
a.slider-button .slider-button-text {
  padding: 0.5rem 1rem;
}
a.slider-button .slider-button-icon {
  padding: 0.5rem 1rem;
  border-left: 2px solid var(--white);
}
a.slider-button:hover {
  color: var(--main-color);
  background-color: var(--white);
}
a.slider-button:hover .slider-button-icon {
  border-left-color: var(--main-color);
}

/* Main-Content ............................................................... */

/* Offer */

a.offer-card {
  border-bottom-width: 8px;
  border-bottom-style: solid;
}
a.offer-card-blue {
  border-color: var(--main-color-hover);
}
a.offer-card-red {
  border-color: var(--main-bg-color-red);
}
a.offer-card-yellow {
  border-color: var(--main-bg-color-yellow);
}
a.offer-card-green {
  border-color: var(--main-bg-color-green);
}
.nav-image-wrapper {
  position: relative;
  height: 800px;
  z-index: -1;
}
.nav-content {
  top: 0;
  left: 0;
  color: var(--white);
  padding: 2rem 2rem 4rem 2rem;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.7)
    )
    fill 1;
}
a.offer-card-blue:hover .nav-content {
  border-image: linear-gradient(
      rgba(2, 5, 90, 0),
      rgba(2, 5, 90, 1),
      rgba(2, 5, 90, 1)
    )
    fill 1;
}
a.offer-card-red:hover .nav-content {
  border-image: linear-gradient(
      rgba(171, 0, 17, 0),
      rgba(171, 0, 17, 1),
      rgba(171, 0, 17, 1)
    )
    fill 1;
}
a.offer-card-yellow:hover .nav-content {
  border-image: linear-gradient(
      rgba(189, 121, 4, 0),
      rgba(189, 121, 4, 1),
      rgba(189, 121, 4, 1)
    )
    fill 1;
}
a.offer-card-green:hover .nav-content {
  border-image: linear-gradient(
      rgba(0, 108, 40, 0),
      rgba(0, 108, 40, 1),
      rgba(0, 108, 40, 1)
    )
    fill 1;
}
h3.nav-title {
  font-family: var(--headings-font-family-extended);
  font-weight: var(--font-weight-bold);
  font-size: calc(22px + (34 - 22) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  line-height: 1.2;
}
a.offer-card .nav-description {
  height: 0;
  opacity: 0;
}
a.offer-card:hover .nav-description {
  height: auto;
  padding-top: 2rem;
  opacity: 1;
}
.nav-arrow img {
  width: 24px;
}

/* Projects */

.offer-nav-buttons {
  display: flex;
}
.offer-nav-buttons .btn {
  width: 100px;
  height: 100px;
  font-size: 1.66rem;
  color: var(--main-color) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-bg-color-grey-light);
  padding: 0;
  border: 0;
  border-radius: 50%;
}
.offer-nav-buttons .btn:hover {
  color: var(--white) !important;
  background-color: var(--main-bg-color-grey);
}
.offer-nav-buttons .btn:focus,
.offer-nav-buttons .btn.focus {
  box-shadow: none;
}
a.project-card .project-image-wrapper {
  position: relative;
  height: 660px;
  z-index: -1;
}
.project-content {
  top: 0;
  left: 0;
  color: var(--white);
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.7)
    )
    fill 1;
}
h3.project-title {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-medium);
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.2;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--white);
}
.project-description {
  padding: 1.5rem 3rem;
}
a.project-card .project-button {
  flex: none;
  padding: 0.8rem 1rem 0.4rem 1rem;
  border: 1.5px solid var(--white);
}
a.project-card:hover .project-button {
  color: var(--main-color);
  background-color: var(--white);
}

/* Partners */

.partnersWrapper .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--black);
  opacity: 1;
}
.partnersWrapper .owl-theme .owl-dots .owl-dot span {
  background-color: var(--black);
  opacity: 0.4;
}
.partnersWrapper .partner img {
  width: 100%;
  max-width: 300px;
}

/* Footer ............................................................... */

.footer {
  font-size: 0.89rem;
}
.footer .logo {
  max-width: 380px;
}
.footer a {
  border-bottom: 0;
}
.footer a:hover {
  color: var(--main-bg-color-grey);
}
.footer h5 {
  font-size: 1.11rem;
}
.footer .list-unstyled {
  font-size: 1.66rem;
  line-height: 1.5;
}
.bottom-footer:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - var(--size) * 2);
  height: 1px;
  content: "";
  background-color: var(--main-color);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color);
}

/* Effects ............................. */

a,
a.cta_link,
a.cta_link:before,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.arrow-icon a img,
a.slider-button,
a.slider-button .slider-button-icon,
.nav-content,
a.offer-card .nav-description,
.offer-nav-buttons .btn,
a.project-card .project-button {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
  .main_logo img {
    width: 200px;
  }
  .main_logo.scroll img {
    width: 120px;
  }
  .mainNavigation {
    padding-right: 300px;
  }
  .mainNavigation a.nav-link {
    line-height: 35px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 6.66);
    padding-bottom: calc(var(--size) * 6.66);
  }
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main_logo {
    left: calc(var(--size) * 4.66);
  }
  .main_logo img {
    max-width: 180px;
  }
  .main_logo.scroll img {
    width: 100px;
  }
  .header-contacts-wrapper {
    right: calc(var(--size) * 4.66);
  }
  .header-contacts a {
    font-size: 1.35rem;
  }
  .header-button a {
    padding: 0.3rem 2rem;
  }
  .mainNavigation a.nav-link {
    margin-right: 15px;
  }
  .arrow-icon a img {
    width: 20px;
  }
  a.offer-card {
    border-bottom-width: 5px;
  }
  .nav-image-wrapper {
    height: 570px;
  }
  .nav-content {
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }
  a.offer-card:hover .nav-description {
    padding-top: 1.5rem;
  }
  .nav-arrow img {
    width: 20px;
  }
  .offer-nav-buttons .btn {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  a.project-card .project-image-wrapper {
    height: 470px;
  }
  h3.project-title {
    padding: 1rem 2rem;
  }
  .project-description {
    padding: 1rem 2rem;
  }
  a.project-card .project-button {
    padding: 0.8rem 1rem 0.4rem 1rem;
  }
  .partnersWrapper .partner img {
    max-width: 230px;
  }
  .footer .logo {
    max-width: 270px;
  }
  .footer h5 {
    font-size: 1rem;
  }
  .footer .list-unstyled {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
  .main_logo {
    left: calc(var(--size) * 2);
  }
  .main_logo img {
    max-width: 90px;
  }
  .main_logo.scroll img {
    width: 70px;
  }
  .header-contacts-wrapper {
    right: calc(var(--size) * 2);
  }
  .mainNavigation {
    padding-right: 240px;
  }
  .mainNavigation a.nav-link {
    margin-right: 10px;
  }
  .nav-image-wrapper {
    height: 450px;
  }
}

@media screen and (max-width: 991px) {
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    position: relative !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .main_logo {
    top: 18px;
    left: 15px;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .main_logo img {
    max-width: 160px !important;
  }
  .header-contacts-wrapper {
    top: 25px;
    right: 85px;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .mainNavigation {
    padding-right: 0;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-left: 0;
  }
  .mainNavigation a.nav-link {
    font-size: 1rem;
    margin-right: 0;
    padding-left: 0 !important;
  }
  .mainNavigation a.nav-link:before {
    display: none;
  }
  .mainNavigation li.dropdown a.nav-link:hover span:after {
    display: block;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    text-align: center;
  }
  .mainNavigation .dropdown-menu {
    height: 0;
    visibility: visible;
    opacity: 0;
    transform: translateY(0);
    transition: 0.5s ease all;
  }
  .mainNavigation .dropdown-menu.show {
    display: block;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.5s ease all;
  }
  .mainNavigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .slider-wrapper {
    height: 400px;
  }
  .slider-wrapper .owl-carousel,
  .slider-wrapper .item {
    height: 400px;
  }
  .slider-wrapper-in {
    height: 250px;
  }
  .slider-wrapper-in .owl-carousel,
  .slider-wrapper-in .item {
    height: 250px;
  }
}

@media screen and (max-width: 800px) {
  .projectsWrapper {
    padding-left: var(--size);
    padding-right: var(--size);
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  h3.project-title {
    padding: 1rem;
  }
  .project-description {
    padding: 1rem;
  }
}

.mainNavigation a.hi span:after {
  width: 100%;
  opacity: 1;
}

.mainNavigation .dropdown-menu a.hi {
  color: var(--black);
  background-color: var(--main-color-hover);
}

.oramovanie{
	border: 1px;
  border-width: 1px;
  border-style: solid;
}

.max_certifikaty{
  max-width: 158px;
  max-height: 223.156px;
}

.padding_custom{
  padding-top: 300px;
}

@media screen and (max-width: 991px) {
  .padding_custom{
    padding-top: 70px;
  }
}

@media screen and (max-width: 366px) {
  .padding_custom{
    padding-top: 30px;
  }
}