/* CSS Document */

/* 
*
*
[Table of contents]
*
*
*

    font-black / @import url
	reset / html
	general / body
	space / .space-single
	button-black / button
	devider / .devider
	section / section
	no select / .noselect
	wrapper / .content-wrapper
	whitepage / .whitepage
	preloader / .preloader
	navigation / .navbar-default
	subheader / #subheader
	home / #home
	background-img-black / .mainbg
	yellow-black / .yellow-home
	about / #service-about
	service / .servicebg
	projects / #projects-wrap
	team / #team
	contact / .contactbg
	subscribe / #subwrap 
	address / .wrapaddres
	footer / .footer
	social-icons / .social-icons
	totop / #totop
	Blog & article / #content
	Blog comment / #blog-comment
	owl slider home / #owl-slider-home
	general popup / .white-popup-block
	
*
*
*/

/* font-black */
@import url('https://fonts.googleapis.com/css?family=Droid+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif:400,400i');

/* logo palette — black / charcoal */
:root {
  --color-bg-primary: #050505;
  --color-bg-surface: #0e0e0e;
  --color-bg-surface-secondary: #171717;
  --color-accent: #d4d4d4;
  --color-accent-strong: #f2f2f2;
  --color-text-primary: #ececec;
  --color-text-on-accent: #0a0a0a;
  --color-bg-primary-rgb: 5, 5, 5;
  --color-bg-surface-rgb: 14, 14, 14;
  --color-bg-surface-secondary-rgb: 23, 23, 23;
  --color-accent-rgb: 212, 212, 212;
  --color-text-muted: rgba(236, 236, 236, 0.68);
  --color-border-soft: rgba(255, 255, 255, 0.14);
  --color-overlay-strong: rgba(0, 0, 0, 0.85);
  --color-overlay-soft: rgba(0, 0, 0, 0.55);
  --color-shadow-soft: rgba(0, 0, 0, 0.5);
  --color-shadow-strong: rgba(0, 0, 0, 0.75);
  --color-focus-ring: rgba(255, 255, 255, 0.55);
}

/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, button, output, ruby, section, summary, time, mark, audio, video {
font-family: 'Droid Sans', sans-serif;
margin: 0;
padding: 0;
border: 0;
font: inherit;
text-decoration:none;
list-style: none;
}

