@charset "UTF-8";

@font-face {
  font-family: "header_13regular";
  src: url("../fonts/header13-webfont.eot");
  src: url("../fonts/header13-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/header13-webfont.woff2") format("woff2"),
    url("../fonts/header13-webfont.woff") format("woff"),
    url("../fonts/header13-webfont.ttf") format("truetype"),
    url("../fonts/header13-webfont.svg#header_13regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

:root {
  --size: 15px;
  --radius: 40px;
  --headings-font-family: "la-parisienne-script-regular", sans-serif;
  --font-family: "barlow", sans-serif;
  --font-family-narrow: "barlow-condensed", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --white: #fff;
  --black: #000;
  --main-color: #292929; /* text */
  --main-color-hover: #585cfd; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #caaf7f; /* cierna */
  --main-bg-color-grey-light:#302f2f; /* modra */
  --main-bg-color-custom:  #302f2f; /* modra */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 20px;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-light);
  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 {
  position: relative;
  font-family: var(--font-family-narrow);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
}
a.cta_buttom__a {
  color: var(--main-color);
}
a.cta_buttom__b {
  color: var(--white);
}
a.cta_button img {
  width: 72px;
}
a.cta_button:hover img {
  animation: animate-button 0.8s forwards ease-in-out;
}
@keyframes animate-button {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(30%);
  }
  50% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(0);
  }
}
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) * 10.6);
  padding-bottom: calc(var(--size) * 10.6);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.radius-custom {
  border-top-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.radius-custom:hover {
  border-top-right-radius: calc(var(--radius) * 1.33);
  border-bottom-left-radius: calc(var(--radius) * 1.33);
}
.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;
}
.color-grey {
  color: #848484;
}
.color-custom {
  color: var(--main-bg-color-custom) !important;
}
.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;
}
.bg_gradient:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  content: "";
  background-color: var(--main-bg-color-grey-light);
  border-radius: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  filter: blur(8rem);
  opacity: 0.6;
  z-index: -1;
}

.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-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  font-size: calc(32px + (74 - 32) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  font-size: inherit;
  color: inherit;
}

.title_box__sm {
  position: relative;
}
.text-white .ttitle_box__sm {
  color: var(--white);
}
.title_box__sm > * {
  position: relative;
  line-height: 1.2em;
}
.title_box__sm :is(h1, h2) {
  font-family: var(--font-family-narrow);
  font-weight: var(--font-weight-regular);
  font-size: calc(22px + (36 - 22) * ((100vw - 320px) / (1920 - 320)));
  letter-spacing: 0.3em;
}
.title_box__sm small {
  font-family: inherit;
  font-weight: var(--font-weight-bold);
  font-size: inherit;
  color: inherit;
}

.title_box__xl {
  position: relative;
  color: var(--white);
}
.title_box__xl > * {
  position: relative;
  line-height: 1.2em;
}
.title_box__xl :is(h1, h2) {
  font-family: var(--font-family-narrow);
  font-weight: var(--font-weight-regular);
  font-size: calc(22px + (36 - 22) * ((100vw - 320px) / (1920 - 320)));
  letter-spacing: 0.3em;
}
.title_box__xl small {
  display: block;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  font-size: calc(35px + (100 - 35) * ((100vw - 320px) / (1920 - 320)));
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.title_bg {
  position: relative;
  display: inline-block;
}
.title_bg:before {
  position: absolute;
  content: "";
}
.title_bg__a:before {
  top: 100%;
  left: 50%;
  width: 125%;
  height: 28px;
  background: url("../images/title_bg__a.svg") center top no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -20%);
  transform: translate(-50%, -20%);
}
.title_bg__a_light:before {
  width: 105%;
  filter: invert(70%) sepia(60%) saturate(185%) hue-rotate(22deg)
    brightness(67%) contrast(82%)
  -webkit-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  z-index: -1;
}
.title_bg__a_dark:before {
  filter: invert(15%) sepia(29%) saturate(4443%) hue-rotate(227deg)
    brightness(101%) contrast(112%);
}
.title_bg__b:before {
  top: 50%;
  left: 50%;
  width: 125%;
  height: 120%;
  background: url("../images/title_bg__b.svg") center center no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: invert(15%) sepia(29%) saturate(4443%) hue-rotate(227deg)
    brightness(101%) contrast(112%);
  z-index: -1;
}

