/*
Author: jankurtak.eu / Ján Kurták
Author URI: http://www.jankurtak.eu/
*/

:root {
  --black: #1E2022;
  --black2: #000000;
  --dark: #313539;
  --blue: #005DFF;
  --gray: #8AA0B2;
  --medgray: #E3ECF3;
  --graybg: #D1DDE7;
  --yellow: #f5df4d;
  --red: #F94D44;
  --green: #02b967;
  --tyrkys: #0EA7A5;
  --white: #ffffff;
  --lightgray: #F4F8FB;
  --lightgreen: #E8FCF3;
  --lightyellow: #fff6b8;
  --lightred: #FFEFE7;
  --lighttyrkys: #E0FFFE;
}
  

html, body {
  position:relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important; 
}

*:focus {
  outline: none !important;
  -webkit-box-shadow:none !important;
          box-shadow:none !important; 
}

body{
  color: var(--dark);
  background-color: var(--lightblue);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  font-family: azo-sans-web, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-display: swap;
}

a{
  color: var(--blue);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover{
  color: var(--black);
}

p{
  font-size: 16px;
}

strong, b{
  font-weight: 600;
}

hr {
  margin-top: 75px;
  margin-bottom: 75px;
  border-top: 1px solid var(--medgray);
}

ul.with-arrow{
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

ul.with-arrow > li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

ul.with-arrow > li:last-child{
  margin-bottom: 0;
}

ul.with-arrow > li::before{
  content: "\f105";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
}

/* Title */
h1, h2, h3, h4, h5, h6{
  color: var(--black);
  font-family: finalsix, sans-serif;
  font-display: swap;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

h1{font-size: 64px}
h2{font-size: 36px}
h3{font-size: 32px;}
h4{font-size: 24px}
h5{font-size: 20px}
h6{font-size: 16px}

.container{
  max-width: var(--container-width);
}

@media (min-width: 1200px) {
  :root {
    --container-width: 1170px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-width: 1360px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-width: 1770px;
  }
}



@media (min-width: 1920px) {
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Buttons */
.btn{
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 32px;
  font-weight: bold;
  border-radius: 2px;
}

.btn > i{
  margin-right: 7px;
}

.btn-primary{
  background-color: var(--blue);
  border: 2px solid transparent;
  -webkit-box-shadow: 0 5px 15px rgba(0, 93, 255, 0.3);
          box-shadow: 0 5px 15px rgba(0, 93, 255, 0.3);
}

.btn-primary:hover{
  background-color: var(--black);
  -webkit-box-shadow: 0 0px 15px transparent;
          box-shadow: 0 0px 15px transparent;
  border-color: transparent;
}

.btn-primary.with-arrow{
  padding: 16px 60px 16px 32px;
}

.btn-primary.with-arrow::before{
  content: "\f178";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
  font-weight: 300;
}

.btn-primary.with-arrow:hover{
  padding: 16px 75px 16px 32px;
  border-color: transparent;
}

.btn-outline-primary{
  border-width: 2px;
  border-color: var(--blue);
  color: var(--dark);
}

.btn-outline-primary:hover{
  background-color: var(--blue);
  border-color: transparent;
  color: var(--white);
}

.btn-outline-primary.with-arrow{
  padding: 16px 60px 16px 32px;
}

.btn-outline-primary.with-arrow::before{
  content: "\f178";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
  font-weight: 300;
}

.btn-outline-primary.with-arrow:hover{
  padding: 16px 75px 16px 32px;
}

.btn-sm{
  font-size: 13px;
  padding: 8px 16px;
}

.btn-link.with-arrow{
  position: relative;
  padding: 10px 40px 10px 0;
}

.btn-link.with-arrow::before{
  content: "\f178";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
  font-weight: 300;
}

.btn-link.with-arrow:hover::before{
  right: 0;
  color: var(--blue);
}

.btn-group > .btn{
  border-radius: 2px !important;
}

.btn-group > .btn:not(:last-child){
  margin-right: 15px;
}
/* Inputs */

.form-control{
  height: 60px;
  padding: 12px 18px;
}

.form-control::-webkit-input-placeholder{
  color: var(--gray);
  font-size: 14px;
}

.form-control::-moz-placeholder{
  color: var(--gray);
  font-size: 14px;
}

.form-control:-ms-input-placeholder{
  color: var(--gray);
  font-size: 14px;
}

.form-control::-ms-input-placeholder{
  color: var(--gray);
  font-size: 14px;
}

.form-control::placeholder{
  color: var(--gray);
  font-size: 14px;
}

/* Centering */

.center-x{
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.center-y{
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
      -ms-transform: translate(0,-50%);
          transform: translate(0,-50%);
}

.center-both{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}


/* Arrows */
button.slick-arrow, button.slick-arrow{
  //position: relative;
  border-radius: 0;
  padding: 10px;
  width: 50px;
  height: 50px;
}

button.slick-arrow > i, button.slick-arrow > i{
  font-size: 20px;
  margin-right: 0;
}

/* Slick fix */
.slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit !important;
}

.row.slick-initialized
{
  margin: 0;
}

.row.slick-initialized div[class*="col-"]
{
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

/* Headlines */

h2.title-h{
  margin-bottom: 30px;
}

.title-h > span{
  font-weight: 300;
}

/* Section */
section {
  margin-bottom: 75px;
}

section .intro-left{
  padding-right: 50px;
}

section .intro-left .title-h > span{
  display: block;
  line-height: 1;
}

section .intro-left p{
  margin-bottom: 30px;
}
/* Image Cover */
picture.cover {
  margin: 0;
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 56.25%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 15px 45px;
}
picture.cover.ar-219 {padding-top: 42.85%;}
picture.cover.ar-32 {padding-top: 66.66%;}
picture.cover.ar-43 {padding-top: 75%;}
picture.cover.ar-54 {padding-top: 80%;}
picture.cover.ar-45 {padding-top: 128%;}
picture.cover.ar-11 {padding-top: 100%;}

a > picture.cover > img, a > picture.cover > source,
picture.cover > img, picture.cover > source {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  top: 0;
}

picture.cover.thumb:hover > img{
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* Header */
header {
  background-color: var(--white);
  padding: 20px;
  height: 100px;
  width: 100%;
  z-index: 9;
}

header #menubtn {
  position: relative;
  z-index: 9998;
  padding: 15px;
}

body.menuToggled header #menubtn {
  position: fixed;
  right: 20px;
  top: 24px;
}

body.menuToggled header.mini #menubtn {
  top: 10px;
}

header #menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  z-index: 9997;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body.menuToggled header #menu {
  visibility: visible;
  opacity: 1;
}


header #menu > .container, header #menu > .container > .row{
  height: 100%;
}


header #menu .menu-list{
  position: relative;
}