/** general **/
body {
font-family: 'Droid Sans', sans-serif;
font-size: 13px;
line-height: 1.8em;
font-style: normal;
font-weight: normal;
text-align: left;
overflow-x:hidden;
color:var(--color-text-primary);
background:var(--color-bg-primary);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


h1{ font-size:30pt; font-weight:600; line-height:normal; text-transform:uppercase;}
h2{ font-size:22pt; font-weight:600; line-height:normal; }
h3{ font-size:20pt; font-weight:300; line-height:normal; }
h4{ font-size:18pt; font-weight:600; }
h5{ font-size:14pt; font-weight:600; }
h6{ font-size:12pt; font-weight:600; }
p{ font-size:15px;}

a, a:visited, a:hover, a:active , a:link{ 
color: inherit;
text-decoration:none;
outline: 0;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease; 
}

a:hover,
a:focus,
a:active {
color: var(--color-accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
outline: 2px solid var(--color-focus-ring);
outline-offset: 2px;
}

.link-class {
    display: block;
	text-decoration:none;
}

/* space */
    .space-single{
	width:100%;
	height:30px;
	display:block;
	clear:both;
	}
	
	.space-double{
	width:100%;
	height:60px;
	display:block;
	clear:both;
	}
	
	.space-half{
	width:100%;
	height:15px;
	display:block;
	clear:both;
	}
	
	hr {
	display: block;
	clear: both;
	border-top: solid 1px var(--color-border-soft);
	margin: 40px 0 40px 0;
	}
	
.center{ text-align:center; margin:0 auto; }
.left{ text-align:left; float:left; line-height:inherit; }
.right{ text-align:right; float:right; line-height:inherit; }
.color{ color:var(--color-accent);}

.min-left{margin-left:-15px;}
.min-right{margin-right:-15px;}

/* button-black */
button{
border: 1px solid var(--color-border-soft);
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
button:hover{ 
border: none;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.btn-home {
display: inline-block;
width: 198px;
height: 40px;
font-size:10pt;
font-weight:600;
letter-spacing:1pt;
font-style:normal;
text-align:center;
line-height:38px;
color:var(--color-text-primary);
border: 1px solid var(--color-border-soft);
background:rgba(0,0,0,0);
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
outline: none;
text-shadow:none;
margin: 5px auto;
margin-left:0px;
padding: 0;
cursor:pointer;
}

.btn-content{
display: inline-block;
width: 200px;
height: 50px;
margin:0 auto;
font-size:10pt;
font-weight:600;
letter-spacing:2pt;
text-transform:uppercase;
font-style:normal;
text-align:center;
line-height:48px;
color:var(--color-text-primary);
border: 1px solid var(--color-border-soft);
background:rgba(0,0,0,0);
-webkit-border-radius:100px;
-moz-border-radius:100px;
border-radius:100px;
outline: none;
text-shadow:none;
margin: 20px 0 0 0;
padding: 0;
cursor:pointer;
}
.btn-home:hover, .btn-content:hover{
color:var(--color-text-on-accent);
border: none;
background:var(--color-accent)!important;
border: 1px solid rgba(0,0,0,0);
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;}

.btn-home-active{
border: none;
background:var(--color-accent);
display: inline-block;
width: 200px;
height: 50px;
margin:0 auto;
font-size:10pt;
letter-spacing:1pt;
font-style:normal;
text-align:center;
line-height:49px;
color:var(--color-text-on-accent);
-webkit-border-radius:100px;
-moz-border-radius:100px;
border-radius:100px;
outline: none;
text-shadow:none;
margin: 20px 0 0 0;
padding: 0;
cursor:pointer;}
.btn-home-active:hover{
color:var(--color-text-on-accent);
background:var(--color-accent-strong);
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;}

/* devider */
.devider-left {display:block; border-top: 7px solid var(--color-border-soft); width:79px; margin-top:20px; margin-bottom:20px; text-align:left;}
.devider-center {display:block; border-top: 1px solid var(--color-border-soft); width:102px; margin:0 auto; margin-top:5px; margin-bottom:5px; text-align:center;}
.devider-black {display:block; border-top: 2px solid var(--color-accent); width:60px; margin:0 auto; margin-top:5px; margin-bottom:5px; text-align:center;}
#home .devider-black {display:inline-block; border-top: 8px solid var(--color-accent); width:120px; margin-left:5px; margin-bottom:20px; text-align:left;}
.devider-widget {display:block; border-bottom: 2px solid var(--color-accent); margin-bottom:30px; width:60px; text-align:left;}
.devider-right {display:block; border-right: 1px solid var(--color-border-soft); height:70px; margin:0 auto; margin-left:100px;}

/* section */
section{padding:90px 0 90px 0;}
.no-bottom {padding-bottom: 0 !important;}
.no-top {padding-top: 0 !important;}
.no-padding,section.no-padding{
padding:0;
}

/* no select */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* wrapper */
.content-wrapper{ overflow-x:hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.3));
}

.content-wrapper,
section {
  position: relative;
  z-index: 1;
}

.navbar-default {
  z-index: 2;
}

.v-align {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* whitepage */
.whitepage{
  width: 100%;
  height:auto;
  color:var(--color-text-primary);
  background:rgba(var(--color-bg-surface-rgb), 0.72);
}
.whitepage h1, .whitepage h2, .whitepage h3, .whitepage h4, .whitepage h5, .whitepage h6{ color:var(--color-text-primary);}

/* preloader */
.preloader
    {
        position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 99999;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-flow: row nowrap;
              -ms-flex-flow: row nowrap;
                  flex-flow: row nowrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          background:var(--color-bg-primary);
    }
.mainpreloader {
	position:relative;
	width:auto;
	height:auto;
}

.mainpreloader img{
	display:block;
	margin:0 auto;
	z-index:999;
	max-width:180px;
	height:auto;
}
.mainpreloader span{ display:block; font-size:8pt; text-transform:uppercase; letter-spacing:2px; text-align:center; margin:10px auto;}
.bg-preloader{ position:fixed; width:100%; height:100%; top:0px; left:0px; background:var(--color-bg-primary); z-index:999;}

.logo-preloader{
	-webkit-animation: fadeimg 1s infinite linear;
	animation: fadeimg 1s infinite linear;
	}
@-webkit-keyframes fadeimg{
	0% {opacity:1;}
	50% {opacity:0;}
	100% {opacity:1;}
	}
@keyframes fadeimg{
	0% {opacity:1;}
	50% {opacity:0;}
	100% {opacity:1;}
	}
/* end preloader */

/* navigation */
.navbar-default {
		 background:rgba(var(--color-bg-primary-rgb), 0);
		 margin             : 0 2% 0 2%;
		 border-bottom:1px groove var(--color-border-soft);
         -webkit-transition : all .3s ease-in-out;
         -moz-transition    : all .3s ease-in-out;
         transition         : all .3s ease-in-out;
        }

.sticky-nav.navbar-default {
	background: rgba(var(--color-bg-primary-rgb), 0.95);
	margin:0;  
	border-bottom:1px groove rgba(255,255,255,0);
	box-shadow: 1px 2px 3px var(--color-shadow-soft);
	}
	
.sticky-nav.navbar-default .navbar-brand img{
	width:auto;
	max-height:36px;
	height:auto;
	-webkit-transition : all .3s ease-in-out;
	-moz-transition    : all .3s ease-in-out;
	transition         : all .3s ease-in-out;
}

.sticky-nav nav a{
	color:var(--color-text-primary);
	text-shadow:none;
}

.sticky-nav nav a:hover,
.sticky-nav nav a.active{
	color:var(--color-accent);
}

.navbar-default {
    margin-bottom : 0;
	height:60px;
    }
	.navbar-default.fullHeight{height:100%!important;}

.navbar-brand {position:fixed; left:30px; margin-top:0px; z-index:2; }
.navbar-brand img{ 
	      width:auto;
		  max-height:40px;
		  height:auto; 
          -webkit-transition : all .3s ease-in-out;
          -moz-transition    : all .3s ease-in-out;
          transition         : all .3s ease-in-out;
		 }

.scroll-link{cursor:pointer;}

/* menu nav */
nav {
	margin:0 auto;
	position:absolute;
	right:30px;
	top:0px;
	z-index:999;
}

nav ul {
	padding: 0;
    margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	margin-right:5px;
	color:var(--color-text-primary);
	}
nav ul li:last-child {
	margin-right:-35px;
	}
	
nav a {
	display:block;
	padding:10px;
	color:var(--color-text-primary);
	font-size:10pt;
	text-transform:uppercase;
	letter-spacing:2px;
	line-height: 44px;
	text-decoration:none;
	text-shadow: none;
}

nav a:hover { 
	color:var(--color-accent);
}

nav a.active{color:var(--color-accent);}

nav ul ul {
    display:none;
	position: absolute;
	top: 65px;
	color:var(--color-text-primary);
}

nav ul li:hover > ul {
	display:inherit;
	-webkit-animation-name: animfadeInUpmenu;
    animation-name: animfadeInUpmenu;
   -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
	
nav ul ul li {
	width:200px;
	float:none;
	display:list-item;
	background:var(--color-bg-surface);
	border-bottom:1px solid var(--color-border-soft);
	position: relative;
	box-shadow: 1px 2px 3px var(--color-shadow-soft);
}
nav ul ul li a{ line-height:30px; color:var(--color-text-primary); text-shadow:none;}
nav ul ul li:last-child {border-bottom:none;}

nav ul ul ul li {
	position: relative;
	top:-60px; 
	left:200px;
}

li > a:after { content:  ''; margin-left:20px; }
li > a:only-child:after { content: ''; }
/*end menu nav*/

/* subheader */
	#subheader{
	padding-bottom:70px;
	background:var(--color-bg-surface-secondary);
	background:url(../img/bg-subheader.jpg)top fixed;
	}
	#subheader h1 {
	color:var(--color-text-primary);
	margin-top:80px;
	font-size: 32px;
	letter-spacing: 5px;
	float: left;
	padding-right: 40px;
	margin-right: 40px;
	text-transform:uppercase;
	}
	#subheader span {
	letter-spacing:2px;
	display: inline-block;
	font-size: 15px;
	margin-top:88px;
	color:var(--color-text-primary);
	}
	#subheader .subdetail{
	float: right;
	font-size:11px;
	letter-spacing:2px;
	margin-top: 90px;
	text-transform:uppercase;
	color:var(--color-text-muted);
	}
	#subheader .subdetail li { display:inline-block; color:var(--color-text-primary);}