/* Animate */

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoomOut {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1s;
}
.zoomOut {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/* Header ............................................................... */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 900;
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color-grey-light);
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
  box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.main_logo {
  top: 40px;
  left: calc(var(--size) * 6);
  z-index: 100;
}
.header.scroll .main_logo {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.main_logo img {
  width: 140px;
}
.header.scroll .main_logo img {
  width: 60px;
}

.header_nav a {
  border-bottom: 0;
}
.header_nav_a {
  padding-left: 35px;
  padding-right: 35px;
}
.header_nav_a a {
  font-size: 1.2rem;
  color: var(--white);
}
.header_nav_a a:hover {
  color: var(--main-color-hover);
}
.header_nav_b a {
  color: var(--main-color);
  height: 36px;
  line-height: 36px;
  font-family: var(--font-weight-regular);
  color: var(--main-bg-color-grey-light);
  background-color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}
.header_nav_b a small {
  font-weight: var(--font-weight-bold);
  font-size: inherit;
}
.header_nav_b a:hover {
  color: var(--white);
  background-color: var(--main-color-hover);
}

.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation a.nav-link {
  position: relative;
  font-weight: var(--font-weight-regular);
  font-size: 1.2rem;
  color: var(--white) !important;
  line-height: 40px;
  margin-left: 50px;
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation .nav-item:first-child a.nav-link {
  margin-left: 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(--main-bg-color-custom);
  -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;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-bg-color-grey-light);
  margin-left: 0 !important;
  border-bottom: 1px solid #3b3da1;
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:first-child {
  border-top-left-radius: 0.823em;
  border-top-right-radius: 0.823em;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 0.823em;
  border-bottom-right-radius: 0.823em;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover {
  color: var(--main-bg-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 ............................................................... */

.rslider_wrapper {
  position: relative;
  height: 100vh;
}
.rslider_wrapper:before,
.rslider_wrapper:after {
  position: absolute;
  top: 0;
  content: "";
  background-color: var(--main-bg-color-grey-light);
  border-radius: 50%;
  filter: blur(8rem);
  opacity: 0.6;
}
.rslider_wrapper:before {
  left: 0;
  width: 1200px;
  height: 1200px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rslider_wrapper:after {
  right: 0;
  width: 1200px;
  height: 800px;
  -webkit-transform: translate(30%, -50%);
  transform: translate(30%, -50%);
}
.rslider_wrapper_in {
  height: 40vh;
}
.rslides,
.rslides_li,
.rslider_img {
  height: 100%;
}
.rslider_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: -10;
}
.rslider_img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(
    var(--bg-color-red),
    var(--bg-color-green),
    var(--bg-color-blue),
    0.1
  );
}
.rslider_img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    var(--main-bg-color-grey) 100%
  );
}
.rslider_wrapper_in .rslider_img:after {
  display: none;
}
.rslider_wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rslider_content {
  width: 100%;
  padding-top: 40vh;
  z-index: 10;
}
.rslider_title__h1 > div:nth-child(1) {
  font-family: var(--font-family-narrow);
  font-weight: var(--font-weight-bold);
  /*font-size: calc(55px + (150 - 55) * ((100vw - 320px) / (1920 - 320)));*/
  font-size: 100px;
  line-height: 1;
}
.rslider_title__h1 > div:nth-child(2) {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  /*font-size: calc(45px + (135 - 45) * ((100vw - 320px) / (1920 - 320)));*/
  font-size: 80px;
  line-height: 1;
}
.rslider_title__h1 > div:nth-child(3){
	margin-top:50px;
}
.rslider_title__h1 > div:nth-child(3) a {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  /*font-size: calc(45px + (135 - 45) * ((100vw - 320px) / (1920 - 320)));*/
  font-size: 40px;
  padding: 10px 40px;
  border-radius:25px;
  background:#fff;
  color:var(--main-bg-color-grey-light);
  display: inline-block;
}
@media screen and (max-width: 1225px) {
	.rslider_content {
		padding-top: 		35vh;
	}
	.rslider_title__h1 > div:nth-child(1) {
		font-size: 90px;
	}
	.rslider_title__h1 > div:nth-child(2) {
		font-size: 70px;
	}
	.rslider_title__h1 > div:nth-child(3) {
		margin-top:30px;
	}
	.rslider_title__h1 > div:nth-child(3) a {
		font-size: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.rslider_content {
		padding-top: 		25vh;
	}
	.rslider_title__h1 > div:nth-child(1) {
		font-size: 80px;
	}
	.rslider_title__h1 > div:nth-child(2) {
		font-size: 60px;
	}
	.rslider_title__h1 > div:nth-child(3) {
		margin-top:30px;
	}
	.rslider_title__h1 > div:nth-child(3) a {
		font-size: 30px;
	}
}
@media screen and (max-width: 900px) {
	.rslider_content {
		padding-top: 		25vh;
	}
	.rslider_title__h1 > div:nth-child(1) {
		font-size: 60px;
	}
	.rslider_title__h1 > div:nth-child(2) {
		font-size: 40px;
	}
	.rslider_title__h1 > div:nth-child(3) {
		margin-top:20px;
	}
	.rslider_title__h1 > div:nth-child(3) a {
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
	
	
	.rslider_title__h1 > div:nth-child(3) a {
		font-size: 20px;
	}
}
/* Main-Content ............................................................... */

.img_bg_wrapper {
  padding-top: calc(var(--size) * 13.3);
}
.img_bg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  border-image: linear-gradient(
      rgba(255, 255, 255, 1),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(5, 5, 5, 1)
    )
    fill 1;
}
.img_bg img {
  position: relative;
  z-index: -10;
}

.image-container {
  top: 100%;
  right: 0;
  width: 40%;
  padding-bottom: 40%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate(15%, -20%);
  transform: translate(15%, -20%);
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 70%
  );
}
.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: var(--white);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.bottom-container {
  margin-top: -100px;
}

/* Feature-Cards */

a.feature-card {
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 33%;
  height: 0;
  padding-bottom: 33%;
  border-bottom: 0;
}
a.feature-card:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
a.feature-card:not(:first-child) {
  margin-left: -40px;
}
a.feature-card:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/bg-feature-card.svg") center center no-repeat;
  background-size: cover;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(322deg) brightness(106%)
    contrast(103%);
}
a.feature-card-middle:before {
  filter: invert(12%) sepia(70%) saturate(4502%) hue-rotate(240deg)
    brightness(69%) contrast(98%);
  opacity: 0.9;
}
a.feature-card > div {
  top: 0;
  left: 0;
  padding: 15%;
}
.feature-card-top img {
  width: 35%;
}
.feature-card-top h3 {
  font-weight: var(--font-weight-medium);
  font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
  line-height: 1.2;
}
.feature-card .arrow-icon {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.3;
}

/* Services */

.servicesCarousel .owl-stage {
  display: flex;
}
.servicesCarousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.servicesCarousel .owl-theme .owl-prev i,
.servicesCarousel .owl-theme .owl-next i {
  position: absolute;
  top: -90px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 1.22rem !important;
  color: var(--white);
  text-align: center;
  background-color: transparent;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  box-sizing: content-box;
}
.servicesCarousel .owl-theme .owl-prev i:hover,
.servicesCarousel .owl-theme .owl-next i:hover {
  color: var(--main-color-hover);
  background-color: var(--white);
}
.servicesCarousel .owl-theme .owl-prev i.la-arrow-left {
  right: 55px;
}
.servicesCarousel .owl-theme .owl-next i.la-arrow-right {
  right: 0;
}
.servicesCarousel .owl-item:nth-child(odd) a.article-card {
  margin-top: 40px;
}
.servicesCarousel a.article-card {
  border: 1px solid #706b6b;
}
.servicesCarousel a.article-card .article-card-content {
  top: 0;
  left: 0;
  padding: 60px;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75)
    )
    fill 1;
}
.servicesCarousel a.article-card .article-card-content h3 {
  font-weight: var(--font-weight-medium);
  font-size: 1.5rem;
  line-height: 1.2;
}
.servicesCarousel a.article-card:hover .article-card-content h3 {
  color: var(--main-color-hover);
}