.menuToggled header #menu .menu-list::before{
  content: "";
  position: absolute;
  width: 1px;
  background-color: var(--graybg);
  top: 0;
  right: 0;
  -webkit-animation: menuline 0.7s ease-in-out forwards;
}

@-webkit-keyframes menuline {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
} 

header #menu .menu-list > li > a{
  position: relative;
  padding: 10px 20px;
  font-size: clamp(2rem, 1.7746rem + 1.1268vw, 3rem);
  font-weight: 500;
  font-family: finalsix, sans-serif;
  font-display: swap;
  display: inline-block;
}

header #menu .menu-list > li > a:hover {
  text-decoration: none;
}

header #menu .menu-list > li > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: black;
  bottom: 3px;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

header #menu .menu-list > li > a:hover::before {
  width: calc(100% - 40px);
  background: var(--blue);
}

header #menu .contact-block{
  list-style: none;
  font-size: 24px;
  padding-left: 50px;
}

header #menu .contact-block > li {
  position: relative;
  padding-left: 4rem;
  font-size: 2.5rem;
  font-weight: 400;
}

header #menu .contact-block > li.phone::before{
  content: "\f095";
}
header #menu .contact-block > li.email::before{
  content: "\f0e0";
}

header #menu .menu-list > li, header #menu .contact-block > li {
  opacity: 0;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

header #menu .menu-list > li.show, header #menu .contact-block > li.show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* Icon 1 */
.hamburger {
  width: 32px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

body.menuToggled .hamburger span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

body.menuToggled .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

body.menuToggled .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
}

section{
  position: relative;
}

/* Mini header*/
header.mini {
  height: 70px;
  padding: 0 15px;
  -webkit-animation-name: top;
          animation-name: top;
  position: fixed;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(30, 32, 34, 0.15);
          box-shadow: 0px 0px 30px 0px rgba(30, 32, 34, 0.15);
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  z-index: 10;
}

@-webkit-keyframes top {
    from {top:-100px}
    to {top:0;}
}

@keyframes top {
    from {top:-100px}
    to {top:0;}
}   

header.mini #logo img{
  height: 50px;
}

/* Slideshow */

section.slideshow{
  height: calc(100vh - 100px);
  background: rgb(30,32,34);
  //background: linear-gradient(45deg, rgb(30, 32, 34) 0%, rgb(13, 14, 16) 100%);
  color: var(--white);
  overflow: hidden;
  margin-bottom: 0;
}

#gradient-canvas {
  width:100%;
  height:100%;
  --gradient-color-1: #000000; 
  --gradient-color-2: #000723; 
  --gradient-color-3: #000c3b;  
  --gradient-color-4: #000000;
  z-index:0;
  top: 0;
  position: absolute;
}

section.slideshow .intro-text{
  max-width: 900px;
  position: relative;
  z-index: 9;
}

section.slideshow .intro-text > .title-h{
  position: relative;
  color: var(--white);
  font-size: clamp(3rem, 2.662rem + 1.6901vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 30px;
}

section.slideshow .intro-text > .title-h > span:first-child{
  color: var(--blue);
  font-weight: 800;
}

section.slideshow .intro-text > .title-h .reveal-block{
  background: var(--white);
}

section.slideshow .intro-text > .title-h > span + span{
  font-weight: 300;
  display: inline-block;
}

section.slideshow .intro-text > p{
  font-size: 20px;
}

section.slideshow .arrow {
  position: absolute;
  z-index: 9;
  bottom: calc(0% - 50px);
  left: 50%;
  -webkit-transform: translate(-50%,0%);
  -ms-transform: translate(-50%,0%);
  transform: translate(-50%,0%);
  width: 100px;
  height: 100px;
}

section.slideshow .arrow::before {
  content: "";
  position: absolute;
  z-index: 9;
  width: 100px;
  height: 100px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--lightgray);
  border-radius: 0 20px 0 0;
}

section.slideshow .arrow > a {
  display: block;
  padding: 20px;
  z-index: 9;
  position: relative;
}

section.slideshow .arrow > a > i {
  text-align: center;
  font-size: 36px;
  color: var(--blue);
  position: relative;
  z-index: 9;
  font-weight: 300;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  -webkit-animation: arrow 0.5s linear 0s infinite alternate;
  animation: arrow 0.5s linear 0s infinite alternate;
}

@-webkit-keyframes arrow {
  0% { top: 0px; }
100% { top: 15px; }
}

@keyframes arrow {
  0% { top: 0px; }
100% { top: 15px; }
}

/* Služby */
section.services{
  padding: 75px 0 30px 0;
  background-color: var(--lightgray);
}

section.services .intro > .title-h {
  margin-bottom: 30px;
  text-align: center;
}

section.services .s-arrows{
  text-align: center;
}
section.services .s-arrows > .btn{
  background-color: var(--white);
  margin: 0 10px;
  border-radius: 2px;
  border: 2px solid transparent;
}

section.services .s-arrows > .btn:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 93, 255, 0.1);
          box-shadow: 0 0 20px rgba(0, 93, 255, 0.1);
  border-color: var(--blue);
}
.reveal-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.reveal-block {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100.1%;
  background: var(--dark);
}