#subheader .subdetail li a{ color:var(--color-accent);}
	#subheader .subdetail li.sep{ margin-right:20px;}
/* subheader end */


/* home */
#home.mainbg {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
}
#home{ color:var(--color-text-primary);}
#home h1{ font-family: 'Droid Serif', serif; color:var(--color-text-primary); font-weight:400; font-size: clamp(28px, 6vw, 96px); font-style:italic; text-transform:none; letter-spacing: clamp(1px, 0.35vw, 3px); line-height: 1.1; text-shadow: 0 3px 16px rgba(0,0,0,0.72);}
#home h2{ font-family: 'Droid Serif', serif; color:var(--color-text-primary); font-weight:400; font-size: clamp(22px, 4.5vw, 72px); text-transform:none; line-height: 1.15; text-shadow: 0 3px 16px rgba(0,0,0,0.72);}
#home h3{ font-size: clamp(14px, 2.2vw, 23px); font-weight:400; letter-spacing:1px; color:var(--color-text-primary); margin-left:5px; margin-top:20px; line-height: 1.4; text-shadow: 0 2px 10px rgba(0,0,0,0.72);}
.hero-video-wrap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  /* Desktop: subject biased left; mobile overrides in queries-black.css */
  object-position: left center;
  opacity: 1;
}
.overlay-main{
  position:absolute;
  width: 100%;
  height:100%;
  top:0px;
  left:0px;
  z-index: 1;
  background: transparent;
}

/* background-img-black */
.mainbg {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x:hidden;
  background-color: var(--color-bg-primary);
  background-image: none;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-attachment:scroll;
}
.imgbg {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position:center center; 
  background-repeat:no-repeat;
}
.mainbgvideo {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height:100%;
  overflow-x:hidden;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}

.bgslider {
  position:relative;
  width: 100%;
  height:auto;
  color:var(--color-text-on-accent);
  background:var(--color-bg-primary);
  margin-bottom:-30px;
}

.bgslider img {
  width:auto;
  min-height:600px;
  max-height:600px;
  top: 0;
  left: 0;
}

/* background video  */

.bgvideo{
  position:absolute;
  width: 100%;
  height:100%;
  top:-50px;
  left:0;
  background:var(--color-bg-surface);
}

.video {
  position:relative;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index:0;
  opacity:0.8;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}


/* yellow-black */
.yellow-home{
  position:absolute;
  width: 100%;
  height:auto;
  padding:20px 0 20px 0;
  background:var(--color-accent);
  color:var(--color-text-on-accent);
  bottom:0px;
  left:0px;
  text-align:center;
}