/* References */

.referencesWrapper {
  padding-left: 120px;
  padding-right: 120px;
}
.referencesWrapper .owl-carousel .owl-nav {
  height: 0;
  margin: 0;
}
.referencesWrapper .owl-stage {
  display: flex;
}
.referencesWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.referencesWrapper .owl-theme .owl-prev i,
.referencesWrapper .owl-theme .owl-next i {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 45px;
  color: transparent !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.referencesWrapper .owl-theme .owl-prev i.fa-angle-left {
  left: -120px;
  background-image: url("../images/arrow-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left 50%;
}
.referencesWrapper .owl-theme .owl-next i.fa-angle-right {
  right: -120px;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 50%;
}
.referencesWrapper .owl-theme i:hover {
  filter: invert(0.8);
}
.reference_name h3 {
  font-weight: var(--font-weight-medium);
  font-size: 2rem;
}

/* Gallery */

.p_technology_gallery_margin {
  margin-bottom: 30px;
}
.p_technology_gallery_box .gallery {
  height: 310px;
}
.p_technology_gallery_box .gallery_big {
  height: 640px;
}
.p_technology_gallery_box .gallery a {
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* Blog */

.blogCarousel .owl-stage {
  display: flex;
}
.blogCarousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.blogCarousel .owl-theme .owl-prev i,
.blogCarousel .owl-theme .owl-next i {
  position: absolute;
  top: -140px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 1.22rem !important;
  color: var(--main-bg-color-grey-light);
  text-align: center;
  background-color: transparent;
  border: 1.5px solid var(--main-bg-color-grey);
  border-radius: 50%;
  box-sizing: content-box;
}
.blogCarousel .owl-theme .owl-prev i:hover,
.blogCarousel .owl-theme .owl-next i:hover {
  color: var(--main-color-hover);
  background-color: var(--main-bg-color-grey);
}
.blogCarousel .owl-theme .owl-prev i.la-arrow-left {
  right: 55px;
}
.blogCarousel .owl-theme .owl-next i.la-arrow-right {
  right: 0;
}
.blogCarousel a.article-card .article-card-content {
  top: 0;
  left: 0;
  padding: 60px;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75)
    )
    fill 1;
}
.blogCarousel a.article-card .article-card-content h3 {
  font-weight: var(--font-weight-medium);
  font-size: 1.25rem;
}
.blogCarousel a.article-card .read-time {
  flex: none;
}
.blogCarousel a.article-card .read-time .icon {
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
  color: var(--white);
  background-color: var(--main-bg-color-custom);
}
.blogCarousel a.article-card:hover .read-time .icon {
  color: var(--main-bg-color-custom);
  background-color: var(--white);
}

/* Footer ............................................................... */

.footer {
  font-weight: var(--font-weight-regular);
}
.footer_content {
  padding-top: 120px;
  padding-bottom: 100px;
}
.footer_content a {
  color: var(--white);
  border-bottom: 0;
}
.footer_content a:hover {
  color: var(--main-color-hover);
}
.footer_content ul a {
  font-size: 1.25rem;
  line-height: 2em;
}
.footer_content ul a span {
  color: #464646;
}
.footer_content address {
  padding-left: 70px;
  border-left: 1px solid #464646;
}
.footer_content address span.address-icon {
  position: relative;
  display: block;
  padding-left: 70px;
}
.footer_content address span.address-icon:before {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 45px;
  color: #464646;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer_content address span.address-location:before {
  content: "\f015";
}
.footer_content address span.address-phone:before {
  content: "\f095";
}
.footer_content address span.address-email:before {
  content: "\f0e0";
}
.footer_content address a {
  color: var(--white);
}
.footer_content address a:hover {
  color: var(--main-color-hover);
}
.footer_logo img {
  width: 280px;
}
.footer_bottom {
  font-size: 0.75rem;
}
.footer_bottom a {
  color: var(--white);
  border-bottom: 0;
}
.footer_bottom a:hover {
  color: #7879b2;
}
.footer_bottom > .row > div:nth-child(2) a {
  font-size: 1rem;
  color: #7879b2;
}
.footer_bottom > .row > div:nth-child(2) a:hover {
  color: var(--white);
}

/* Effects ............................. */

a,
a.radius-custom,
.header_nav_b a,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
a.feature-card,
.servicesCarousel .owl-theme .owl-prev i,
.servicesCarousel .owl-theme .owl-next i,
.servicesCarousel a.article-card .article-card-content h3,
.referencesWrapper .owl-theme .owl-prev i,
.referencesWrapper .owl-theme .owl-next i,
.blogCarousel a.article-card .read-time .icon,
.blogCarousel .owl-theme .owl-prev i,
.blogCarousel .owl-theme .owl-next i {
  -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: 1680px) {
  html {
    font-size: 18px;
  }
  .box_padding {
    padding-left: calc(var(--size) * 5);
    padding-right: calc(var(--size) * 5);
  }
  .title_box__sm :is(h1, h2) {
    letter-spacing: 0.2em;
  }
  .header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main_logo {
    top: 30px;
    left: calc(var(--size) * 5);
  }
  .rslider_wrapper:before {
    width: 900px;
    height: 900px;
  }
  .rslider_wrapper:after {
    width: 900px;
    height: 600px;
  }
  .servicesCarousel .owl-theme .owl-prev i,
  .servicesCarousel .owl-theme .owl-next i {
    top: -50px;
  }
  .servicesCarousel a.article-card .article-card-content {
    padding: 45px;
  }
  .p_technology_gallery_group {
    margin-left: -10px;
    margin-right: -10px;
  }
  .p_technology_gallery_box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .p_technology_gallery_margin {
    margin-bottom: 20px;
  }
  .blogCarousel .owl-theme .owl-prev i,
  .blogCarousel .owl-theme .owl-next i {
    top: -120px;
  }
  .blogCarousel a.article-card .article-card-content {
    padding: 45px;
  }
}

@media screen and (max-width: 1366px) {
  :root {
    --radius: 28px;
  }
  html {
    font-size: 16px;
  }
  a.cta_button img {
    width: 52px;
  }
  .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.6);
    padding-bottom: calc(var(--size) * 6.6);
  }
  .bg_gradient:before {
    width: 600px;
    height: 600px;
  }
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main_logo {
    top: 20px;
    left: calc(var(--size) * 4.66);
  }
  .main_logo img {
    width: 100px;
  }
  .header.scroll .main_logo img {
    width: 50px;
  }
  .header_nav_a a {
    font-size: 1rem;
  }
  .header_nav_a {
    padding-left: 25px;
    padding-right: 25px;
  }
  .header_nav_b a {
    height: 26px;
    line-height: 26px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .mainNavigation a.nav-link {
    font-size: 1.06rem;
    line-height: 36px;
    margin-left: 30px;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    line-height: 26px !important;
  }
  a.feature-card:not(:first-child) {
    margin-left: -25px;
  }
  .servicesCarousel .owl-theme .owl-prev i,
  .servicesCarousel .owl-theme .owl-next i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1rem !important;
  }
  .servicesCarousel .owl-theme .owl-prev i.la-arrow-left {
    right: 40px;
  }
  .servicesCarousel .owl-item:nth-child(odd) a.article-card {
    margin-top: 30px;
  }
  .servicesCarousel a.article-card .article-card-content {
    padding: 30px;
  }
  .servicesCarousel a.article-card .article-card-content h3 {
    font-size: 1.31rem;
  }
  .referencesWrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
  .referencesWrapper .owl-theme .owl-prev i,
  .referencesWrapper .owl-theme .owl-next i {
    width: 20px;
  }
  .referencesWrapper .owl-theme .owl-prev i.fa-angle-left {
    left: -60px;
  }
  .referencesWrapper .owl-theme .owl-next i.fa-angle-right {
    right: -60px;
  }
  .reference_name h3 {
    font-size: 1.75rem;
  }
  .p_technology_gallery_box .gallery {
    height: 240px;
  }
  .p_technology_gallery_box .gallery_big {
    height: 500px;
  }
  .blogCarousel .owl-theme .owl-prev i,
  .blogCarousel .owl-theme .owl-next i {
    top: -110px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1rem !important;
  }
  .blogCarousel .owl-theme .owl-prev i.la-arrow-left {
    right: 40px;
  }
  .blogCarousel a.article-card .article-card-content {
    padding: 30px 20px 30px 30px;
  }
  .blogCarousel a.article-card .article-card-content h3 {
    font-size: 1.12rem;
  }
  .blogCarousel a.article-card .read-time .icon {
    width: 56px;
    height: 56px;
    font-size: 1.56rem;
  }
  .footer_content {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .footer_content ul a {
    font-size: 1.12rem;
  }
  .footer_content address {
    padding-left: 50px;
  }
  .footer_content address span.address-icon {
    padding-left: 45px;
  }
  .footer_content address span.address-icon:before {
    font-size: 35px;
  }
  .footer_logo img {
    width: 200px;
  }
}

