@font-face {
    font-family: 'MontseratRegular';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontseratBold';
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MontseratExtraLight';
    src: url('../fonts/Montserrat/Montserrat-ExtraLight.ttf');
    font-weight: 200;
    font-style: normal;
}

body {
	font-family: 'MontseratRegular', Verdana, Geneva, sans-serif;
	overflow-x: hidden;
    width: 100%;
}

p {
	font-size: 12px;
}

h2 {
	font-family: 'MontseratBold';
	font-size: 38px;
    background-image: -webkit-linear-gradient(left, #3B309D, #480056); /* For Chrome and Safari */
    background-image:    -moz-linear-gradient(left, #3B309D, #480056); /* For old Fx (3.6 to 15) */
    background-image:     -ms-linear-gradient(left, #3B309D, #480056); /* For pre-releases of IE 10*/
    background-image:      -o-linear-gradient(left, #3B309D, #480056); /* For old Opera (11.1 to 12.0) */
    background-image:         linear-gradient(to right, #3B309D, #480056); /* Standard syntax; must be last */
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

h3 {
	font-family: 'MontseratBold';
	font-size: 22px;
	margin: 0;
}

button:focus, a:focus  {
	outline: none !important;
}

.svg {
  width: 1920px;
  height: 400px;
}

.menu-bg {
	position: absolute;
	width: 100%;
	height: 100px;
}

.pos-fixed {
	position: fixed !important;
	z-index: 1000;
}

.footer-accent {
	position: absolute;
	width: 100%;
	height: 150px;
	bottom: 0;	
}


.spacer-white-up, .spacer-white-down {
	position: absolute;
	width: 100%;
	height: 50px;
	z-index: 1;
}

.button-white {
	display: block;
	position: relative;
	width: 200px;
	height: 50px;
	font-family: 'MontseratBold';
	line-height: 50px;
	cursor: pointer;
	color: #1D144C;
	background-image: url('../img/layout/button_white.png');
	transition: all ease-in-out 0.3s;
}

.button-white:hover {
	color: #fff;
	background-image: url('../img/layout/button_grad.png');
}

.big-picture {
    height: 500px;
}

.small-picture {
    height: 250px;
}

.poly-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.poly-overlay::before {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	right: -3px;
	bottom: 0;
	left: -3px;
	background-image: url('../img/layout/img-frame-top.svg');
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 100;
}

.poly-overlay::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: -3px;
	bottom: -5px;
	left: -3px;
	background-image: url('../img/layout/img-frame-bottom.svg');
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	z-index: 100;
}

.poly-overlay img {
    flex-shrink: 0;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.spacer {
	display: block;
	position: relative;
	height: 200px;
	background-color: #444;
	overflow: hidden;
}

@media (min-width: 992px) {
	.spacer {
		height: 350px;
	}
}

.spacer .spacer-bg {
	width: 100%;
	height: 200%;
	background-position: center;
	background-repeat: repeat;
	background-size: cover;
}

.spacer .spacer-white-up {
	position: absolute;
	bottom: -1px;
}

.modal-body img {
    width: 100%;
}

#cloud-header .spacer-white-up {
	bottom: -1px;
}

#cloud-header {
	display: block;
	position: relative;
	color: #FFF;
}

#cloud-header.contact {
	height: 450px;
}

#cloud-header.main-page {
	height: 45vh;
}


#cloud-header .distance-holder {
	display: block;
	position: relative;
	width: 100%;
	height: 100px;
    z-index: 1000;
}

#cloud-header .distance-holder.cat {
	position: absolute;
}

#cloud-header .navigation-container {
	display: block;
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
	-ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
}

@media (min-width: 992px) {
	#cloud-header .navigation-container {
		background-color: initial;		
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-ms-box-shadow: none;
		box-shadow: none;
	}
}

#cloud-header .navbar {
	padding: 0;
}

#cloud-header .nav {
    align-items: center;
    justify-content: center;	
}

#cloud-header .nav-item {
	width: 100%;
}

@media (min-width: 992px) {
	#cloud-header .nav-item {
		width: auto;
	}
}

#cloud-header .nav-link {
	color: #000;
	height: 100%;
	text-shadow: none;
	font-size: 20px;
	transition: text-shadow ease-in-out 0.3s;
}

#cloud-header .nav-link:hover, #cloud-header .nav-link:focus {
	text-shadow: 0 0 10px #990000, 0 0 10px #0000FF;
}

@media (min-width: 992px) {
	#cloud-header .nav-link {
		font-size: 10px;
	}
}

@media (min-width: 1200px) {
	#cloud-header .nav-link {
		font-size: 12px;
	}
}