.yellow-page{
  position:relative;
  width: 100%;
  height:auto;
  overflow:hidden;
  padding:50px 0 50px 0;
  background:rgba(var(--color-accent-rgb), 0.72);
  color:var(--color-text-on-accent);
  bottom:0px;
  left:0px;
  text-align:center;
}
/* home end */

/* about */
#service-about{ 
width:100%; 
max-width:1200px; 
margin:0 auto; 
text-align:center;
}

.service-about {
  position: relative;
  display:inline-block;
  font-size: 9pt;
  font-weight:400;
  letter-spacing:1pt;
  text-transform:uppercase;
  width: 325px;
  height: 280px;
  margin:0 10px auto;
}

.service-about h2{
	font-size:12pt;
	font-weight:600;
	letter-spacing:normal;
	margin-top:20px;
	}

.service-about img {
  width: 100%;
  vertical-align: top;
}

.service-about .hovereffect {
  width: 100%;
  height:auto;
  float: left;
  position: relative;
  text-align: center;
  cursor:pointer;
}

.service-about .hovereffect .overlay {
  width: 100%;
  height: 2%;
  position: absolute;
  bottom: 40px;
  left: 0;
  background-color: rgba(var(--color-accent-rgb), 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-about .hovereffect:hover .overlay {
background-color: rgba(var(--color-accent-rgb), 1);
}
/* about end */


/* service */
.servicebg {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  overflow-x:hidden;
  position: relative;
  background: rgba(var(--color-bg-primary-rgb), 0.62);
}

@media (max-width: 768px) {
  .servicebg {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .servicebg {
    background-attachment: scroll;
  }

  .servicebg::after {
    opacity: 0;
  }
}

/* Readability scrim above photo + SVG; content stacks above via z-index */
.servicebg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 42%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* Subtle film grain above scrim, below section content */
.servicebg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(../img/background/noise-soft.svg);
  background-repeat: repeat;
  background-position: 0 0;
  -webkit-background-size: 200px 200px;
     -moz-background-size: 200px 200px;
       -o-background-size: 200px 200px;
          background-size: 200px 200px;
  opacity: 0.055;
  mix-blend-mode: overlay;
}

.servicebg > * {
  position: relative;
  z-index: 1;
}

.filter-wraper { position:relative; margin:0 auto;  }
#filters li.filt-serv{
    color: var(--color-text-primary);
    font-size:10pt;
    font-weight:300;
	margin-right:5px;
	margin-left:5px;
	margin-top:10px;
	border: 1px groove var(--color-border-soft);
	padding:4px 20px 4px 20px;
    cursor: pointer;
    display: inline-block;
	list-style: none;
    -webkit-transition : all .3s ease-in-out;
    -moz-transition    : all .3s ease-in-out;
    transition         : all .3s ease-in-out;
}
#filters li.filt-serv:hover{
	background:var(--color-accent);
	color:var(--color-text-on-accent);
	border: 1px groove rgba(255,255,255, 0);
	  -webkit-transition : all .3s ease-in-out;
      -moz-transition    : all .3s ease-in-out;
      transition         : all .3s ease-in-out;
	}

#filters li.selected{
	background:var(--color-accent);
	color:var(--color-text-on-accent);
	border: 1px groove rgba(255,255,255, 0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.2s ease;
}

#services{
	margin:0 auto;
	margin-top:20px;
}

#services h4{ line-height:normal; margin-bottom:10px; color:var(--color-text-primary);}
#services p{ color:var(--color-text-primary);}


/* Owl brand */
.partners-section{
	position: relative;
	overflow: hidden;
	padding: 68px 0 56px;
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 46%),
		radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 42%),
		linear-gradient(135deg, #080808 0%, #101010 52%, #181818 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-section::before{
	content:"";
	position:absolute;
	inset:0;
	background-image:
		linear-gradient(120deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(210deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 88px 88px, 120px 120px;
	background-position: -18px 0, 0 -24px;
	opacity: 0.42;
	pointer-events: none;
}

.partners-section::after{
	content:"";
	position:absolute;
	inset:0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}

.partners-section .container,
.partners-section .row{
	position: relative;
	z-index: 1;
}

.partners-section h2{
	color: var(--color-text-primary);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.partners-section p{
	color: var(--color-text-muted);
}

.partners-section .devider-black{
	border-top-color: var(--color-accent);
}

#owl-brand .item{
        margin:0 auto;
        text-align: center;
        padding: 8px;
    }

#owl-brand .item img{
        max-height: 92px;
        width: auto;
        margin: 0 auto;
        padding: 14px 18px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 7px 16px rgba(0, 0, 0, 0.35);
        object-fit: contain;
        -webkit-transition : box-shadow .25s ease, -webkit-transform .25s ease;
        -moz-transition    : box-shadow .25s ease, -moz-transform .25s ease;
        transition         : box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    }

#owl-brand .item img:hover{
        -webkit-transform: translateY(-3px);
        -moz-transform: translateY(-3px);
        transform: translateY(-3px);
        border-color: rgba(0, 0, 0, 0.2);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    }
/* service end */