@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);
  }
  .title_box__sm :is(h1, h2) {
    letter-spacing: 0;
  }
  .bg_gradient:before {
    width: 400px;
    height: 400px;
  }
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main_logo {
    top: 15px;
    left: calc(var(--size) * 2);
  }
  .mainNavigation a.nav-link {
    margin-right: 15px;
  }
  .rslider_wrapper:before {
    width: 500px;
    height: 500px;
  }
  .rslider_wrapper:after {
    width: 500px;
    height: 333px;
  }
  .image-container {
    -webkit-transform: translate(15%, -10%);
    transform: translate(15%, -10%);
  }
  .top-container:before {
    height: 15vh;
  }
  .bottom-container {
    margin-top: -50px;
  }
  .p_technology_gallery_box .gallery {
    height: 190px;
  }
  .p_technology_gallery_box .gallery_big {
    height: 400px;
  }
  .blogCarousel .owl-theme .owl-prev i,
  .blogCarousel .owl-theme .owl-next i {
    top: -100px;
  }
  .footer_content {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .footer_content ul a {
    font-size: 1.06rem;
  }
  .footer_content address {
    padding-left: 30px;
  }
  .footer_logo img {
    width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .img_bg_wrapper {
    overflow: hidden;
  }
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .rellax-mobile {
    transform: translate3d(0, 0, 0) !important;
  }
  .header {
    position: relative !important;
   background-color: var(--main-bg-color-grey-light);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    -webkit-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    animation: none !important;
  }
  .header.scroll {
    position: fixed !important;
    
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    -webkit-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    box-shadow: 0 9px 12px -7px rgba(0, 0, 0, 0.06);
    animation: animateNav 0.4s linear !important;
  }
  .main_logo {
    top: 10px !important;
    left: 15px;
    -webkit-transform: translate(0) !important;
    transform: translate(0) !important;
  }
  .main_logo img {
    width: 36px !important;
  }
  .header_nav {
    position: absolute;
    top: 6px;
    right: 90px;
  }
  .header_nav_a {
    padding-left: 0;
    padding-right: 0;
  }
  .header_nav_a a {
    font-size: 1.2rem;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .mainNavigation a.nav-link {
    font-size: 1.2rem;
    margin-left: 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;
    line-height: 30px !important;
  }
  .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");
  }
  .rslider_wrapper {
    height: 400px;
  }
  .rslider_wrapper_in {
    height: 200px;
  }
  .rslider_wrapper:before,
  .rslider_wrapper:after {
    display: none;
  }
  .rslider_content {
    padding-top: 50px;
  }
  .top-container:before {
    display: none;
  }
  .bottom-container {
    margin-top: 35px;
  }
  .p_technology_gallery_group {
    margin-left: -5px;
    margin-right: -5px;
  }
  .p_technology_gallery_box {
    padding-left: 5px;
    padding-right: 5px;
  }
  .p_technology_gallery_margin {
    margin-bottom: 10px;
  }
  .p_technology_gallery_box .gallery {
    height: 165px;
  }
  .p_technology_gallery_box .gallery_big {
    height: 340px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --radius: 18px;
  }
  .custom-relative {
    position: relative;
  }
  .title_box__xl small {
    margin-bottom: 0.5rem;
  }
  .title_bg__a_light:before {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }
  .referencesWrapper {
    padding-left: 0;
    padding-right: 0;
  }
  /*.referencesWrapper .owl-theme .owl-prev i,
  .referencesWrapper .owl-theme .owl-next i {
    display: none;
  }*/
  .reference_name h3 {
    font-size: 1.5rem;
  }
  .p_technology_gallery_box .gallery_big {
    margin-bottom: 10px;
  }
  .blogCarousel .owl-theme .owl-prev i,
  .blogCarousel .owl-theme .owl-next i {
    top: -75px;
  }
  .footer_content address {
    padding-left: 0;
    border-left: 0;
  }
  .footer_content address span.address-icon {
    padding-left: 0;
  }
  .footer_content address span.address-icon:before {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .servicesCarousel .owl-item:nth-child(odd) a.article-card {
    margin-top: 0;
  }
  .referencesWrapper .owl-theme .owl-next i.fa-angle-right {
    right: -15px;
  }
  .referencesWrapper .owl-theme .owl-prev i.fa-angle-left {
    left: -15px;
  }
}

@media screen and (max-width: 575px) {
  a.feature-card {
    width: 300px;
    height: 300px;
    padding-bottom: 0;
  }
  a.feature-card:not(:first-child) {
    margin-top: 15px;
    margin-left: 0;
  }
}

/* custom */
.dropdown-menu a.hi {
  color: #fff !important;
  background-color: #000 !important;
  }

  .mainNavigation a.nav-link.hi span:after {
    width: 100%;
    opacity: 1;
}

select#sluzba {
    padding: 1.5em 1em 1.05em 4.15em;
    font-weight: bold;
    font-size: 70.25%;
    border: none !important;
}

select#sluzba option {
    font-weight: normal;
    font-size: 16px;
}

.select_arrow {
    position: relative;
    /* height: calc(100% - 17px); */
    color: var(--main-color) !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../images/select-arrow.svg") 97% 50% no-repeat !important;
    background-size: 20px 20px !important;
    /* margin: 1em; */
  }
  @media screen and (max-width: 767px) {
    .select_arrow {
      min-height: 55px;
    }
  }
  .select_arrow option {
    color: black !important;
  }

#gallery-uvod .pager {
    display: none;
}

#sluzby-uvod .we_button {
    position: relative !important;
}

@media screen and (max-width: 991px) {
  .header_nav {
      z-index: 50;
  }
}

.we_button {
  position: relative;
  z-index: 5000;
}

.custom_table_padding div .table td{
  padding: 0.50rem;
}

.close{
  position: absolute;
  right: 0;
  color: white;
  margin-right: 10px;
  margin-top: 5px;
  font-size: 40px;
}

.close:hover {
  color: #fff;
}

.modal-content {
  background-color: black !important;
}

.pulse_custom{
  animation: pulse_custom 2s ease 0s infinite normal forwards;
}

@keyframes pulse_custom {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

@media screen and (min-width: 767px) {
  .footer_content address span.address-icon {
    width: 250px;
  }
}