@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

body.no-overflow {
  overflow:hidden;
}

.container.wide {
  max-width: 1685px;
  z-index:3;
}

#introSection h1,
#introSection h2 {
  font-size: 100px;
  line-height: 1em;
  font-weight: 800;
  color: #fff;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #0000f4;
}

#preloader .spinner {
  mix-blend-mode: multiply;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#preloader img {
  max-width: 80px;
  -webkit-animation: spinner 1.4s linear infinite forwards;
  animation: spinner 1.4s linear infinite forwards;
}

@-webkit-keyframes GradAnim {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes GradAnim {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

/** HEADER */

@-webkit-keyframes logoRotate {
  from {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes logoRotate {
  from {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
#logo {
  position: absolute;
  left: 80px;
  top: 50px;
  animation: forwards logoRotate 0.8s ease-out 1;
  z-index: 2;
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  padding-right: 80px;
  padding-top: 110px;

  z-index: 50;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header.activated {
  background: #fff;
  padding-bottom: 15px;
  padding-top: 30px;
  padding-right:130px;
  box-shadow: 0px 10px 52px -30px rgba(0, 0, 0, 0.4);
}

header.activated ul {
  text-align: center;
}

header.activated ul li a {
  font-size: 30px;
  color:#00007a;
}

header.activated > #fixedLogo > img {
  top: 22px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

header .responsive-menu-toggle {
  display: none;
  font-size: 30px;
  float: right;
}

header .langMenu {
  position:absolute;
  right:120px;
  top:50%;
  font-size:30px;
  transform:translate(0px, -30px);
}
header .langMenu a {
  color:#00003f;
}
header .langMenu .separator {
  color:#00003f;
  margin:0 2px;
}
header .langMenu a.current {
  font-weight:bold;
  color:#fff;
  cursor:default;
}
header .langMenu a.current:hover {
  text-decoration:none;
}
header.activated .langMenu {
  /*opacity:0;
  visibility: hidden;*/
  top:50%;
  transform:translate(50px, -21px);
}
header.activated .langMenu {
  right:80px;
}
header.activated .langMenu a.current {
  color:#00003f;
}

header ul {
  list-style-type: none;
  text-align: right;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

header ul li {
  padding: 0px;
  display: inline-block;
  margin-left: 45px;
  margin-right: 45px;
}

header ul li a {
  color: #fff;
  font-size: 30px;
  position: relative;
  display: block;
}

header ul li a:hover {
  color: #09095e;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header ul li a.current {
  font-weight:800;
}

.responsive-menu {
  background: #fff;
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 90;
  padding: 90px 30px 90px 30px;

  -webkit-transition: all 0.5s ease-in-out;

  transition: all 0.5s ease-in-out;
}

.responsive-menu.active {
  top: 0;
}

.responsive-menu ul {
  list-style-type: none;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.responsive-menu ul li {
  padding: 25px 0;
  text-align: center;
  font-size: 26px;
}

.responsive-menu ul li a {
  color: #000;
  text-decoration: none;
}

.responsive-menu .fa-times {
  font-size: 35px;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  top: 35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.responsive-menu .fa-times:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  cursor: pointer;
}

#fixedLogo img {
  width: 220px;
  position: absolute;
  left: 69px;
  top: 0px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

/** INTRO */

#introSection {
  height: 100vh;
  position: relative;
}

.intro-container {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#introSection p {
  color: #fff;
  font-size: 30px;
  margin-top: 30px;
  display: inline-block;
}

#introSection p i {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: 20px;
}

#introSection p:hover {
  cursor: pointer;
}

#introSection p:hover i {
  margin-right: 25px;
}

#introSection p:not(i) {
  font-weight: 800;
}


#introSection .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00007a;
  z-index: 0;
  overflow: hidden;
}
#introSection .circle {
  width:1815px;
  height:1815px;
  position:absolute;
  right:0;
  top:0;
  transform:translate(50%, -25%);
  z-index:1;
}
#introSection .circle img {
  -webkit-animation: introCircle 30s linear infinite forwards;
  animation: introCircle 30s linear infinite forwards;
}
@-webkit-keyframes introCircle {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes introCircle {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#introSection .overlayVideo {
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:red;
  z-index:100;
  transition:150ms linear;
  opacity:0;
  visibility: hidden;
}
#introSection .overlayVideo.show {
  opacity:1;
  visibility: visible;
}
#introSection .overlayVideo video {
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#introSection .overlayVideo .playBtn {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:287px;
  height:287px;
  background:url('img/overlayVideo__play.png') no-repeat center center;
  cursor:pointer;
}
#introSection .overlayVideo .pauseBtn {
  position:absolute;
  left:35px;
  bottom:35px;
  width:40px;
  height:68px;
  background:url('img/overlayVideo__pause.png') no-repeat center center;
  cursor:pointer;
  display:none;
}
#introSection .overlayVideo .closeBtn {
  position:absolute;
  right:35px;
  top:35px;
  height:62px;
  width:65px;
  background:url('img/overlayVideo__close.png') no-repeat center center;
  cursor:pointer;
  
}
/** Second Intro */