/* projects */
#projects-wrap{ 
width:100%; 
max-width:1300px; 
margin:0 auto; 
text-align:center; 
overflow:hidden;
}

.projects {
  position: relative;
  display:inline-block;
  letter-spacing:1pt;
  text-transform:uppercase;
  width: 325px;
  height: 216px;
  margin:0 auto;
  padding:0;
}

.projects img {
  width: 100%;
  vertical-align: top;
}

.projects .hovereffect {
  width: 100%;
  height:auto;
  float: left;
  position: relative;
  text-align: center;
  cursor:pointer;
}

.projects .hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity:0;
  background-color: rgba(255,255,255,0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.projects .hovereffect:hover .overlay {
background-color: rgba(var(--color-bg-primary-rgb), .82);
opacity:1;
}

.projects .hovereffect .overlay h3{ font-size:9pt; font-weight:600; color:var(--color-text-primary); line-height:220px; height:98%; border-bottom:1px solid var(--color-accent); }

/* filter controls */
#filter-porto{ 
padding:60px 0 60px 0; 
margin:0 auto;
}

#filter-porto li.filt-projects{
    color:var(--color-text-muted);
    font-size:9pt;
    font-weight:600;
	text-transform:uppercase;
	margin:0 30px auto;
    cursor: pointer;
    display: inline-block;
	list-style: none;
    -webkit-transition : all .3s ease-in-out;
    -moz-transition    : all .3s ease-in-out;
    transition         : all .3s ease-in-out;
}
#filter-porto li.filt-projects:hover{
	color: var(--color-text-primary);
	  -webkit-transition : all .3s ease-in-out;
      -moz-transition    : all .3s ease-in-out;
      transition         : all .3s ease-in-out;
	}

#filter-porto li.actived{
	color: var(--color-text-primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.2s ease;
}
/* projects end */

/* team */
#team{
	margin:0 auto; 
	text-align:center;
	}
.team-wrapper{
	    max-width:350px;
		width:100%;
		margin-bottom:20px;
		display:inline-block;
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
.team-wrapper img{ 
   overflow: hidden;
   margin-left:0px;
   opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  }	
.team-wrapper img:hover{
		cursor: pointer;
		opacity: 0.8;
		-webkit-transition: opacity 0.3s linear;
        transition: opacity 0.3s linear;
	}
.team-des{
	padding:15px 0 15px 0;
	background:var(--color-bg-surface);
	border-bottom:1px solid var(--color-accent);
	}
	.team-des h3{ font-size:13pt; font-weight:600;}
.team-des span{
		display: block;
		font-weight:300;
		font-size:10pt;
		margin: 0 0 10px 0;
	}
.team-des .fa {
  width: 25px;
  height: 25px;
  font-size:11pt;
}
.team-des .fa:hover{
	    cursor: pointer;
		color:var(--color-accent);
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease; 
		}
/* team end */

/* contact */
.contactbg{
  width: 100%;
  height:auto;
  color:var(--color-text-primary);
  background:rgba(var(--color-bg-primary-rgb), 0.78);
	}
	
#map{width:100%; height:360px; padding-top:0px; padding-bottom:0px;}

#contact {
  text-align:left;
  width:100%;
  height:auto;
  margin:0 auto;
  padding:20px 20px 0 15px;
}
#form-contact button.btn{
margin-top:5px;
padding:10px 20px 10px 20px;
color:var(--color-text-on-accent);
border:1px solid rgba(255,255,255, 0); background:var(--color-accent);
}

#form-contact button.btn:hover{ 
color:var(--color-text-on-accent); 
border:1px solid rgba(255,255,255, 0.1);
background:var(--color-accent-strong);
}

input[type="text"]{
  text-align: left;
  width: 220px;
  height: 50px;
  margin: 5px 0px 5px 0px;
  border: 0px;
  font-size: 9pt;
  font-weight:300;
  letter-spacing: 0px;
  color:var(--color-text-primary);
  background: rgba(var(--color-bg-surface-secondary-rgb), 0.82);
  padding:10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -moz-transition: none;
  -webkit-transition: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.2s ease;
}

input#name, input#email{width: 333px;}

input#name-contact, input#email-contact, textarea#message-contact{width: 100%;}

textarea {
  text-align: left;
  outline:none;
  width: 670px;
  height:100px;
  margin: 5px 0px 5px 0px;
  border:0px;
  font-size: 9pt;
  font-weight:300;
  letter-spacing: 0px;
  color:var(--color-text-primary);
  background: rgba(var(--color-bg-surface-secondary-rgb), 0.82);
  padding:10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -moz-transition: none;
  -webkit-transition: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.2s ease;
}

input[type="text"]:focus, input[type="text"].focus, textarea:focus, textarea.focus, input[type="email"]:focus, input[type="email"].focus, email:focus, email.focus {
  background: rgba(var(--color-bg-surface-secondary-rgb), 0.96);
  border:none;
  box-shadow: 0 0 0 1px var(--color-focus-ring);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: var(--color-text-muted);
}