#cloud-header .navbar-toggler {
	width: 70px;
	height: 70px;
	border-radius: 0px;
	background-image: url('../img/layout/button_rwd_grad.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}


#cloud-header .navbar-toggler i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  width: 25px;
  height: 3px;
  top: -5px;
  background-color: #fff;
  transition: all .2s ease-out;
}

#cloud-header .navbar-toggler i::before, #cloud-header .navbar-toggler i::after {
  content: '';
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#cloud-header .navbar-toggler i::before {
  top: -8px;
}

#cloud-header .navbar-toggler i::after {
  bottom: -8px;
}

#cloud-header .navbar-toggler:hover i::before {
  top: -11px;
}

#cloud-header .navbar-toggler:hover i::after {
  bottom: -11px;
}

#cloud-header .navbar-toggler.active i {
  background: transparent;
}

#cloud-header .navbar-toggler.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

#cloud-header .navbar-toggler.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}


#cloud-header .video-container {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}

#cloud-header .video-mask {
	display: block;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -4;
	background-color: rgba(0, 0, 0, 0.7);
}

#cloud-header #videoBg {
	display: block;
	position: absolute;
	min-height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -5;
}

#cloud-header .logo {
	position: absolute;
	width: 200px;
	height: 100px;
	padding-top: 10px;
}

@media (min-width: 992px) {
	#cloud-header .logo {
		padding-top: 0;
	}
}

#cloud-header .home {
	display: none;
	position: absolute;
	right: 58%;
	width: 190px;
	height: 70px;
	background-image: url('../img/layout/home.png');
	background-repeat: no-repeat;
	background-size: contain;
	transition: background-image ease-in-out 0.3s;
}

#cloud-header .home:hover {
	background-image: url('../img/layout/home_n.png');
}

#cloud-header .navigation-container.navbar-fixed-top {
  position: fixed !important;
  margin-top: 0px;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

}

#cloud-header .navigation-container.navbar-fixed-top #navbar li.active a {
  background: transparent;
  background: none;
}

#cloud-header .navigation-container.navbar-fixed-top #navbar li.active a span::before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


@media (min-width: 992px) {
	#cloud-header .home {
		display: block;
		right: 57%;
	}
}

#cloud-header .home a {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
}

#cloud-header .row.spacing {
	margin-top: 5vh;
}


#cloud-header h1 {
	font-family: 'MontseratExtraLight';
	font-size: 46px;
}

@media (min-width: 992px) {
	#cloud-header h1 {
		font-size: 56px;
	}	
}

#cloud-header p {
	font-family: 'MontseratExtraLight';
	font-size: 10px;
}

@media (min-width: 992px) {
	#cloud-header p {
		font-size: 12px;
	}
}

#cloud-header h4 {
	font-size: 20px;
}


#cloud-header .button-white {
	margin-top: 10px;
}

@media (min-width: 992px) {
	#cloud-header .button-white {
		margin-top: 30px;
	}
}

#cloud-header #banner-swiper.swiper-container {
    width: 100%;
    height: 400px;
}

#cloud-header #banner-swiper.swiper-container .swiper-slide > div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#cloud-header #banner-swiper.swiper-container .bg-1 {
	background-image: url('../img/content/cat-banners/1.jpg');
}

#cloud-header #banner-swiper.swiper-container .bg-2 {
	background-image: url('../img/content/cat-banners/2.jpg');
}

#cloud-header #banner-swiper.swiper-container .bg-3 {
	background-image: url('../img/content/cat-banners/3.jpg');
}

#cloud-header #banner-swiper.swiper-container .bg-4 {
	background-image: url('../img/content/cat-banners/4.jpg');
}

#cloud-header #banner-swiper.swiper-container .bg-5 {
	background-image: url('../img/content/cat-banners/5.jpg');
}

#cloud-header #banner-swiper.swiper-container .bg-6 {
	background-image: url('../img/content/cat-banners/6.jpg');
}

#cloud-header .contact-banner {
    display: block;
    position: absolute;
    height: 450px;
    width: 100%;
    top: 0;
    z-index: -1;
}

#cloud-about {
	display: block;
	position: relative;
}

#cloud-spacer-1 .spacer-1 {
	background-image: url('../img/layout/spacer-1.jpg');
}

#cloud-spacer-2 .spacer-2 {
	background-image: url('../img/layout/spacer-2.jpg');
}

#cloud-spacer-3 .spacer-3 {
	background-image: url('../img/layout/spacer-3.jpg');
}

#cloud-spacer-4 .spacer-4 {
	background-image: url('../img/layout/spacer-4.jpg');
}

#cloud-spacer-5 .spacer-5 {
	background-image: url('../img/layout/spacer-5.jpg');
}

#cloud-spacer-6 .spacer-6 {
	background-image: url('../img/layout/spacer-6.jpg');
}