#introSecondSection {
  position: relative;
  min-height: 700px;
  padding-top: 130px;
  margin-bottom: 120px;
  max-width:1920px;
  margin:0 auto 200px;
}

#introSecondSection .introslider {
  padding-top: 85px;
  outline: none !important;
}

.introslider .introslide {
  outline: none;
  max-height: 700px;
}

#introSecondSection #slider {
  position: absolute;
  right: 0;
  top: 260px;
  width: 55%;
  min-width: 600px;
  outline: none !important;
}

#introSecondSection #slider .slick-next {
  display: none !important;
}

#introSecondSection #slider img {
  width: 100%;
}

#introSecondSection ul {
  padding-left: 20px;
  margin-top: 30px;
  line-height: 2.2;
}

#introSecondSection ul li {
  font-size: 18px;
}

#introSecondSection .slick-prev {
  display: none !important;
}

#introSecondSection .custom-next {
  font-size: 24px;
  font-weight: 800;
  color: #49abdd;
  margin-top: 50px;
  margin-left: -15px;
}
#introSecondSection .custom-next i {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#introSecondSection .custom-next:hover {
  cursor: pointer;
}
#introSecondSection .custom-next:hover i {
  margin-left: 14px;
}

#introSecondSection h3 {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#introSecondSection p {
  font-size: 20px;
  font-weight: 600;
  margin-top:60px;
}

#introHead1 {
  margin-top: -182px;
  color: white;
}
#introHead2 {
  color: #0000db;
  mix-blend-mode: multiply;
}

.grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.grid .col {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}


#introSecondSectionNav {
  width: calc(100% - 100px);
  float: right;
  max-height: 69px !important;
}
#introSecondSectionNav:after {
  content:'';
  width:100px;
  height:100%;
  position:absolute;
  top:0;
  right:0;
  pointer-events: none;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

#introSecondSectionNav .fa-play {
  color: #49abdd;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top:50%;
}

#introSecondSectionNav .fa-play:hover {
  cursor: pointer;
  color: #000;
}

#introSecondSectionNav .fa-play.left {
  -webkit-transform: rotate(-180deg) translateY(50%);
  transform: rotate(-180deg) translateY(50%);
  left: -40px;
  padding:10px;
}

#introSecondSectionNav .fa-play:not(.left) {
  right: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding:10px;
}

#introSecondSectionNav .slick-slide {
  outline: none;
  display: inline-block;
  font-size: 30px;
  line-height:1em;
  color: #000000;
  font-weight: 800;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  text-align:center;
  max-height:70px;
}

#introSecondSectionNav .slick-slide:hover {
  color: #49abdd;
}

#introSecondSectionNav .slick-slide.slick-current {
  color: #49abdd;
}

#introSecondSectionNav .slick-track {
  list-style-type: none;
  padding-left: 0px;
}

#introSecondSectionNav .slick-slide:not(:last-child) {
  margin-right: 60px;
}



/**
WORK SECTION
*/

#workSection {
  position: relative;
  z-index: 6;
  margin-bottom: 100px;
  background:#00007a;
  padding:150px 0 90px;
}

#workSection h3 {
  color: #fff;
}