::-moz-placeholder {
  opacity: 1;
  color: var(--color-text-muted);
} /* firefox 19+ */
:-ms-input-placeholder {
  opacity: 1;
  color: var(--color-text-muted);
} /* ie */
input:-moz-placeholder {
  opacity: 1;
  color: var(--color-text-muted);
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-textarea-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.error {
  width: 100%;
  display: none;
  padding: 2px 10px 2px 10px;
  font-size: 11px;
  margin: 10px auto;
}
.success {
  width: 100%;
  display:none;
  padding: 5px 0px 2px 0px;
  font-size: 11px;
  margin: 10px auto;
}
/* contact end */

/* subscribe */
#subwrap {
margin: 0 auto;
text-align:center;
color:var(--color-text-primary); 
background: linear-gradient(165deg, rgba(var(--color-bg-surface-rgb), 0.95) 0%, rgba(var(--color-bg-primary-rgb), 0.98) 100%);
-webkit-border-radius:20px;
-moz-border-radius:20px;
border-radius:20px;
box-shadow: 5px 5px 20px var(--color-shadow-strong);
}

#subscribe .mail {
display: none;
visibility: hidden;
}

#subscribe input#subscribeemail {
font-size: 10pt;
line-height: 1.5;
font-style: normal;
font-weight: normal;
text-align: center;
color:var(--color-text-primary); 
width: 300px;
height: 50px;
margin: 0 20px 0 0 ;
padding: 10px;
background:rgba(var(--color-bg-surface-secondary-rgb), 0.75);
border: none;
}
#subscribe input#subscribeemail[type="text"]:focus, #subscribe input#subscribeemail[type="text"].focus{
  border: 1px solid var(--color-border-soft);

}

.subscribesuccess {
display:none;
width: 375px;
font-size: 10px;
line-height: 2;
font-style: normal;
text-transform: uppercase;
text-align: center;
font-weight: 400;
letter-spacing: normal;
color:var(--color-text-primary); 
margin: 0 auto;
padding:0;
letter-spacing: 1px;
}

#subscribe .subscribeerror {
width: 375px;
font-size: 10px;
line-height: 2;
font-style: normal;
text-transform: uppercase;
text-align: center;
color:var(--color-text-primary); 
display: block;
margin: 0 auto;
padding: 0;
letter-spacing: 1px;
}
.btn-form {
display: inline-block;
width: 200px;
height: 50px;
font-size:9pt;
letter-spacing:1pt;
text-transform:uppercase;
font-style:normal;
text-align:center;
line-height:50px;
color:var(--color-text-on-accent);
background:var(--color-accent);
border: none;
-webkit-border-radius:100px;
-moz-border-radius:100px;
border-radius:100px;
outline: none;
text-shadow:none;
margin: 10px auto;
padding: 0;
cursor:pointer;
}
.btn-form:hover{
border: none;
background:var(--color-accent-strong);
color:var(--color-text-on-accent);
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;}
/* subscribe end */


/* address */
    .wrapaddres{
	margin:0;
	text-align:left;
	padding:20px;
	}

	
	.wrapaddres h5{ margin-top:10px; margin-bottom:15px;}
	
	address span {
	display: block;
	border-bottom:solid 1px var(--color-border-soft);
	padding-bottom:5px;
	margin-bottom:5px;
	font-weight:300;
	}

	address span strong {
    font-weight:600;
    }
	
	address span a{
	color:var(--color-text-primary);
	}
/** address end **/


/* footer */
.footer{
	height:auto;
	padding:15px 0 15px 0;
	background:rgba(var(--color-bg-primary-rgb), 0.82);
	color:var(--color-text-primary);
	}

/* social-icons */
	.social-icons{
	display:inline-block;
	}
	.social-icons i{
	text-shadow:none;
	color: var(--color-text-primary);
	padding: 8px;
	width: 28px;
	height: 28px;
	text-align: center;
	font-size:16px;
	border-radius:1px;
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
	-webkit-transition : all .3s ease-in-out;
	-moz-transition    : all .3s ease-in-out;
	transition         : all .3s ease-in-out;
	}
	.social-icons i:hover{
	background:var(--color-accent);
	color:var(--color-text-on-accent);
	border-color:var(--color-text-on-accent);
	-webkit-transition : all .3s ease-in-out;
	-moz-transition    : all .3s ease-in-out;
	transition         : all .3s ease-in-out;
	}
/* footer end */

/* totop */
#totop{
display:none;
width:30px; 
height:30px; 
background:var(--color-accent);
line-height:30px;
position:fixed;
bottom:10px; 
right:10px;
text-align:center;
cursor:pointer;
-webkit-border-radius: 5%;
-moz-border-radius: 5%;
-ms-border-radius: 5%;
-o-border-radius: 5%;
border-radius: 5%;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

#totop:hover{
background:var(--color-bg-surface); 
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

#totop i{font-size:13pt; color:var(--color-text-on-accent); }
/* totop end */


/* Blog & article */
#content{ text-align:left;}

article{
	margin-bottom:40px;
}

article .post-heading h3 {
	margin:20px 0 -10px 0;
	font-size:16pt;
	font-weight:600;
	color:var(--color-text-primary);
}

article .post-heading h3 a:hover {
	text-decoration:none;
}

/* post meta */
.post-meta {
	background:var(--color-bg-surface);
	border-top:none;
	text-align:center;
}