#cloud-header .spacer-7 {
	background-image: url('../img/layout/spacer-6.jpg');
}

@media (min-width: 992px) {
	.spacer .spacer-bg {
		height: 100%;
	}
}

#cloud-profile {
	display: block;
	position: relative;
}

#cloud-profile .profile-item {
	display: block;
	position: relative;
	min-height: 470px;
	padding: 120px 15px 15px 15px;
	transition: box-shadow ease-in-out 0.3s;
}

@media (min-width: 576px) {
	#cloud-profile .profile-item {
		padding: 50px 15px 15px 15px;
	}
}

@media (min-width: 768px) {
	#cloud-profile .profile-item {
		padding: 100px 15px 15px 15px;
	}
}

#cloud-content .content-image-wraper:hover,
#cloud-profile .profile-item:hover {
	-webkit-box-shadow: 0px 0px 40px 5px rgba(54,0,71,1);
	-moz-box-shadow: 0px 0px 40px 5px rgba(54,0,71,1);
	box-shadow: 0px 0px 40px 5px rgba(54,0,71,1);
}

#cloud-profile .profile-item .ico {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#cloud-profile .profile-item .ico.ico-1 {
	background-image: url('../img/layout/ico-ds.svg');
}

#cloud-profile .profile-item .ico.ico-2 {
	background-image: url('../img/layout/ico-vw.svg');
}

#cloud-profile .profile-item .ico.ico-3 {
	background-image: url('../img/layout/ico-pro.svg');
}

#cloud-profile .profile-item .ico.ico-4 {
	background-image: url('../img/layout/ico-kio.svg');
}

#cloud-profile .profile-item .ico.ico-5 {
	background-image: url('../img/layout/ico-tou.svg');
}

#cloud-profile .profile-item .ico.ico-6 {
	background-image: url('../img/layout/ico-lcd.svg');
}

#cloud-profile .profile-item p.item-title {
	font-size: 24px;
	color: #737373;
	margin-bottom: 0;
}

#cloud-profile .profile-item p.item-subtitle {
    font-family: 'MontseratBold';
	font-size: 14px;
	color: #000;
}

.item-button {
	display: flex;
    justify-content: center;
  	align-items: center;
}

.item-button > p {
	display: flex;
  	justify-content: center;
  	align-items: center;
	width: 200px;
	height: 50px;
	font-family: 'MontseratBold';
	color: #1D144C;
	font-size: 16px;
	line-height: 16px;
	background-image: url('../img/layout/button_grad_hollow.png');
	transition: background-image ease-in-out 0.3s, color ease-in-out 0.3s;
}

.item-button:hover > p,
#cloud-profile .profile-item:hover .item-button > p {
 	color: #fff;
	background-image: url('../img/layout/button_grad.png');
}

#cloud-profile .profile-item a {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#cloud-content {
	display: block;
	position: relative;
}

#cloud-content.contact {
	height: 500px;

}

#cloud-content.contact .form-style {
    display: none !important;
}

#cloud-content .content-image-wraper {
	display: block;
	position: relative;
	float: left;
	width: 270px;
	margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 40px 5px rgba(54,0,71,0);
    transition-property: box-shadow;
    transition-timing-function: ease-in-out;
    overflow: hidden;
    transition-duration: 0.3s;
}

#cloud-content .content-text-wraper {
	display: block;
	position: relative;
}

#cloud-content .title {
	font-size: 20px;
	margin: 0;
	color: #1D144C;
}

#cloud-content .subtitle {
	font-family: 'MontseratBold';
	font-size: 14px;
}

#cloud-content ul {
    font-size: 12px;
}

#cloud-desc {
	display: block;
	position: relative;
}

#cloud-desc .title {
	font-size: 40px;
	line-height: 40px;
}

#cloud-desc .subtitle {
	font-family: 'MontseratBold';
	font-size: 16px;
	color: #1D144C;
}

#cloud-desc ul {
	list-style-position: inside;
	font-size: 12px;
}

#cloud-gallery {
	display: block;
	position: relative;
}

#cloud-gallery .swiper-slide {
	font-size: 80px;
	width: 100% !important;
}

#cloud-gallery .big-picture {
	overflow: hidden;
}

#cloud-map {
	height: 400px;
}

#cloud-footer {
	display: block;
	position: relative;
	background-color: #1F1F1F;
	color: #FFF;
}

#cloud-footer .footer-bg {
	background-image: url('../img/layout/footer_bg.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#cloud-footer .contact-data .title {
    font-family: 'MontseratBold';
	font-size: 30px;
}

#cloud-footer .contact-data .contact {
	margin: 0;
	padding-bottom: 1rem;
}

#cloud-footer .contact-data .contact span {
	color: #808080;
}

#cloud-footer .contact-data .contact a {
	color: #FFF;
}