#workNameSlider {
  width: calc(100% - 100px);
  float: right;
  max-height:45px !important;
}
#workNameSlider:after {
  content:'';
  width:100px;
  height:100%;
  position:absolute;
  top:0;
  right:0;
  pointer-events: none;
  background: rgb(0,0,122);
  background: -moz-linear-gradient(90deg, rgba(0,0,122,0) 0%, rgba(0,0,122,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0,0,122,0) 0%, rgba(0,0,122,1) 100%);
  background: linear-gradient(90deg, rgba(0,0,122,0) 0%, rgba(0,0,122,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00007a",endColorstr="#00007a",GradientType=1);
}
#workNameSlider .fa-play {
  color: #49abdd;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 6px;
}

#workNameSlider .fa-play:hover {
  cursor: pointer;
  color: #fff;
}

#workNameSlider .fa-play.left {
  -webkit-transform: rotate(-180deg) translateY(-50%);
  transform: rotate(-180deg) translateY(-50%);
  left: -60px;
  padding:10px;
  margin-top:-12px;
}

#workNameSlider .fa-play:not(.left) {
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top:0;
  padding:10px;
}

#workNameSlider .slick-slide {
  outline: none;
  display: inline-block;
  font-size: 30px;
  color: #49abdd;
  font-weight: 800;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}

#workNameSlider .slick-slide:hover {
  color: #fff;
}

#workNameSlider .slick-slide.slick-current {
  color: #fff;
}

#workNameSlider .slick-track {
  list-style-type: none;
  padding-left: 0px;
}

#workNameSlider .slick-slide:not(:last-child) {
  margin-right: 60px;
}

#workSliderContent h5 {
  font-size: 25px;
  color: #fff;
  font-weight: 800;
  margin-top: 50px;
  margin-bottom: 30px;
}
#workSliderContent p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
#workSliderContent img {
  max-width: 120px;
  margin-left: 0px;
  margin-bottom: 0px;
}
#workSliderContent img.bigger {
  max-width: 200px;
}

.workslider-content-col {
  align-content: center;
  display: flex;
  /*align-items: center;*/
}

#workSliderContent .content-wrap {
  position: absolute;
  padding-top:50px;
  /*top: 50%;
    transform: translateY(-35%);*/
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#workSliderContent .content-wrap.hdn {
  opacity: 0;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#workSliderContent .content-wrap.act {
  opacity: 1;
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#workSliderContent .btn {
  margin:25px auto 0;
}

#workSliderContent .btnContainer {
  display: flex;
  justify-content: space-between;
}
#workSliderContent .custom-prev-case-study,
#workSliderContent .custom-next-case-study {
  font-size: 24px;
  font-weight: 800;
  color: #49abdd;
  margin-top: 20px;
  margin-left: -15px;
  display:inline-block;
  cursor:pointer;
}

#workSliderContent .custom-prev-case-study:hover,
#workSliderContent .custom-next-case-study:hover {
  color:#fff;
}
#workSliderContent .custom-prev-case-study {
  margin-right:45px;
}
#workSliderContent .custom-prev-case-study .fas {
  transform:rotate(180deg);
  margin-right:5px;
}

#workSliderContent .custom-next-case-study .fas {
  margin-left:5px;
}

/**
ABOUT SECTION
*/

#aboutSection {
  margin-bottom: 100px;
}

#aboutSection ul {
  list-style-type: none;
  padding-left: 0px;
}

#aboutSection ul li {
  display: inline-block;
  font-size: 30px;
  color: #000000;
  font-weight: 800;
}

#aboutSection ul li a {
  color: #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#aboutSection ul li a:hover {
  color: #49abdd;
  text-decoration: none;
}

#aboutSection ul li a.active {
  color: #49abdd;
  text-decoration: none;
}

#aboutSection ul li:not(:last-child) {
  margin-right: 60px;
}


#aboutSection p {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

#aboutContent {
  margin-top: 50px;
}
#aboutContent .slick-prev,
#aboutContent .slick-next {
  display: none !important;
}

#aboutContent .slick-slide {
  height: inherit !important;
  pointer-events: none;
}
#aboutContent .slick-slide img {
  max-width:100%;
}
.mt-3 {
  margin-top: 50px !important;
}

/**
CLIENT SECTION
*/

