@charset "UTF-8";

@font-face {
  font-family: "PlayfairDisplayRegular";
  src: url("../fonts/PlayfairDisplayRegular.eot");
  src: url("../fonts/PlayfairDisplayRegular.eot") format("embedded-opentype"),
    url("../fonts/PlayfairDisplayRegular.woff2") format("woff2"),
    url("../fonts/PlayfairDisplayRegular.woff") format("woff"),
    url("../fonts/PlayfairDisplayRegular.ttf") format("truetype"),
    url("../fonts/PlayfairDisplayRegular.svg#PlayfairDisplayRegular")
      format("svg");
}
@font-face {
  font-family: "PoppinsMedium";
  src: url("../fonts/PoppinsMedium.eot");
  src: url("../fonts/PoppinsMedium.eot") format("embedded-opentype"),
    url("../fonts/PoppinsMedium.woff2") format("woff2"),
    url("../fonts/PoppinsMedium.woff") format("woff"),
    url("../fonts/PoppinsMedium.ttf") format("truetype"),
    url("../fonts/PoppinsMedium.svg#PoppinsMedium") format("svg");
}
@font-face {
  font-family: "PoppinsRegular";
  src: url("../fonts/PoppinsRegular.eot");
  src: url("../fonts/PoppinsRegular.eot") format("embedded-opentype"),
    url("../fonts/PoppinsRegular.woff2") format("woff2"),
    url("../fonts/PoppinsRegular.woff") format("woff"),
    url("../fonts/PoppinsRegular.ttf") format("truetype"),
    url("../fonts/PoppinsRegular.svg#PoppinsRegular") format("svg");
}

body {
  font-family: "PoppinsRegular", var(--default-font-family);
}
.mainNavigation,
.advantage-title,
.service-title,
.news-title,
.read-more,
.footer h3 {
  font-family: "PoppinsMedium", var(--default-font-family);
}
.title_box,
.hero-right-text h1 {
  font-family: "PlayfairDisplayRegular", var(--default-font-family);
}

: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;
  --size: 15px;
  --radius: 20px;
  --white: #fff;
  --black: #000;
  --main-color: #000; /* text */
  --main-color-hover: #3a4f96; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #000; /* cierna */
  --main-bg-color-grey-light: #eaeaea; /* svetlo siva */
  --main-bg-color-custom: #3a4f96; /* modra */
  --border-color: #676767;
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 18px;
}
body {
  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_button {
  display: inline-flex;
  overflow: hidden;
  border-bottom: 0;
}
a.cta_button .text {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
}
a.cta_button__a .text {
  color: var(--main-color);
  background-color: var(--white);
  border: 2px solid var(--black) !important;
}
a.cta_button__b .text {
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white) !important;
}
a.cta_button .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 1.12rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: width 0.3s ease, border-radius 0.3s ease;
}
a.cta_button__a .circle {
  color: var(--white);
  background-color: var(--main-bg-color-custom);
}
a.cta_button__b .circle {
  color: var(--main-bg-color-custom);
  background-color: var(--white);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleUp {
  0% {
    width: 44px;
    border-radius: 50%;
  }
  100% {
    width: 70px;
    border-radius: 10em;
  }
}
a.cta_button:hover .circle {
  animation: rotate 0.3s ease forwards, scaleUp 0.3s ease forwards 0.3s;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.container-fluid-custom {
  padding-left: max(1rem, 12.5%);
  padding-right: max(1rem, 12.5%);
}
.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) * 7);
  padding-bottom: calc(var(--size) * 7);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.radius-default {
  border-radius: var(--radius);
}
.border-bottom-custom {
  border-bottom: 1px solid var(--border-color);
}
.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 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.bg {
  background-color: var(--main-bg-color-grey-light);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-01 {
  background-image: url("../images/bg01.jpg");
}
.bg-02 {
  background-image: url("../images/bg02.jpg");
}
.hidden-svg {
  position: absolute;
  top: 0;
  left: -9999px;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(28px + (44 - 28) * ((100vw - 320px) / (1920 - 320)));
}
.title_box :is(h3, h4) {
  font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Header ............................................................... */

.header {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: clamp(2.5rem, 5vw, 5rem);
  width: 100%;
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color-custom);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--black) 50%, white 50%);
  animation: animateNav 0.4s linear;
}
.header-in {
  align-items: start;
}
.header.scroll .header-in {
  align-items: center;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.main_logo {
  z-index: 100;
}
.main_logo img {
  width: 50%;
  max-width: 240px;
}
.main_logo.scroll img {
  width: 70px;
}

.mainNavigation {
  padding: 0;
  padding-right: clamp(1.5rem, 3vw, 3rem);
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--white) !important;
  text-transform: uppercase;
  line-height: 40px;
  margin-right: clamp(1rem, 1.5vw, 2.5rem);
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation .nav-item:last-child a.nav-link {
  margin-right: 0 !important;
}
.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(--white);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after {
  width: 100%;
  opacity: 1;
}
.mainNavigation li.dropdown a.nav-link:hover span:after {
  display: none;
}

.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-custom);
  margin-left: 0 !important;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-bg-color-custom) 70%, white 30%);
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:first-child {
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover {
  color: var(--white);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-custom) 80%,
    white 20%
  );
}

/* 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;
}

/* Hero-Section ............................................................... */