#cloud-footer  .contact-data .social ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

#cloud-footer .contact-data .social ul > li {
	display: block;
	width: 37px;
	height: 36px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image ease-in-out 0.3s;
}

#cloud-footer .contact-data .social ul > li > a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

#cloud-footer .contact-data .social ul > li.fb {
	margin-right: 20px;
	background-image: url('../img/layout/fb.png')
}

#cloud-footer .contact-data .social ul > li.fb:hover {
	background-image: url('../img/layout/fb_grad.png')	
}

#cloud-footer .contact-data .social ul > li.yt {
	margin-right: 20px;
	background-image: url('../img/layout/yt.png')
}

#cloud-footer .contact-data .social ul > li.yt:hover {
	background-image: url('../img/layout/yt_grad.png')	
}

#cloud-footer .contact-data .social ul > li.wu {
	background-image: url('../img/layout/wu.png')
}

#cloud-footer .contact-data .social ul > li.wu:hover {
	background-image: url('../img/layout/wu_grad.png')	
}

#cloud-footer .quick-menu a {
	color: #FFF;
}

#cloud-footer .map p {
	font-size: 20px;
}

#cloud-footer .map .map-wraper {
	display: block;
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 15px;
	overflow: hidden;
}

#cloud-footer .sign {
	font-size: 10px;
	height: 150px;
}

@media (min-width: 992px) {
	#cloud-footer .sign {
		font-size: 14px;
	}
}

#cloud-footer .sign div {
	padding-top: 70px;
}

#cloud-footer .sign .policy a {
	color: #555;
}

#cloud-footer .sign .cloud a {
	font-family: 'MontseratBold';
    background-image: -webkit-linear-gradient(left, #3B309D, #AB00A6); /* For Chrome and Safari */
    background-image:    -moz-linear-gradient(left, #3B309D, #AB00A6); /* For old Fx (3.6 to 15) */
    background-image:     -ms-linear-gradient(left, #3B309D, #AB00A6); /* For pre-releases of IE 10*/
    background-image:      -o-linear-gradient(left, #3B309D, #AB00A6); /* For old Opera (11.1 to 12.0) */
    background-image:         linear-gradient(to right, #3B309D, #AB00A6); /* Standard syntax; must be last */
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;	
}

#show-presentation {
    display: block;
    position: relative;
    width: 180px;
    height: 200px;
    margin: auto;
}

#show-presentation .cover,
#show-presentation .remote {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
    transition-timing-function: ease-in-out;
    transition-duration: 0.1s;
}

#show-presentation .remote {
    background-image: url("../img/layout/remote/remote_over.png");
    z-index: 99998;
}

#show-presentation .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: url("../img/layout/remote/remote.png");
    z-index: 99999;
}

#show-presentation:hover .cover {
    opacity: 0;
}

#show-presentation .shade {
    display: block;
    position: absolute;
    width: 240px;
    height: 240px;
    bottom: -15px;
    right: -25px;
    background-size: contain;
    background-image: url("../img/layout/remote/shadow.png");
    z-index: 99997;
}

#presentation {
    display: none;
}

#presentation .screen-overlay {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

#presentation .control {
    display: block;
    position: fixed;
    width: 180px;
    height: 200px;
    bottom: 15px;
    right: 15px;
    z-index: 999999;
    background-image: url("../img/layout/remote/bg.png");
}

#presentation .control .button {
    display: block;
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#presentation .control .button-1,
#presentation .control .button-2,
#presentation .control .button-3 {
    width: 60px;
    height: 100px;
}

#presentation .control .button-1 {
    background-image: url("../img/layout/remote/button_1_up.png");
}

#presentation .control .button-2 {
    left: 60px;
    background-image: url("../img/layout/remote/button_2_up.png");
}
#presentation .control .button-3 {
    left: 120px;
    background-image: url("../img/layout/remote/button_3_up.png");
}

#presentation .control .button-4 {
    width: 180px;
    height: 100px;
    bottom: 0;
    background-image: url("../img/layout/remote/button_4_up.png");
}

#presentation .shadow {
    display: block;
    position: absolute;
    width: 240px;
    height: 240px;
    bottom: -10px;
    right: -20px;
    background-size: contain;
    background-image: url("../img/layout/remote/shadow.png");
    z-index: 999998;
}

#presentation .content {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

#presentation .content .image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#presentation .content .image-1 {
    background-image: url('../img/content/smart-glass/smart_glass_1.jpg');
}

#presentation .content .image-2 {
    background-image: url('../img/content/smart-glass/smart_glass_2.jpg');
}

#presentation .content .image-3 {
    background-image: url('../img/content/smart-glass/smart_glass_3.jpg');
}

/* Animacje */

.cloud-animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