#clientSection {
  background:#49abdd;
  padding:80px 0;
}
.clientsSliderRow {
  display:flex;
  margin:80px 0 0;
  padding:0px 80px;
}


.clientsSliderRow .holdingSpot {
  width:340px;
  border:3px solid #00007a;
  border-radius:25px;
  font-size:25px;
  line-height:1.3em;
  padding:10px;
  color:#00007a;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content: center;
}

.clientsSlider {
  min-height: 150px;
  display:block;
  width:40%;
  flex:0 0 calc(50% - 170px);
}
.clientsSlider__left .right {
  display:none !important;
}
.clientsSlider .cl {
  margin: 10px 40px;
  width: 150px;
  height: 150px;
}
.clientsSlider .slick-slide {
  /*filter:brightness(0) invert(1);*/
}
.clientsSlider .client1 {
  background-image: url("img/clg/svg/1-porsche.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client2 {
  background-image: url("img/clg/svg/2-skoda.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client3 {
  background-image: url("img/clg/svg/3-opel.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client4 {
  background-image: url("img/clg/svg/4-cez.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client5 {
  background-image: url("img/clg/svg/5-veolia.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client6 {
  background-image: url("img/clg/svg/6-Crocodille.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client7 {
  background-image: url("img/clg/svg/7-assa-abloy.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client8 {
  background-image: url("img/clg/svg/8-dhl.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client9 {
  background-image: url("img/clg/svg/9-koli.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client10 {
  background-image: url("img/clg/svg/10-octopus.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client11 {
  background-image: url("img/clg/svg/11-ytica.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.clientsSlider .client12 {
  background-image: url("img/clg/svg/12-mpmr.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client13 {
  background-image: url("img/clg/svg/13-servodata.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client14 {
  background-image: url("img/clg/svg/14-atairu.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client15 {
  background-image: url("img/clg/svg/15-kapka-nadeje.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client16 {
  background-image: url("img/clg/svg/16-expinit.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.clientsSlider .client17 {
  background-image: url("img/clg/svg/17-cybelix.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.clientsSlider .fa-play {
  color: #fff;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.clientsSlider .fa-play:hover {
  cursor: pointer;
  color: #00007a;
}

.clientsSlider .fa-play.left {
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
  top: 50%;
  left: -50px;
  padding:10px;
}

.clientsSlider .fa-play:not(.left) {
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding:10px;
}

.highlight {
  color: #00007a;
}

/**
Footer
*/

footer {
  background: -webkit-linear-gradient(top, #00007a, #0d0da9);
  background: linear-gradient(180deg, #00007a, #0d0da9);
  background-size: 400% 400%;
  position: relative;
  -webkit-animation: GradAnim 10s ease infinite;
  animation: GradAnim 10s ease infinite;
  color: white;
  font-size:30px;
  padding-top: 130px;
  padding-bottom: 180px;
}

footer .container {
  z-index: 12;
  position: relative;
}

footer .typo__h3 {
  color:#fff;
  margin-bottom:60px;
}

footer h3.email {
  font-weight: 400;
  font-size: 60px;
}

h3.email > a {
  color: white;
}

h3.email > a:hover {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

footer strong {
  display: block;
  margin-top: 40px;
}

footer .social-icons {
  list-style-type: none;
  padding-left: 0px;
  margin-top: 50px;
}

footer .social-icons li {
  display: inline-block;
  background: white;
  color: #00007a;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
}

footer .social-icons li:not(:last-child) {
  margin-right: 10px;
}

footer .social-icons li a {
  color: #00007a;
  width: 100%;
  height: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .social-icons li a:hover {
  text-decoration: none;
}
footer .social-icons li i {
  font-size: 35px;
}

footer .typo__h4 {
  margin-top:25px;
}
/**
MISC
*/

#workSlider {
  margin-top: 50px;
  /*margin-left: -100px;*/
}

.dp-wrap {
  margin: 0 auto;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  height: 100%;
}

.dp-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

#dp-slider {
  margin-bottom: 100px;
}

.dp-slider div {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.dp_item {
  display: block;
  position: absolute;
  text-align: center;
  color: #fff;
  border-radius: 0px;
  transition: all 500ms linear;
  -webkit-transform: rotateY(0deg) translateX(0px) translateY(30px) !important;
  transform: rotateY(0deg) translateX(0px) translateY(30px) !important;
  opacity:0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.dp_item.active {
  -webkit-transform: rotateY(0deg) translateX(0px) translateY(0px) !important;
  transform: rotateY(0deg) translateX(0px) translateY(0px) !important;
  opacity:1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


#dp-next,
#dp-prev {
  position: absolute;
  top: 50%;
  right: 16%;
  height: 33px;
  width: 33px;
  z-index: 10;
  cursor: pointer;
}

#dp-prev {
  left: 15px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#dp-dots {
  position: absolute;
  bottom: 25px;
  z-index: 12;
  left: 38%;
  cursor: default;
}

#dp-dots li {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
}

#dp-dots li:hover {
  cursor: pointer;
  background: #fa8c8c;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

#dp-dots li.active {
  background: #fa8c8c;
}

.dp_item {
  width: 96%;
}

.dp-content,
.dp-img {
  text-align: left;
}

.dp_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.dp-content h2 {
  color: #41414b;
  font-family: Circular Std Bold;
  font-size: 48px;
  max-width: 460px;
  margin-top: 8px;
  margin-bottom: 0px;
}

.dp-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
  /*width:100%;*/
}

#dp-slider,
.dp-img img {
  height: 640px;
}

.paralax {
  position: absolute;
}
.paralax-row {
  position: relative;
}

#paralax3 {
  right: 0;
  top: 20px;
  z-index: -1;
}

#paralax5 {
  right: 0;
  bottom: 0;
  z-index: 0;
  text-align: right;
  mix-blend-mode: multiply;
  position: absolute;
}
#paralax5 img {
  max-width: 90%;
}


/* modals */
.customModal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transform:scale(0) translate(0, -500px);
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.customModal.show {
  opacity: 1;
  visibility: visible;
  transform:scale(1) translate(0, 0);

}
.customModal.show .customModal__overlay {
  opacity: 1;
  visibility: visible;
}
.customModal img {
  max-width:100%;
}
.customModal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(242, 250, 252, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: 150ms cubic-bezier(0.77, 0, 0.175, 1);
}

.customModal__box {
  position: relative;
  width: 100%;
  transform: translate(0, 0px);
  transition: 300ms cubic-bezier(0.77, 0, 0.175, 1);
  padding: 50px 110px 0;
  min-height: 350px;
  background:#fff;
  height: 100%;
  overflow-y: auto;
}
.customModal__body  {
  max-width:1500px;
  margin:0 auto;
}
.customModal__close {
  position: absolute;
  right: 35px;
  top: 35px;
  height: 62px;
  width: 65px;
  background: url("img/customModal__close.png") no-repeat center center;
  cursor: pointer;
}

/* global classes - rewrite old code laters */
.btn {
  border-radius: 35px;
  padding: 5px 25px;
  min-width: 200px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.btn.sm{
  padding: 2px 15px;
  min-width: 100px;
  font-size: 20px;
}

.btn--green {
  background: #18cd18;
}
.btn--blue {
  background: #49abdd;
}

.btns__row {
  margin: 25px 0;
  font-size: 30px;
  color: #fff;
}
.btns__row .separator {
  padding: 0 15px;
}

.typo__h3 {
  font-size: 90px;
  color: #00007a;
  font-weight: 800;
}
.typo__h4 {
  font-size: 60px;
  line-height:1em;
  color: #49abdd;
  font-weight: 800;
}
.typo__h5 {
  font-size: 30px;
  color: #010101;
  font-weight: 800;
}

#contactModalBg{
  position: fixed;
  left:0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.35);
  z-index: 99;
  display: none
}
#contactModal{
  display: none;
  min-width: 400px;
  width: 40%;
  min-height: 100px;
  background: white;
  border-radius: 15px;
  height: auto;
  position: fixed;
  left:50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;

  padding-left: 16px;
  padding-right: 16px;
  padding-top: 18px;
  padding-bottom: 2px;

  -webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.15); 
  box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.15);
}

.form-error{
  color: #e14d4d;
  font-weight: 600;
  margin-top: 10px;
  text-align: right;
  min-height: 24px;
  display: none;
}