.hero-section {
  height: 90vh;
  overflow: hidden;
  position: relative;
  padding-top: clamp(1.5rem, 3vw, 2.22rem);
  padding-bottom: clamp(3rem, 6vw, 7.77rem);
}
.hero-section .container_bg_img img {
  -webkit-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, black 77%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 77%, transparent 100%);
}
.hero-section-content {
  border: 4px solid var(--main-bg-color-custom);
  overflow: hidden;
}
.hero-left {
  padding: clamp(2rem, 20vw, 28rem) 0 clamp(2rem, 6vw, 3rem) 0;
}
.hero-left:before,
.hero-left:after {
  position: absolute;
  content: "";
  width: clamp(20px, 2vw, 40px);
  aspect-ratio: 1;
  display: flex;
  background-color: inherit;
  left: calc(100% - 0.5px);
}
.hero-left:before {
  top: 0;
  -webkit-clip-path: url(#clip-path--bottom-left);
  clip-path: url(#clip-path--bottom-left);
}
.hero-left:after {
  bottom: 0;
  -webkit-clip-path: url(#clip-path--top-left);
  clip-path: url(#clip-path--top-left);
}
.hero-left-text p {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--white);
  padding: 0 clamp(1rem, 2vw, 3rem);
}
.hero-right img {
  width: max(200px, 20vw);
  opacity: 0.5;
}
.hero-right-text {
  color: var(--white);
  padding: clamp(2rem, 6vw, 3rem);
  width: 100%;
}
.hero-right-text h1 {
  font-size: clamp(2.5rem, 3.5vw, 4.44rem);
  line-height: 1.2;
}
.hero-right-text small {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
}
.hero-section-in {
  height: 40vh !important;
}
.hero-section-in-kontakt {
  height: 55vh !important;
}

/* Main-Content ............................................................... */

/* Advantages */

.advantage-title {
  font-size: clamp(1.37rem, 2.4vw, 1.67rem);
  line-height: 1.2;
}

/* Services */

.service-col {
  margin-bottom: clamp(3rem, 3vw, 5.55rem);
}
.service-title {
  font-size: clamp(1.37rem, 2vw, 2.22rem);
  line-height: 1.2;
}
.services-list a {
  display: block;
  padding: clamp(0.35rem, 0.6vw, 0.7rem) 0;
  border-bottom: 1px solid var(--black);
}

/* News */

.news-wrapper .news-item {
  border: 1.5px solid var(--border-color);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  padding: clamp(0.5rem, 2vw, 1rem);
}
.news-item a:hover img {
  filter: brightness(0.75);
}
.news-content {
  padding: clamp(1rem, 2.5vw, 4rem);
}
.news-title {
  font-size: clamp(1.37rem, 2vw, 1.67rem);
  line-height: 1.2;
}
.read-more {
  display: inline-block;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* CTA-Contact */

.cta-section {
  padding-top: clamp(3rem, 8vw, 8rem);
  padding-bottom: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
}
.cta-section .container_bg_img img {
  -webkit-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
}
.cta-contact-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--black);
  padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
}

/* Footer ............................................................... */

.footer a {
  border-bottom: 0;
}
.footer h3 {
  font-size: 1rem;
  line-height: inherit;
}
.footer_top_logo img {
  width: clamp(120px, 2.5vw, 180px);
}
.footer_bottom {
  font-size: 0.89rem;
  border-top: 1px solid var(--border-color);
}
.footer_bottom .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer_bottom .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color);
}

/* Effects ............................. */

a,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.news-item a img {
  -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;
  }
}

@media screen and (max-width: 1366px) {
  :root {
    --radius: 14px;
  }
  html {
    font-size: 14px;
  }
  a.cta_button .circle {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes scaleUp {
    0% {
      width: 30px;
      border-radius: 50%;
    }
    100% {
      width: 45px;
      border-radius: 10em;
    }
  }
  .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) * 5);
    padding-bottom: calc(var(--size) * 5);
  }
}

@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);
  }
}

@media screen and (max-width: 991px) {
  .container-fluid-custom {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .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: fixed !important;
    top: 0;
    background-color: var(--main-bg-color-custom);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid color-mix(in srgb, var(--black) 50%, white 50%);
    animation: none !important;
  }
  .header + div,
  .header + section {
    margin-top: 65px !important;
  }
  .main_logo {
    position: absolute;
    top: 8px !important;
    left: 15px !important;
    width: fit-content;
  }
  .main_logo img {
    width: 75px !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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .hero-section-in-kontakt {
  height: 30vh !important;
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  .hero-section {
    height: auto;
  }
  .hero-section-content {
    border-width: 3px;
  }
  .hero-left,
  .hero-right {
    padding: 3rem 0;
  }
  .hero-right-text {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }
  .cta-contact-content {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .hero-section-in-kontakt {
  min-height: 20vh !important;
  }
}

.mainNavigation a.hi span:after {
  width: 100%;
  opacity: 1;
}

.mainNavigation .dropdown-menu a.hi {
  color: var(--black);
  background-color: var(--main-color-hover);
}

.service-title {
  font-size: clamp(1.37rem, 1.8vw, 2.22rem);
}

.service-col ul li{
  display: block;
  padding: clamp(0.35rem, 0.6vw, 0.7rem) 0;
  border-bottom: 1px solid var(--black);
}

.service-col ul li:hover {
  color: var(--main-color-hover);
  border-bottom: 1px solid var(--main-color-hover);
  cursor: default;
}

.hero-logo {
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1000px;
  opacity: 1;
}

.hero-logo-svg {
  width: 100%;
  height: auto;
}

.hero-gradient {
  background: #3A4F96;
}

@media screen and (max-width: 767px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-responsive {
    min-height: 50vh;
  }
  
  .hero-logo {
    width: 90%;
    max-width: none;
    top: 50%;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
  }
  
  .hero-responsive {
    min-height: 40vh;
  }
  
  .hero-logo {
    width: 95%;
  }
}

.hero-logo-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.hero-logo-link:hover {
  text-decoration: none;
}

.text-justify {
  text-align: justify;
}