.post-meta .format {
	border-bottom:1px solid var(--color-border-soft);
	padding:10px 0 10px;
}

.post-meta i{
	margin:0;
}

.post-meta .date {
	border-bottom:1px solid var(--color-border-soft);
	padding:10px 0 10px;
}

.post-meta .date span {
	text-align:center;
	color:var(--color-text-primary);
	font-size:12px;
	font-weight:600;
}

.post-meta .comments {
	padding:10px 0 10px;
}

.post-meta .comments a {
	color:var(--color-text-primary);
	font-size:12px;
	font-weight:700;
}

.post-meta .comments a:hover {
	text-decoration:none;
}

/* post format */
.post-image {
	margin-bottom:20px;
}

ul.meta-post{
	float:left;
	margin: 0;
	padding:0;
	list-style:none;
}

ul.meta-post li{
	float:left;
	margin:0 10px 0 0;
	padding:0;
	list-style:none;
}

ul.meta-post li a{
	float:left;
	font-size:12px;
	font-weight:600;
}

/* single post */
.bottom-article{
	overflow: hidden;
	border-top:1px dashed rgba(255,255,255, 0.2);
	padding:10px 0 10px 0;
	margin-top:10px;
}
.bottom-article a.btn{
padding:10px 20px 10px 20px;
border:1px solid var(--color-border-soft);
}

.bottom-article a.btn:hover{ color:var(--color-text-on-accent); border:1px solid rgba(255,255,255, 0); background:var(--color-accent);}


/* pagination */
#pagination a{ padding:5px 10px ;}

#pagination .pagina-num{ margin-right:15px;}

#pagination a:hover {
    color: var(--color-accent);
	text-decoration:none;
}

#pagination a.current {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    font-weight:600;
}

/*  Aside, sidebar */
aside{
	position:relative;
	margin-bottom:40px;
}

.sidebar-nav{
	float:left;
	width:100%;
}

.right-sidebar{
	margin:0 auto;
}


.left-sidebar{
	padding:0 30px 0 0;
}

.left-sidebar .widget h3, .left-sidebar .widget .widget-content{
	padding-right:20px;
}

aside .widget {
	margin-bottom:40px;
}

.widget .recent div {
	margin-bottom:20px;
	display:inline-block;
}

.widget .recent div img {
	float:left; padding-right:10px;
}

.widget .recent div h6{
	font-size:14px;
	font-weight:600;
}

.widget .tags {
	margin:0;
	margin-left: 0;
	padding-left:0;
}

.widget .tags div {
	margin:5px 5px 15px 0;
	display:inline-block;
}

.widget .tags div a {
	border:1px solid var(--color-border-soft);
	padding:5px 10px;
	text-align:center;
}

.widget .tags div a:hover {
	text-decoration:none;
	color:var(--color-accent);
	border:1px solid rgba(var(--color-accent-rgb), 0.6);
}
/* Blog & article end */

/* Blog comment */
#blog-comment{ margin:0; padding:0px;}
#blog-comment h5{ font-size:13pt; margin-bottom:10px;}
#blog-comment ul, #blog-comment li{list-style:none; padding-left:0;}
#blog-comment li{min-height:70px; padding-bottom:10px; margin-bottom:10px; padding-bottom:20px; border-bottom: solid 1px rgba(255,255,255, 0.1);}
#blog-comment li .avatar{position:absolute; margin-top:5px;}
#blog-comment .comment{ margin-left:85px; }
#blog-comment li{min-height:70px; font-size:14px; line-height:1.6em; }
#blog-comment li li{ margin-left:80px; padding-bottom:0px; margin-top:20px; border-top: solid 1px rgba(255,255,255, 0.1); padding-top:10px; border-bottom:none;}
#blog-comment li li .avatar{position:absolute; }
#blog-comment li li .comment{ }
.comment-info {margin-left:85px; margin-bottom:5px;}
.comment-info span{}
.comment-info .c-name{ display:block; font-weight:700;}
.comment-info .c-reply{  padding-left:10px; margin-left:10px; border-left:solid 1px rgba(255,255,255, 0.1);}
.comment-info .c-reply a{font-size:11pt;}
.comment-info .c-date{  font-size:10pt;}
.blog-list h3, .blog-read h3{
	color:var(--color-text-primary);
}

/* comment form */
#comment-form-wrapper{ margin:50px 0 50px 0; padding:0px;}
#commentform input{width:100%; font-size:10pt; font-weight:400; padding:10px; height:40px; background:rgba(var(--color-bg-surface-secondary-rgb),0.82); border:none; }
#commentform input:focus{background:rgba(var(--color-bg-surface-secondary-rgb),0.96);}
#commentform textarea{width:100%; font-size:10pt; font-weight:400; padding:10px; height:150px; background:rgba(var(--color-bg-surface-secondary-rgb),0.82); border:none;}
#commentform textarea:focus{background:rgba(var(--color-bg-surface-secondary-rgb),0.96);}
#commentform button.btn{
padding:10px 20px 10px 20px;
border:1px solid rgba(0,0,0, 0.1);
background:rgba(0,0,0,0);
}
#commentform button.btn:hover{color:var(--color-text-on-accent); border:1px solid rgba(255,255,255, 0); background:var(--color-accent);}
/* Blog comment end */



