@charset "UTF-8";

@font-face {
  font-family: "dm_sansmedium";
  src: url("../fonts/dmsans-medium-webfont.eot");
  src: url("../fonts/dmsans-medium-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/dmsans-medium-webfont.woff2") format("woff2"),
    url("../fonts/dmsans-medium-webfont.woff") format("woff"),
    url("../fonts/dmsans-medium-webfont.ttf") format("truetype"),
    url("../fonts/dmsans-medium-webfont.svg#dm_sansmedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dm_sansregular";
  src: url("../fonts/dmsans-regular-webfont.eot");
  src: url("../fonts/dmsans-regular-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/dmsans-regular-webfont.woff2") format("woff2"),
    url("../fonts/dmsans-regular-webfont.woff") format("woff"),
    url("../fonts/dmsans-regular-webfont.ttf") format("truetype"),
    url("../fonts/dmsans-regular-webfont.svg#dm_sansregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "dm_sansregular", Arial, Tahoma, Verdana, Helvetica, sans-serif;
}
a.cta-button,
.title_box {
  font-family: "dm_sansmedium", Arial, Tahoma, Verdana, Helvetica, sans-serif;
}

:root {
  --size: 15px;
  --main-color: #666f81;
  --main-color-hover: #17b78d; /* tyrkysova */
  --main-bg-color-grey: #0d182e; /* tmava modra */
  --main-bg-color-grey-light: #1a2845; /* svetla modra */
  --main-bg-color-custom-1: #61cfeb; /* modra svetla*/
  --main-bg-color-custom-2: #648eda; /* modra tmava */
  --bg-color-red: 7;
  --bg-color-green: 13;
  --bg-color-blue: 25;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}
body {
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color-grey);
}
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-size: 0.89rem;
  color: #fff;
  text-align: center;
  background-size: 300% 100%;
  background-image: linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1),
    var(--main-color-hover),
    var(--main-bg-color-custom-1)
  );
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-bottom: 0;
  border-radius: 10px;
}
a.cta-button:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.cta-contact {
  font-size: 1.33rem;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.scrollContainer {
  position: absolute;
  top: -75px;
  z-index: -10000;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.negative-margin {
  margin-bottom: -100px;
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 6);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.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 top;
  background-repeat: no-repeat;
  background-size: cover;
}
.gradient_text__default {
  background: -webkit-linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1),
    var(--main-bg-color-custom-2)
  );
  background: -o-linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1),
    var(--main-bg-color-custom-2)
  );
  background: -moz-linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1),
    var(--main-bg-color-custom-2)
  );
  background: linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1),
    var(--main-bg-color-custom-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title_box {
  position: relative;
  color: #fff;
}
.title_box > * {
  position: relative;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: 2.5rem;
}
.title_box small {
  font-size: 100%;
}

/* bgObject */

.bgObject {
  position: absolute;
  z-index: -1;
}
.bgObject__01 {
  top: 0;
  right: 0;
  -webkit-transform: translate(10%, -5%);
  transform: translate(10%, -5%);
}
.bgObject__01 > * > * {
  width: 738px;
  height: 749px;
  background: url("../images/bg-object-01.jpg") right top no-repeat;
  background-size: contain;
}
.bgObject__02 {
  top: 0;
  left: 70px;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.bgObject__02 > * > * {
  width: 135px;
  height: 135px;
  background: linear-gradient(
    to right,
    var(--main-color-hover),
    var(--main-bg-color-custom-1)
  );
}

/* Animate */

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
@-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;
  }
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgba(
    var(--bg-color-red),
    var(--bg-color-green),
    var(--bg-color-blue),
    0.5
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header a {
  border-bottom: 0;
}
.main_logo {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.main_logo img {
  width: 235px;
}
.main_logo.scroll img {
  width: 140px;
}

.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 0.89rem;
  color: #fff !important;
  line-height: 40px;
  background-image: linear-gradient(
    var(--main-color-hover),
    var(--main-color-hover)
  );
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 1s;
  margin-left: 45px;
  padding: 0 !important;
}
.mainNavigation .nav-item:first-child .nav-link {
  margin-left: 0 !important;
}
.mainNavigation a.nav-link:hover {
  background-size: 100% 1px;
}

/* Main-Content ............................................................... */

/* Img-Main */

.img-main {
  width: 100%;
  max-width: 1100px;
}
.svg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 62%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  z-index: -1;
}
.spin-left {
  animation: spin-left 30s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.spin-right {
  animation: spin-right 40s reverse linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@keyframes spin-left {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-right {
  to {
    transform: rotate(360deg);
  }
}

.list-a li {
  position: relative;
  padding-left: 50px;
}
.list-a li:not(:last-child) {
  margin-bottom: 50px;
}
.list-a li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  content: "\f26b";
  font-family: "Material-Design-Iconic-Font";
  font-size: 20px;
  color: #fff;
  text-align: center;
  background-color: var(--main-color-hover);
  border-radius: 50%;
}

/* Partners */

.partnersWrapper .partner img {
  width: 100%;
  max-width: 140px;
}

/* Advantages */

.advantage .img {
  width: 120px;
  background-color: var(--main-bg-color-grey-light);
  animation: infinite-scale 2s ease-in-out infinite;
}
.advantage:nth-child(even) .img {
  animation-delay: 1s;
}
@keyframes infinite-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer ............................................................... */

.footer {
  font-size: 0.77rem;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}
.footer a {
  border-bottom: 0;
}
.footer_nav__a {
  font-size: 0.89rem;
}
.footer_nav__a li:not(:last-child) {
  position: relative;
  margin-right: 40px;
}
.footer_nav__a li:not(:last-child):after {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  width: 1.5px;
  height: 100%;
  content: "";
  background-color: var(--main-color-hover);
  -webkit-transform: skewX(-45deg) translate(-50%, 0);
  transform: skewX(-45deg) translate(-50%, 0);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
.footer_logo img {
  width: 40px;
}
.webex img {
  width: 120px;
}

/* Effects ............................. */

a {
  -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: 16px;
  }
  .box_padding {
    padding-left: calc(var(--size) * 5);
    padding-right: calc(var(--size) * 5);
  }
  .bgObject__01 > * > * {
    width: 620px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  a.cta-button {
    border-radius: 7px;
  }
  a.cta-contact {
    font-size: 1.21rem;
  }
  .scrollContainer {
    top: -55px;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 3);
    padding-right: calc(var(--size) * 3);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .title_box :is(h1, h2) {
    font-size: 2.14rem;
  }
  .bgObject__01 > * > * {
    width: 500px;
  }
  .bgObject__02 {
    left: 45px;
  }
  .bgObject__02 > * > * {
    width: 90px;
    height: 90px;
  }
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main_logo img {
    width: 170px;
  }
  .mainNavigation a.nav-link {
    line-height: 36px;
    margin-left: 30px;
  }
  .list-a li {
    padding-left: 30px;
  }
  .list-a li:not(:last-child) {
    margin-bottom: 30px;
  }
  .list-a li::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
  .partnersWrapper .partner img {
    max-width: 100px;
  }
  .advantage .img {
    width: 85px;
  }
  .footer_nav__a li:not(:last-child) {
    margin-right: 30px;
  }
  .footer_nav__a li:not(:last-child):after {
    top: 2px;
    height: 80%;
  }
  .footer_logo img {
    width: 30px;
  }
  .webex img {
    width: 85px;
  }
}

@media screen and (max-width: 1200px) {
  .negative-margin {
    margin-bottom: -50px;
  }
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .bgObject__01 > * > * {
    width: 350px;
  }
  .bgObject__02 {
    left: 15px;
  }
  .bgObject__02 > * > * {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 991px) {
  .scrollContainer {
    top: 0;
  }
  .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);
  }
  .header {
    position: relative !important;
    padding-top: 10px !important;
    background-color: var(--main-bg-color-grey) !important;
    padding-bottom: 10px !important;
    animation: none !important;
  }
  .main_logo {
    top: 0px !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .main_logo img {
    width: 140px !important;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-left: 0;
  }
  .mainNavigation a.nav-link {
    display: inline-block;
    margin-left: 0;
  }
  .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");
  }
}

@media screen and (max-width: 767px) {
  .negative-margin {
    margin-bottom: 0;
  }
  .title_box :is(h1, h2) {
    font-size: 1.86rem;
  }
  .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;
  }
  .bgObject__01 > * > * {
    display: none;
  }
  .bgObject__02 {
    left: 5px;
  }
  .bgObject__02 > * > * {
    width: 45px;
    height: 45px;
  }
  .img-main {
    margin-top: -50px;
  }
  .list-a li:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  .img-main {
    margin-top: -30px;
  }
}

@media screen and (max-width: 480px) {
  a.cta-contact {
    font-size: 0.89rem;
  }
  .img-main {
    left: -7%;
    width: 114%;
  }
}