[data-aos="reveal-right"] {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 100% 0%;
      -ms-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

[data-aos="reveal-right"].aos-animate {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

[data-aos="reveal-left"] {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

[data-aos="reveal-left"].aos-animate {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

[data-aos="reveal-top"] {
  transform: scaleY(1);
  -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

[data-aos="reveal-top"].aos-animate {
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}


[data-aos="reveal-bottom"] {
  transform: scaleY(1);
  -webkit-transform-origin: 100% 0%;
      -ms-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

[data-aos="reveal-bottom"].aos-animate {
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

/* Portfolio item*/
.slick-portfolio { position: relative; height: 397px; opacity: 0; overflow: hidden; -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; transition: opacity 0.3s ease; }
.slick-portfolio.slick-initialized { height: auto; opacity: 1; }

.item-portfolio {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 30px;
}

.item-portfolio > a{
  display: block;
}

.item-portfolio > a > picture{
  width: 460px;
  border-radius: 10px 30px 10px 30px;
  max-width: 100%;
}

.item-portfolio > .caption{
  position: relative;
  padding: 20px 0;
}

.item-portfolio > .caption > .title-h{
  font-size: 16px;
  margin-bottom: 0;
  max-width: 300px;
}

.item-portfolio > .caption > .title-h > a{
  color: var(--black);
}

.item-portfolio > .caption > i{
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
}

.item-portfolio:hover > .caption > i{
  right: 0;
  color: var(--blue);
}

.portfolio .categories {
  position: absolute;
  top: 10px;
  font-size: 11px;
  left: 10px;
}

.portfolio .categories > span {
  display: block;
  background: rgba(0,0,0,.2);
  border-radius: 10px;
  padding: 4px 12px 2px 12px;
  margin-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255,255,255,.8);
}

.portfolio .filter .item-portfolio > a > picture {
  width: inherit;
}

/* Service item*/
.item-basic {
  position: relative;
  padding: 40px;
  border: 1px solid var(--graybg);
  margin: 0 0 30px 0;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: calc(100% - 30px);
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

.item-basic:hover, .slick-current .item-basic {
  background-color: var(--white);
  border: 1px solid transparent;
  -webkit-box-shadow: 0 30px 20px -20px rgba(0,0,0,.05);
          box-shadow: 0 30px 20px -20px rgba(0,0,0,.05);
}

.item-basic .bg-icon {
  position: absolute;
  top: 50%;
  right: -65px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Font Awesome 6 Pro";
  font-size: 200px;
  z-index: -1;
  color: var(--medgray);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.item-basic:hover .bg-icon {
  color: var(--lightgray);
}

.item-basic > .icon > i{
  font-size: 64px;
  display: block;
  margin-bottom: 15px;
}

.item-basic > .title-h{
  font-size: 24px;
}

.item-basic > p{
  margin-bottom: 0;
}

/* Service item list*/

.item-service-list{
  border: 1px solid var(--medgray);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  max-width: 330px;
}

.item-service-list .top{
  position: relative;
  padding: 30px 30px 40px 30px;
  overflow: hidden;
  text-align: center;
}

.item-service-list .top::before{
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  height: 100%;
  width: 150%;
  border-radius: 300%;
  height: 150%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}

.item-service-list.blue .top::before{
  background-color: var(--lightgray);
}
.item-service-list.blue:hover .top::before{
  background-color: var(--blue);
}

.item-service-list.red .top::before{
  background-color: var(--lightred);
}

.item-service-list.red:hover .top::before{
  background-color: var(--red);
}

.item-service-list.yellow .top::before{
  background-color: var(--lightyellow);
}

.item-service-list.yellow:hover .top::before{
  background-color: var(--yellow);
}

.item-service-list .top .title-h{
  font-size: 22px;
}

.item-service-list .top .title-h > a{
  color: var(--black);
}

.item-service-list .top .icon{
  font-size: 84px;
  text-align: center;
}

.item-service-list:not(.yellow):hover .top > .title-h > a, .item-service-list:not(.yellow):hover .top .icon{
  color: var(--white);
}

.item-service-list .caption{
  padding: 30px 30px 15px 30px;
  text-align: center;
}

.item-service-list ul.list-child{
  padding: 0px 30px;
  list-style: none;
}

.item-service-list ul.list-child > li > a{
  position: relative;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid var(--medgray);
  font-weight: 500;
}

.item-service-list ul.list-child > li:last-child > a{
  border-bottom: transparent;
}

.item-service-list ul.list-child > li > a::before{
  content: "\f105";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  color: var(--gray);
}

.item-service-list ul.list-child > li > a:hover::before{
  right: 0;
  color: var(--blue);
}

/* Service item child */
section.services-list-child.with-bg{
  background-color: var(--lightgray);
  padding: 75px 0;
}

section.services-list-child.with-bg .item-basic{
  border: transparent;
  background: white;
}

.item-service-child{
  margin-bottom: 100px;
}

.item-service-child .text{
  padding: 100px 150px 100px 0;
}

.item-service-child .text .title-h > a > span{
  color: var(--dark);
}

.item-service-child .order-lg-2 .text {
  padding: 100px 0px 100px 200px;
}

.item-service-child .image{
  position: relative;
}

.item-service-child .image > picture{
  -webkit-box-shadow: 0 0px 30px -10px rgba(0,0,0,.1);
          box-shadow: 0 0px 30px -10px rgba(0,0,0,.1);
}

.item-service-child .image > picture > .reveal-block{
  background-color: var(--white);
  z-index: 9;
}

.item-service-child .image > .bg-line{
  position: absolute;
  display: block;
  top: 15%;
  left: -75px;
  width: calc(50vw + 75px);
  height: 70%;
  background-color: var(--medgray);
}

.item-service-child.left-image .image > .bg-line {
  right: -75px;
  left: auto;
}

.item-service-child .order-lg-1 > .image > .bg-line{
  position: absolute;
  display: block;
  top: 15%;
  left: calc((-100vw + var(--container-width) - 30px) / 2);
  width: calc(50vw + 75px);
  height: 70%;
  background-color: var(--medgray);
}

.item-service-child .image > .bg-line > .reveal-block{
  background-color: var(--white);
}

.item-service-child.left-image .text{
  padding: 100px 0 100px 125px;
}

.item-service-child.left .image > .bg-line{
  right: -75px;
  left: auto;
  background-color: var(--yellow);
}

section.services-list-child .item-basic{
  border: 1px solid var(--medgray);
}

section.services-list-child .item-basic .bg-icon {
  color: var(--lightgray);
}
section.services-list-child .item-basic:hover .bg-icon {
  color: var(--medgray);
}
/* Review item */
.item-review{
  position: relative;
  width: 390px;
  max-width: 100%;
  padding: 30px;
  background-color: var(--white);
  -webkit-box-shadow: 0 20px 30px -15px rgba(0, 93, 255, 0.1);
          box-shadow: 0 20px 30px -15px rgba(0, 93, 255, 0.1);
  margin: 50px 15px;
}

.item-review::before {
  content: "\f762";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -35px;
  right: 20px;
  font-size: 172px;
  color: var(--lightgray);
  z-index: 1;
  font-weight: 500;
}

.item-review::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 24px;
  border-color: white transparent transparent transparent;
  bottom: -45px;
  right: 30px;
}

.item-review > .name{
  display: block;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: 9;
}

.item-review > .name > span{
  display: block;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 20px;
}

.item-review > .text{
  position: relative;
  z-index: 9;
}

.item-review > .text > p{
  font-size: 90%;
}
/* News item */
section.news .item-post > a {
  display: block;
  width: calc(100% - 80px);
}

section.news .item-post > a > picture {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

section.news .item-post:hover > a > picture > img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

section.news .item-post > .caption {
  position: relative;
  width: calc(100% - 110px);
  margin-left: 30px;
  padding: 30px 0;
}

section.news .item-post > .caption > .title-h {
  width: calc(100% - 50px);
  font-size: 24px;
  line-height: 1.6; 
}


section.news .item-post:hover > .caption > .title-h > a{
  border-bottom: 1px solid white;
}

section.news .item-post > .caption > .title-h > a{
  color: var(--white);
  padding-bottom: 1px;
}

section.news .item-post > .caption > .arrow{
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  color: var(--white);
  right: -50px;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

section.news .item-post > .caption > .arrow > i{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

section.news .item-post > .caption > p{
  color: var(--gray);
}

section.news .item-post:hover > .caption > .arrow{
  position: absolute;
  width: 80px;
  height: 50px;
  background-color: var(--blue);
  color: var(--white);
  right: -80px;
}

/* Modules */

/* Module Features */
.module-features .features-wrap {
  background-color: var(--blue);
  padding: 50px 50px 20px 50px;
  position: relative;
  margin-bottom: 75px;
}

.module-features .features-wrap.blue {
  background-color: var(--lightgray);
}

.module-features .features-wrap::before {
  content: "";
  background-color: var(--blue);
  position: absolute;
  width: 50vw;
  height: 100%;
  right: -50%;
  top: 0;
}

.module-features .features-wrap.blue::before {
  background-color: var(--lightgray);
}

.module-features .features-wrap ul.with-arrow{
  margin-bottom: 30px;
}

.module-features .features-wrap ul.with-arrow > li{
  padding-left: 24px;
}

.module-features .features-wrap ul.with-arrow > li::before{
  font-weight: 400;
}

.module-features .features-wrap ul.with-arrow.plus > li::before{
  content: "\f055";
  color: var(--green);
}

.module-features .features-wrap ul.with-arrow.minus > li::before{
  content: "\f056";
  color: var(--red);
}

/* Module Fullwidth*/
.module-fullwidth{
  width: calc(100% - 150px);
  margin: 0 auto 75px auto;
}

/* Module Gallery*/
.module-gallery{
  margin-bottom: 45px;
}

.module-gallery .row{
  margin-right: -30px;
  margin-left: -30px;
}

.module-gallery .row > div{
  padding-right: 30px;
  padding-left: 30px;
}

.module-gallery .row > div > picture{
  margin-bottom: 50px;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 50px -10px rgba(0,0,0,.15);
          box-shadow: 0 5px 50px -10px rgba(0,0,0,.15);
}

.module-gallery .row > div > a.link{
  position: relative;
  display: block;
  background: transparent;
  border-radius: 15px 45px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  margin-bottom: 30px;
}

.module-gallery .row > div > a.link:hover{
  background: rgba(0,0,0,.85);
}

.module-gallery .row > div > a.link > picture{
  z-index: -1;
}

.module-gallery .row > div > a.link > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  font-size: 26px;
  color: var(--white);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.module-gallery .row > div > a.link:hover > span {
  opacity: 1;
}

.module-gallery .row > div > a.link:hover > picture {
  webkit-filter: blur(6px);
  -webkit-filter: blur(6px);
          filter: blur(6px);
}

/* Module Text*/
.module-text {
  margin-bottom: 75px;
}

.module-text .content > p{
  font-size: clamp(1rem, 0.9718rem + 0.1408vw, 1.125rem);
  line-height: 1.8;
}
.module-text .content.col-text-2{
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: var(--medgray);
     -moz-column-rule-color: var(--medgray);
          column-rule-color: var(--medgray);
  -webkit-column-rule-width: 1px;
     -moz-column-rule-width: 1px;
          column-rule-width: 1px;
}

.module-text .content.col-text-3{
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: var(--medgray);
     -moz-column-rule-color: var(--medgray);
          column-rule-color: var(--medgray);
  -webkit-column-rule-width: 1px;
     -moz-column-rule-width: 1px;
          column-rule-width: 1px;
}

/* Module Accordion*/
.module-accordion {
  margin-bottom: 75px;
}

.module-accordion .card {
  border: 0;
  border: 1px solid var(--medgray);
  border-radius: 0;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 10px 20px -10px rgba(0,0,0,.05);
          box-shadow: 0 10px 20px -10px rgba(0,0,0,.05);
}

.module-accordion .card:hover, .module-accordion .card.active {
  -webkit-box-shadow: 0 10px 20px -5px rgba(0,0,0,.1);
          box-shadow: 0 10px 20px -5px rgba(0,0,0,.1);
}

.module-accordion .card .card-header {
  border: 0;
  background-color: var(--white);
  padding: 0;
  position: relative;
  margin-bottom: 0;
}

.module-accordion > .card:not(:last-of-type) {
  border-bottom: 1px solid var(--medgray);
}

.module-accordion .card .card-header .btn-header-link {
  position: relative;
  display: block;
  text-align: left;
  padding: 30px 0 30px 30px;
  font-size: clamp(1.25rem, 1.1667rem + 0.4167vw, 1.625rem);
  font-weight: 700;
  color: var(--blue);
}

.module-accordion .card:hover .card-header .btn-header-link {
  color: var(--dark);
}

.module-accordion .card:hover .card-header .btn-header-link::before {
  font-weight: normal;
}

.module-accordion .card .card-header .btn-header-link:after {
  content: "\f106";
  font-family: 'Font Awesome 6 Pro';
  font-size: clamp(1.625rem, 1.4861rem + 0.6944vw, 2.25rem);
  position: absolute;
  right: 20px;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  text-align: center;
  color: var(--gray);
}

.module-accordion .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}

.module-accordion .card .collapse {
  border: 0;
}

.module-accordion .card .card-body {
  padding: 0 30px 15px 30px;
}

[aria-expanded="false"] > .expanded,
[aria-expanded="true"] > .collapsed {
  display: none;
}

/* Module Grid Content */
.module-grid-content.with-bg {
  scroll-margin-top: 100px;
}

.module-grid-content.with-bg .container {
  position: relative;
  padding-top: 75px;
  padding-bottom: 45px;
}

.module-grid-content.with-bg .bg {
  position: absolute;
  width: calc(100% - 15px);
  height: 100%;
  background-color: var(--lightgray);
  display: block;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 50px 300px 0;
}

.module-grid-content.with-bg .bg::before {
  content: "";
  width: 50vw;
  height: 100%;
  background-color: var(--lightgray);
  position: absolute;
  left: -50vw;
  top: 0;
  z-index: -1;
}

.module-grid-content.with-bg.red .bg, .module-grid-content.with-bg.red .bg::before {
  background-color: var(--lightred);
}


.module-grid-content .item-basic{
  border: 0;
  padding: 15px 75px 15px 0;
}

.module-grid-content .item-basic:hover{
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.module-grid-content .item-basic .icon{
  width: 140px;
  height: 140px;
  background: var(--medgray);
  text-align: center;
  border-radius: 35% 65% 35% 65% / 35% 35% 65% 65%;
  position: relative;
}

.module-grid-content.with-bg.red .item-basic .icon, .module-grid-content.with-bg.red .item-basic .icon::before {
  background: rgba(0, 0, 0, 0.05)
}

.module-grid-content .item-basic .icon > i{
  font-size: 64px;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.module-grid-content .item-basic .title-h{
  font-weight: 600;
  font-size: 26px;
}

.module-grid-content .item-basic .title-h > span{
  font-weight: 400;
}

.module-grid-content .item-basic p{
  margin-bottom: 0;
  min-height: 52px;
}

.module-price > div > .title-h{
  margin-bottom: 50px;
}

.module-price .item-price {
  border: 1px solid var(--medgray);
  position: relative;
  margin-bottom: 30px;
  background-color: var(--white);
}

.module-price .item-price .label{
  display: block;
  background-color: var(--yellow);
  padding: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.module-price .item-price.featured{
  border: 0;
  -webkit-box-shadow: 0 0 40px -10px rgba(0,0,0,.15);
          box-shadow: 0 0 40px -10px rgba(0,0,0,.15);
  top: 0px;
  left: -1px;
  width: calc(100% + 2px);
  z-index: 9;
}

.module-price .item-price .top {
  padding: 50px;
}

.module-price .item-price .bottom {
  background-color: var(--lightgray);
  font-size: 32px;
  font-weight: bold;
  padding: 15px;
  color: var(--red);
}

.module-price .item-price.featured .bottom {
  background-color: var(--blue);
  color: var(--white);
}

/* Module scroll image */

.scroll-wrap .tolbar {
  background: #f1f1f1;
border-radius: 6px 6px 0 0;
height: 40px;
padding: 0px 20px;
position: relative;
-webkit-box-shadow: 0px 7px 15px rgba(0,0,0,.15);
        box-shadow: 0px 7px 15px rgba(0,0,0,.15);
z-index: 9;
}

.scroll-wrap .tolbar .dot {
width: 10px;
height: 10px;
position: absolute;
display: inline-block;
background-color: red;
border-radius: 10px;
top: 50%;
-webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
}


.scroll-wrap .tolbar .dot:nth-child(2) {
margin-left: 15px;
background-color: orange;
}
.scroll-wrap .tolbar .dot:nth-child(3) {
margin-left: 30px;
background-color: green;
}
.scroll-wrap .tolbar .search {
display: block;
background: white;
width: 60%;
border-radius: 15px;
line-height: 1;
height: 26px;
margin: 0 auto;
top: 7px;
position: relative;
padding: 7px 18px;
font-size: 11px;
}

.scroll-wrap .tolbar .nav {
  position: absolute;
color: dark;
width: 10px;
line-height: 40px;
top: 0;
font-size: 18px;
right: 24px;
}

.scroll-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #e2e9f3;
  height: 600px;
  margin-bottom: 75px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 20px 60px -20px #bebebe, -20px -20px 60px #fff;
          box-shadow: 0px 20px 60px -20px #bebebe, -20px -20px 60px #fff;
}

.scroll-wrap .window {
cursor: n-resize;
}

.scroll-wrap .window img {
width: 100%;
-o-object-fit: cover;
   object-fit: cover;
-o-object-position: top;
   object-position: top;
height: 560px;
-webkit-transition: 10s all ease;
-o-transition: 10s all ease;
transition: 10s all ease;
position: absolute;
border-radius: 0 0 15px 15px;
top: 40px;
}

.scroll-wrap .window img:hover {
    -o-object-position: bottom;
       object-position: bottom;
}

/* Portfolio */

section.portfolio .slick-portfolio {
  position: relative;
  height: 100%;
  top: 0;
  width: 100vw;
  overflow: hidden;
  margin-left: -25px;
  padding-left: 20px;
}

section.portfolio .slick-portfolio > .slick-list {
  left: 25px;
}

section.portfolio .slick-portfolio .item-portfolio{
  margin: 0 30px 15px 0px;
  -webkit-box-shadow: 0 10px 15px -15px rgba(0,0,0,.1);
          box-shadow: 0 10px 15px -15px rgba(0,0,0,.1);
}

section.portfolio button.slick-arrow {
  background-color: var(--white);
  z-index: 9;
  top: calc(50% - 30px);
  color: var(--dark);
  border-radius: 2px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

section.portfolio button.slick-arrow:hover,section.portfolio button.slick-arrow:focus:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) !important;
}

section.portfolio.home .container {
  position: relative;
}

section.portfolio button.slick-arrow.slick-prev {
  left: -5px;
}
section.portfolio button.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

section.portfolio:not(.home) .item-portfolio > a > picture {
  width: 100%;
}

section.portfolio:not(.home)  #category-nav {
    text-align: center;
    margin-bottom: 20px;
}

section.portfolio:not(.home) #category-nav button {
  margin: 5px;
  padding: 8px 15px;
  cursor: pointer;
  background-color: var(--light);
  border: none;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}


section.portfolio:not(.home) #category-nav button.active, section.portfolio:not(.home) #category-nav button.active:hover {
  background-color: var(--blue);
  color: var(--white);
}

section.portfolio:not(.home) #category-nav button:hover {
    background-color: var(--graybg);
}

section.portfolio:not(.home) #category-select {
    display: none;
    margin: 10px auto;
}

section.portfolio:not(.home) #portfolio {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

section.portfolio:not(.home) #portfolio > .item {
    display: none;
}

section.portfolio:not(.home) #portfolio > .item.show {
    display: block;
}

/* Portfolio detail page */
section.portfolio-details .hero-image{
  margin-bottom: 75px;
}

section.portfolio-details .hero-image > picture{
  border-radius: 0 0 50px 50px;
}

section.portfolio-details .info{
  margin-bottom: 45px;
}

section.portfolio-details .info .company{
  font-size: 18px;
  font-weight: 400;
}


section.portfolio-details .info .title-h{
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 30px;
}

section.portfolio-details .info .perex > p{
  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem);
  max-width: 820px;
  line-height: 1.8;
}

section.portfolio-details .info .item-info{
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--medgray);
}

section.portfolio-details .info .item-info:last-child{
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

section.portfolio-details .info .item-info > span:after{
  content: ", ";
}

section.portfolio-details .info .item-info > span:last-child:after {
  content: "";
}

section.portfolio-details .info .item-info > strong{
  display: block;
  font-size: 22px;
  font-family: finalsix, sans-serif;
}

section.portfolio-details .description .text-item{
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: var(--medgray);
     -moz-column-rule-color: var(--medgray);
          column-rule-color: var(--medgray);
  -webkit-column-rule-width: 1px;
     -moz-column-rule-width: 1px;
          column-rule-width: 1px;
  line-height: 1.8;
}

section.portfolio-details .description .text-item > p{
  font-size: 18px;
}

/* News */
section.news {
  background-color: var(--black);
  position: relative;
  margin-bottom: 0;
}

section.news::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 220px;
  background-color: var(--white);
  top: 0;
  left: 0;
  z-index: 0;
}

section.news .intro{
  position: relative;
  z-index: 0;
}

section.news .intro .title-h {
  margin-bottom: 30px;
  z-index: 9;
  position: relative;
}

section.news .item-post picture {
  border-radius: 15px 45px 0 45px;
}

/* Reviews */
section.reviews{
  background-color: var(--lightgray);
  position: relative;
  padding: 25px 0;
}

section.reviews .slick-reviews{
  position: relative;
  height: 100%;
  top: 0;
  width: 100vw;
  overflow: hidden;
}

/* Form */
section.form{
  background: var(--blue);
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
  scroll-margin-top: 100px;
}

section.form::before{
  content: "";
  position: absolute;
  width: 100%;
  height: calc(50% - 60px);
  background-color: var(--white);
  bottom: 0;
  left: 0;
  z-index: 0;
}

section.form .intro > .title-h{
  color: var(--white);
  margin-bottom: 5px;
  font-size: 26px;
}

section.form .intro > p{
  color: var(--white);
  margin-bottom: 30px;
}

section.form form {
  background-color: var(--white);
  padding: 40px 30px;
  -webkit-box-shadow: 0 20px 20px -20px rgba(0,0,0,.1);
          box-shadow: 0 20px 20px -20px rgba(0,0,0,.1);
  border-radius: 5px;
  max-width: 1200px;
  margin: 0 auto;
}

section.form .form-group {
  position: relative;
}

section.form .form-group > label,
section.form .form-group.select > .select-inner > label{
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 12px;
  background-color: var(--white);
  padding: 2px 8px;
  color: var(--dark);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

section.form .form-group > .form-control:-moz-placeholder-shown {
  background-color: var(--lightgray);
  border-color: transparent;
}

section.form .form-group > .form-control:-ms-input-placeholder {
  background-color: var(--lightgray);
  border-color: transparent;
}

section.form .form-group > .form-control:placeholder-shown {
  background-color: var(--lightgray);
  border-color: transparent;
}

section.form .form-group > .form-control{
  z-index: 1;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

section.form .form-group > .form-control:focus, section.form .form-group > .form-control{
  border-color: var(--graybg);
  background-color: var(--white);
}

section.form .form-group > .form-control:not(:-moz-placeholder-shown) + label{
  visibility: visible;
  opacity: 1;
  top: -12px;
  z-index: 2;
}

section.form .form-group > .form-control:not(:-ms-input-placeholder) + label{
  visibility: visible;
  opacity: 1;
  top: -12px;
  z-index: 2;
}

section.form .form-group > .form-control:focus + label, section.form .form-group > .form-control:not(:placeholder-shown) + label{
  visibility: visible;
  opacity: 1;
  top: -12px;
  z-index: 2;
}

section.form .form-group.select{
  position: inherit;
}

section.form .form-group.select > .select-inner{
  position: relative;
}

section.form .form-group.select > .select-inner > .bootstrap-select > .btn{
  height: 60px;
  background-color: var(--lightgray);
  border-color: transparent;
  border-radius: .25rem;
  outline: none !important;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

section.form .form-group.select > .select-inner > .bootstrap-select.show > .btn, section.form .form-group.select > .select-inner > .bootstrap-select > .btn:not(.bs-placeholder){
  border-color: var(--graybg);
  background-color: var(--white);
}

section.form .form-group > .select-inner > label{
  visibility: hidden;
  opacity: 0;
  top: -20px;
}

section.form .form-group > .select-inner > .bootstrap-select.show + label, 
section.form .form-group > .select-inner > .bootstrap-select.show + label, 
section.form .form-group > .select-inner.tunanazovclasy > .bootstrap-select + label{
  visibility: visible;
  opacity: 1;
  top: -12px;
  z-index: 9;
}

section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu{
  border: 0px none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px -5px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px -5px;
}

section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu a.dropdown-item{
  padding: 10px 20px;
}

section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu a.dropdown-item.active{
  background-color: var(--blue);
}

section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu a.dropdown-item:not(.active):hover{
  background-color: var(--lightgray);
}

section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu > li.disabled, section.form .form-group.select > .select-inner > .bootstrap-select .dropdown-menu > li.dropdown-divider {
  background-color: transparent;
  display: none;
}

section.form .suhlas {
  position: relative;
  margin-bottom: 15px;
}

section.form .suhlas input[type=checkbox] + label {
  display: block;
  cursor: pointer;
  line-height: 22px;
}
section.form .suhlas input[type=checkbox] {
  display: none;
}

section.form .suhlas input[type=checkbox] + label:before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 600;
  border-radius: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 0;
  padding-bottom: 0;
  margin-right: 8px;
  vertical-align: bottom;
  color: transparent;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  line-height: 16px;
  font-size: 12px;
  border: 2px solid var(--graybg);
}

section.form .suhlas input[type=checkbox] + label:active:before {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

section.form .suhlas input[type=checkbox]:checked + label:before {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

section.form .suhlas input[type=checkbox]:disabled + label:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  border-color: var(--graybg);
}

section.form .suhlas input[type=checkbox]:checked:disabled + label:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  background-color: var(--graybg);
  border-color: var(--graybg);
}

/* Modal Sidebar */
.modal {
  z-index: 9999;
  background: rgba(0,0,0,.5);
}
.modal.left .modal-dialog {
	position:fixed;
	right: -100%;
	margin: auto;
  max-width: 100vw;
	width: 50vw;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
  -webkit-transition: right 0.3s;
  -o-transition: right 0.3s;
  transition: right 0.3s;
}

.modal.show.left .modal-dialog {
	right: 0;
}

.modal.left .modal-content {
	height: calc(100% - 90px);
	overflow-y: auto;
}

.modal.right .modal-body {
	padding: 15px 15px 80px;
}

.modal.left .modal-content > .modal-body {
	padding: 30px 30px 100px 30px;
  height: calc(100% - 90px);
}

.modal.right.fade .modal-dialog {
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	-o-transition: opacity 0.3s linear, left 0.3s ease-out;
	transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
	right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
	border-radius: 0;
	border: none;
}

.modal-header {
	border-bottom-color: #eeeeee;
	background-color: #fafafa;
}

.modal-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--white);
}

/* Breadcrumbs */

section.breadcrumbs {
  border-bottom: 1px solid var(--medgray);
  border-top: 1px solid var(--medgray);
  margin-bottom: 0;
  background-color: var(--white);
}

section.breadcrumbs ul > li > .with-arrow{
  display: block;
  color: var(--gray);
  padding: 12px 25px 12px 10px;
  font-size: 13px;
}

section.breadcrumbs ul > li > a.with-arrow::before{
  content: "\f105";
  position: absolute;
  right: 0;
}

/* Page Head */

section.page-head {
  position: relative;
  background-color: var(--lightgray);
  padding: 65px 0;
  text-align: center;
  overflow: hidden;
  margin: 50px 50px 75px 50px;
  border-radius:50px;
}


section.page-head .text-top{
  font-size: 24px;
  font-weight: 300;
  z-index: 9;
  position: relative;
}

section.page-head .title-h{ 
  color: var(--blue);
  z-index: 9;
  position: relative;
  font-size: clamp(2.25rem, 1.8556rem + 1.9718vw, 4rem);
}

section.page-head.white .title-h{ 
  color: var(--white);
}

section.page-head .title-h > span{ 
  font-weight: 800;
}

section.page-head .title-h .reveal-block{
  background: var(--medgray);
}

section.page-head.white .title-h .reveal-block{
  background: var(--black);
}

section.page-head .text-bottom{
  font-size: clamp(1.125rem, 1.0625rem + 0.3125vw, 1.375rem);
  font-weight: 300;
  z-index: 9;
  position: relative;
  color: var(--black);
  width: 800px;
  margin: 0 auto;
  max-width: calc(100% - 60px);
  margin-top: 20px;
}

section.page-head > picture{
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.5;
}

section.page-head > picture > img{
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

section.page-head > picture > img:hover{
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* Services list child */
.item-basic-child{
  margin-bottom: 100px;
}

/* Projects */
section.module-screen{
  background: var(--graybg) url('image/screen_bg.png');
  background-size: cover;
  background-position: center center;
}

.module-screen .slick-track{
  padding: 50px 0px;
}

.slick-screens > button.slick-arrow{
  background-color: var(--white);
  z-index: 9;
  color: var(--dark);
}
.slick-screens > button.slick-prev{
  left: calc(50% - 74px - 20vw);
}
.slick-screens > button.slick-next{
  right: calc(50% - 76px - 20vw);
  left: auto;
}

.item-screen {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 30px 50px;
  -webkit-box-shadow: 0 0 40px -10px rgba(0,0,0,.15);
          box-shadow: 0 0 40px -10px rgba(0,0,0,.15);
}

.item-screen > a > picture {
  width: 40vw;
}

/* Kontakt */

section.contact .wrap{
  position: relative;
  padding: 50px 30px;
  border-radius: 30px;
}

section.contact .wrap .box-1, section.contact .wrap .box-2{
  padding: 0 50px;
}
section.contact .wrap .box-2{
  border-left: 1px solid var(--graybg);
}

section.contact .wrap .title-h{
  font-size: 24px;
}
section.contact .wrap p{
  font-size: 18px;
}

.grecaptcha-badge{
  z-index: 99999;
}

/* Footer*/
footer {
  color: var(--white);
  background-color: var(--dark);
  line-height: 1.75;
  font-size: 16px;
}

footer .left-wrap {
  background-color: var(--dark);
  margin-right: -15px;
  position:relative;
  color:var(--white);
  padding: 50px 50px 50px 0;
}

footer .left-wrap:before {
  background-color: var(--dark);
  content:"";
  width:100%;
  left:-100%;
  height:100%;
  top:0;
  position:absolute;        
}

footer .left-wrap .column-service{
  margin-bottom: 36px;
}

footer .left-wrap ul{
  margin-bottom:0;
}

footer .left-wrap ul > li{
  margin-bottom:10px;
}

footer .left-wrap ul > li:last-child{
  margin-bottom:9px;
}

footer .left-wrap ul > li > a{
  color:var(--gray)
}
footer .left-wrap ul > li > a:hover{
  color:var(--white)
}

footer .left-wrap > hr{
  margin: 20px 0 30px 0;
}


footer .right-wrap {
  background-color: var(--black);
  color: var(--white);
  padding: 50px 0px 50px 50px;
  position:relative;
  height: 100%;
}

footer .right-wrap:after {
  background-color: var(--black);
  content:"";
  width:150%;
  right:-150%;
  height:100%;
  top:0;
  position:absolute;        
}

footer .right-wrap .address {
  margin-bottom:30px;
  padding-left: 50px;
  position: relative;
}

footer .right-wrap .address::before {
  content: "\f3c5";
  color: var(--gray);
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 100;
  font-size: 36px;
  line-height: 1;
  top: 8px;
}

footer .right-wrap .contact {
  margin-bottom:30px;
  padding-left: 50px;
  position: relative;
}

footer .right-wrap .contact::before {
  content: "\f10b";
  color: var(--gray);
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 100;
  font-size: 36px;
  line-height: 1;
  top: 8px;
}

footer .right-wrap .socials .list-inline-item a{
  display: inline-block;
  background: rgba(255,255,255,.15);
  width: 36px;
  height: 36px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: rgba(255,255,255,.4);
  -webkit-transition:all 0.2.5s ease-in-out;
  -o-transition:all 0.2.5s ease-in-out;
  transition:all 0.2.5s ease-in-out;
}


footer .right-wrap .socials .list-inline-item a:hover{
  color: rgba(255,255,255,1);
  background: rgba(255,255,255,.25);
}

footer .right-wrap .socials .list-inline-item a i.fa {
  top: 3px;
  position: relative;
}

footer hr {
  border-color: rgba(255,255,255,.15);
  border-width: 1px;
  margin: 50px 0;
}

footer h5 {
  color: #fff;
  font-size:18px;
  margin-bottom:30px;
  font-weight: 500;
}

section.slideshow .intro-text{
  padding: 30px;
}



@media (max-width: 1199px) {  
  .item-service-child .text {
    padding: 100px 75px 100px 0;
  }

  section.portfolio .slick-portfolio .item-portfolio {
    margin: 0 30px 0 0;
  }

  section.portfolio.home .arrows {
    position: absolute;
    bottom: 155px;
    width: 100%;
  }

  section.portfolio.home button.slick-arrow.slick-prev {
    left: -15px;
  }

  section.portfolio.home button.slick-arrow.slick-next {
    left: auto;
    right: 15px;
  }

  section.portfolio .slick-portfolio {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  section.portfolio .slick-portfolio > .slick-list {
    left: 0;
  }

  .item-service-list {
    max-width: 100%;
  }

  section .intro-left {
    padding: 0;
    margin-bottom: 30px;
  }

}

@media (max-width: 991px) {  
  header #menu .menu-list::before {
    display: none;
  }
}

@media (max-width: 767px) {  
  header #menu > .container, header #menu > .container > .row {
    height: auto;
  }

  header #menu {
    padding-top: 120px;
  }

  header #menu .menu-list {
    border-right: 0;
    border-bottom: 1px solid var(--graybg);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  header #menu .contact-block {
    padding-left: 20px;
  }

  header #menu .contact-block > li {
    position: relative;
    padding-left: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
  }

  header #menu .contact-block > li {
    padding-left: 2.5rem;
    font-size: 1.75rem;
  }
  
  section.portfolio:not(.home) #category-nav button {
    display: none;
  }

  section.portfolio:not(.home) #category-select {
      display: block;
  }
}

 
@media (max-width: 575px) {  
  
  section {
    margin-bottom: 45px;
  }

  hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid var(--medgray);
  }

  footer hr {
    margin: 30px 0;
  }

  .btn-group > .btn {
    font-size: 14px;
  }

  .btn.with-arrow {
    padding: 12px 40px 10px 14px;
  }

  .btn.with-arrow:hover {
    padding: 12px 40px 10px 14px;
  }

  .btn.with-arrow::before {
    right: 15px;
  }

  section.page-head {
    position: relative;
    background-color: var(--lightgray);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    margin: 15px 15px 30px 15px;
    border-radius: 20px;
  }

  section.news .item-post > a {
    width: 100%;
  }

  section.news .item-post > .caption {
    width: calc(100% - 50px);
    margin-left: 15px;
  }
  section.news .item-post > .caption > .arrow {
    right: -20px;
    top: -25px;
  }

  section.news .item-post:hover > .caption > .arrow {
    right: -35px;
  }

  section.news .item-post > .caption > .title-h {
    width: 100%
  }

  .item-service-child {
    margin-bottom: 0px;
  }

  .item-service-list {
    text-align: center;
  }

  .item-service-list .left {
    position: relative;
    padding: 30px;
    min-width: auto;
  }

  .item-service-list .left::before {
    left: 0;
    width: 100%;
    border-radius: 0 0 60px 60px;
    height: 270px;
  }

  .item-service-child .text {
    padding: 20px;
    margin-bottom: 0px;
  }

  .item-service-child .order-2 .text {
    padding: 30px 15px;
  }
  
  section.portfolio.home button.slick-arrow.slick-next {
    left: auto;
    right: 45px;
  }

  .item-portfolio > a > picture {
    width: calc(100vw - 100px);
  }

  .module-grid-content.with-bg {
    background-color: var(--lightgray);
  }

  .module-grid-content.with-bg .bg {
    display: none;
  }

  .module-grid-content.with-bg .container {
    padding: 50px 30px;
  }

  .module-grid-content .item-basic {
    padding: 15px;
  }

  .module-grid-content .item-basic .icon {
    margin: 0 auto 30px auto;
  }

  .module-grid-content .item-basic .text {
    text-align: center;
  }

  .module-fullwidth {
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 20px;
  }

  section.contact .wrap {
    position: relative;
    padding: 50px 30px 0px 30px;
    border-radius: 30px;
  }

  section.contact .wrap .box-1 {
    margin-bottom: 50px;
  }

  section.contact .wrap .box-1, section.contact .wrap .box-2 {
    padding: 0 20px;
  }

  section.contact .wrap .box-2 {
    border-left: 0;
  }

  footer .left-wrap {
    padding: 50px 30px;
  }

  footer .right-wrap {
    padding: 50px 30px;
    z-index: 9;
  }

  footer .right-wrap::after {
    right: auto;
    left: -15px;
    z-index: -1;
  }
}