/*Core Owl Carousel CSS File v1.3.3*/
/* clearfix */
.owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel,.owl-carousel .owl-wrapper{display:none;position:relative}.owl-carousel{width:100%;-ms-touch-action:pan-y}.owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100%}.owl-carousel .owl-wrapper-outer.autoHeight{-webkit-transition:height .5s ease-in-out;-moz-transition:height .5s ease-in-out;-ms-transition:height .5s ease-in-out;-o-transition:height .5s ease-in-out;transition:height .5s ease-in-out}.owl-carousel .owl-item{float:left}.owl-controls .owl-buttons div,.owl-controls .owl-page{cursor:pointer}.owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.grabbing{cursor:url(grabbing.png) 8 8,move}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}


/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls{margin-top:10px;text-align:center}.owl-theme .owl-controls .owl-buttons div{color:#efefef;display:inline-block;zoom:1;margin:5px;padding:3px 10px;font-size:12px;-webkit-border-radius:200px;-moz-border-radius:200px;border-radius:200px;background:#d8d8d8;filter:Alpha(Opacity=50);opacity:.5}.owl-theme .owl-controls.clickable .owl-buttons div:hover{filter:Alpha(Opacity=100);opacity:1;text-decoration:none}.owl-theme .owl-controls .owl-page{display:none;zoom:1}.owl-theme .owl-controls .owl-page span{display:block;width:8px;height:8px;margin:5px 7px;filter:Alpha(Opacity=50);opacity:.5;-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px;background:#d8d8d8}.owl-theme .owl-controls .owl-page.active span,.owl-theme .owl-controls.clickable .owl-page:hover span{filter:Alpha(Opacity=100);opacity:1}.owl-theme .owl-controls .owl-page span.owl-numbers{height:auto;width:auto;color:#efefef;padding:2px 10px;font-size:12px;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-item.loading{min-height:150px;background:url(AjaxLoader.gif) center center no-repeat}

/* owl slider home */
    #owl-slider-home .item{
    display: block;
    width: 100%;
    }
    #bar{
      width: 0%;
      max-width: 100%;
      height: 2px;
      background: var(--color-accent);
    }
    #progressBar{
      width: 100%;
      background: var(--color-bg-surface);
    }
	
/* button */
#owl-gal .item{
      display: block;
      padding: 15px 0px;
      margin: 0 auto;
      text-align: center;
    }
    .owl-theme .owl-controls .owl-buttons div {
      padding: 40px 44px;
	  background:rgba(0,0,0,0.5);
    }

    .owl-theme .owl-buttons i{
      margin-top: 2px;
	  font-size:40pt;
    }

    .owl-theme .owl-controls .owl-buttons div {
      position:absolute;
	  z-index:9;
    }

    .owl-theme .owl-controls .owl-buttons .owl-prev{
      left: -100px;
      	  top:40%;
	  padding-left:100px;
    }
	
    .owl-theme .owl-controls .owl-buttons .owl-next{
      right: -100px;
      	  top:40%;
	  padding-right:100px;
    }
	.owl-item {
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0) scale(1.0, 1.0);
}



/* Magnific Popup CSS */
.mfp-bg,.mfp-wrap{position:fixed;left:0;top:0}.mfp-bg,.mfp-container,.mfp-wrap{height:100%;width:100%}.mfp-container:before,.mfp-figure:after{content:''}.mfp-bg{z-index:1042;overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{z-index:1043;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-close,.mfp-preloader a:hover{color:#efefef}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}.mfp-figure:after,.mfp-iframe-scaler iframe{box-shadow:0 0 8px rgba(0,0,0,.6);position:absolute;left:0}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;font-style:normal;font-size:38px;font-family:Arial,Baskerville,monospace;}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#efefef}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#efefef;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#efefef;font-size:12px;line-height:18px}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #efefef;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #efefef;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{display:block;top:0;width:100%;height:100%;background:#efefef}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{top:40px;bottom:40px;right:0;z-index:-1;background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.image-source-link{color:#98C3D1}.mfp-with-zoom .mfp-container,.mfp-with-zoom.mfp-bg{opacity:0;-webkit-backface-visibility:hidden;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-with-zoom.mfp-ready .mfp-container{opacity:1}.mfp-with-zoom.mfp-ready.mfp-bg{opacity:.8}.mfp-with-zoom.mfp-removing .mfp-container,.mfp-with-zoom.mfp-removing.mfp-bg{opacity:0}
/* end Magnific Popup CSS */

/* general popup */
.white-popup-block{max-width:900px; margin: 20px auto; color:var(--color-text-primary); background:var(--color-bg-primary); padding:40px;}
.gray-popup-block{max-width:900px; margin: 0 auto; background:var(--color-bg-surface); padding:40px; text-align:center;}
.gray-popup-block h3{ font-size:34pt; font-weight:300; line-height:normal; letter-spacing:normal;}
.gray-popup-block p{ font-size:11pt; font-weight:300; line-height:normal; letter-spacing:normal;}

/* scroll onStep */
.onStep {
  opacity: 0;
}
