
.section-name{
	display: none;
}
section{
	viewport-fit: contain;
}
.solutions_container{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100%;
}
.solut_hex {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 30px;
} 
.top.solut_hex {
    justify-content: end;
        justify-content: flex-end;
} 
.solut_row {
    display: flex;
    justify-content: center;
    height: 40%;
}
.hex_name {
    width: 100px;
    top: 100px;
    position: relative;
    left: -70px;
    text-align: center;
    font-family: Cera Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
}
.top.solut_hex .hex_name {
    position: relative;
	top: -90px;
	width: 120px;
	left: 140px;
}
.solut_hex .hexagon{
	width: 180px;
	height: 110px;
}
.solut_hex  .hexagon:hover{
	transform: scale(1.1);
	background: #f2f1f1;
}
.solut_hex .hexagon:hover::after{
	border-top: 50px solid  #f2f1f1;
}
.solut_hex .hexagon:hover::before{
	border-bottom: 50px solid #f2f1f1;
}

.solut_hex .hexagon::after{
	bottom: -49px;
	border-left: 90px solid transparent;
	border-right: 90px solid transparent;
	border-top: 50px solid #fff;
}
.solut_hex .hexagon::before {
    top: -49px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 50px solid #fff;
}
.solut_hex .hexagon span {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    font-size: 60px;
    z-index: 111;
}
.top.solut_hex svg{
	position: absolute; 
	left: 100px; 
	top: -100px; 
	z-index:1; 
	height: 200px;
	width: 120px;
}
.solut_hex svg{
	position: absolute; 
	left: -50px; 
	top: 70px; 
	z-index:1;
	height: 200px;
	width: 120px;

	stroke: #D3D3D3; 
	stroke-width:3; 
	stroke-dasharray:3,3; 
	fill: transparent;
}

body{
	font-family: Cera Pro;
	overflow-x: hidden;
}
a{
	color: inherit;
}
a:hover{
	text-decoration: none;
	color: inherit;
}
#fullpage{
	height: 100vh;
	overflow: hidden;
}
.breadcrumb{
	background-color: #fff0 !important;
	padding: 0;
	margin-bottom: 0;
    position: absolute;
    top: 100px;
    left: 60px;
    z-index: 1;
}


.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}
.content_container{
	width: 100%;
	padding: 0 60px;
	margin: 0 auto;
}

.content-cont {
    padding: 0 60px;
    position: relative;
    height: 100%;
    padding-top: 120px;
}
/*-----------header--------------*/

.header_container{
	background-color: rgba(57, 62, 66, .2);
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	color: #fff;
	z-index: 130;
}
.white_header_container{
	background-color: #fff;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	color:black;
	z-index: 130;
}
.black_header_container{
	z-index: 111;
	position: relative;
	height: 100px;
}
.white_header_container .nav_toggle_item {
    background: #383E42;
}
.black_header_container .nav_toggle_item {
    background: #383E42;
}
.header_container.type1{
	background-color: transparent;
	color: #383E42;
}
.flex_set{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.header_nav{
	justify-content: space-between;
}
.header_nav .icon_item {
	padding: 25px 0;
}
.lang {
	background-color: transparent;
	border: 2px solid #fff;
	width: 60px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	color: inherit;
	outline: none;
}
.lang:focus, .lang:active {
	outline: none;
	box-shadow: none;
}
.lang span {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 0.02em;
	background-color: transparent;
	font-family: inherit;
	color: inherit;
	text-transform: capitalize;
}
.lang_list {
	position: fixed;
    top: auto;
	width: 60px;
    list-style: none;
    z-index: 10;
    -webkit-transition: 0.4s ease-in;
    -moz-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
    display: block;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(215, 215, 215);
    height: max-content;
    padding: 3px 0;
    margin: 0;
}
.lang_list li {
	font-size: 18px;
    line-height: 20px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #000;
	padding: 6px 20px;
	cursor: pointer;
	text-transform: capitalize;
}
.lang_list li:hover {
	opacity: 0.5;
}
.lang_list.open {
	opacity: 1;
    visibility: visible;
    transition: 0.4s ease-in-out;
}
.white_header_container .lang {
	border: 2px solid #000;
}
/* .lang_container select{ */
	/* -webkit-appearance: none; */
	/* -moz-appearance: none; */
	/* appearance: none; */
	
/* } */
/* .lang_container select:focus-visible, .lang_container select:focus{ */
	/* outline: none; */
/* } */
/* .lang_container.type1 select{ */
	/* border-color: #383E42; */
/* } */
/* .lang_container.type1 select option{ */
	/* background-color: #fff; */
/* } */
/* .lang_container select option{ */
	/* background-color: rgba(57, 62, 66, .2); */
/* } */
.separation{
	width: 2px;
	height: 21px;
	margin: 0 12px;
	background-color: #E8E8E8;
}
.chat_btn span{
	font-size: 20px;
	position: relative;
	top: 6px;
}
.logo{
	font-size: 55px;
}
.name_section p{
	display: none;
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 0;
	padding-right: 15px;
	text-transform: capitalize;
}
.icon_nav{
	padding: 0;
	margin: 0;
	list-style: none;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}
.icon_item{
	transition: .2s linear;
	padding: 35px 0;
}
.icon_item.active{
	color:#000;
}
.icon_item span{
	font-size: 25px;
	margin-right: 15px;
}
.icon_item:hover{
	color:#000;
}
.submenu {
	position: absolute;
	top: 75%;
	list-style: none;
	z-index: 10;
	-webkit-transition: 0.4s ease-in;
	-moz-transition: 0.4s ease-in;
	-o-transition: 0.4s ease-in;
	transition: 0.4s ease-in;
	display: block;
	opacity: 0;
	visibility: hidden;
	background-color:rgb(215, 215, 215);
	height: max-content;
	font-size: 18px;
	line-height: 28px;
	padding: 20px;
	margin-left: -20px;
}
.submenu li:hover {
	opacity: 0.5;
}

.black_header_container .submenu {
	top: auto;
	background-color: rgb(255, 255, 255);
}


.icon_item:hover .submenu {
  	top: 100%;
	opacity: 1;
	visibility: visible;
	transition: 0.4s ease-in-out;
}
/*nav_toggle*/

.nav_toggle{
	width: 24px;
	padding: 8px 0;
	font-size: 0;
	border: 0;
	color: transparent;
	background: none;
	cursor: pointer;
}

.nav_toggle:focus{
  	outline: 0;
}
.nav_toggle.type1 .nav_toggle_item{
	background: #383E42;
}
.nav_toggle_item{
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 50px;

	background: #FFF;
	position: relative;

	transition: .1s linear;
}

.nav_toggle.active .nav_toggle_item{
	height: 0;
}

.nav_toggle_item:before,
.nav_toggle_item:after{
	content: "";
	width: 100%;
	height: 3px;
	border-radius: 50px;
	background: inherit;

	position: absolute;
	left: 0;
	z-index: 1;

	transition: transform .2s linear; 
}
.nav_toggle_item:before{
	top: -9px;
}

.nav_toggle_item:after{
	bottom: -10px;
}

.nav_toggle.active .nav_toggle_item:before{
	transform-origin: left top;
	opacity: 1;
	left: 5px;
	transform: rotate(45deg) translateX(0px);
}

.nav_toggle.active .nav_toggle_item:after{
	transform-origin: left bottom;
	opacity: 1;
	left: 4px;
	transform: rotate(-45deg) translateX(0px);
}

.nav_container.fixed{
	display: flex;
}
.nav_container.fixed{
	display: flex;
}
.nav_col.active .nav-link{
	display: none;
}
.nav_toggle.view{
	position: absolute;
}

/*--------header_fixed----------*/
.header_navigation {
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out;
	z-index: 2;
	position: relative;
}
.header_navigation.open{
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease-in-out;
}
.header_fixed_container{
	position: fixed;
	background-color: #fff;
	position: relative;
	display: none;
	position: fixed !important;
	top: 0;
	z-index: 120;
}
.header_fixed_container.open{
	display: block;
}
.header_fixed_footer{
	position: absolute;
	bottom: 23px;
	left: 0;
	right: 0;
	width: 100%;
}
.footet_bottom_container.footer_head{
	color:#383E42;
}
.footer_head .footer_logo_container .logo_text p{
	margin-left: 0;
	font-weight: 600;
	width: 182px;
}
.header_fixed_nav{
	position: absolute;
	top: 50%;
	left: 140px;
	transform:translate(0, -50%);
}
.nav{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	width: 329px;
}
.nav_item{
	transition: .2s linear;
	width: 100%;
	padding:9px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}
.nav_item.active{
	background-color: rgba(232,232,232, .5);
}
.nav_item.active .nav_link{
	font-weight: 600;
	color:#383E42;
}
.nav_link{
	font-size: 36px;
	line-height: 1.4;
	text-align: center;
	color: #CBCBCB;
	transition: .2s linear;
	width: 100%;
	text-transform: capitalize;
}
.nav_item:hover{
	color:#383E42;
	background-color: rgba(232,232,232, .5);
}
.nav_item:hover .nav_link{
	font-weight: 600;
}
.header_fixed_link ul{
	padding-left: 0;
	list-style: none;
	color: #CBCBCB;
	margin-bottom: 0;
}
.header_fixed_link{
	position: absolute;
	left: 83%;
	bottom: 23%;
	transform: translate(-50%, 0);
}
.header_fixed_link ul .link_item{
	margin: 0 10px;
}

.scroll {
    width: 25px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -15px;
}

.scroll-doth {
    display: none;
    width: 6px;
    height: 6px;
    background-color: #fff;
    display: inline-block;
    border-radius: 5px;
    -o-transition: all 0.8s;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease 0s;
}
.scroll_text{ bottom: -20px; position: absolute; left: 0; right: 0;}
.doth-down {margin-top: 20px;}
/*-----------intro--------------*/

.section_container{
	width: 100%;
	height: 100vh;
	position: relative;
}
.intro_container{
	position: relative;
	background-image: url(../img/main_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	height: 100%;
}
.intro_text{
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
}
.intro_content{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
	
}
.intro_text{
	height: 40%;
}
.intro_content h1{
	font-size: 36px;
	line-height: 45px;
	display: flex;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0;

	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.intro_content span.h2{
	font-size: 48px;
	line-height: 60px;
	display: flex;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.intro_content span.h3{
	font-size: 64px;
	line-height: 80px;
	display: flex;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0;

	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.link_container{
	position: absolute;
	bottom: 20px;
	right: 60px;
}
.link_container ul{
	padding-left: 0;
	list-style: none;
	width: 200px;
	justify-content: space-between;
}
.link_item a{
	font-size: 20px;
	transition: .2s;
	cursor: pointer;
}
.link_item a:hover{
	color: #C1C2C3;
}
.link_container.type1 .link_item a{
	color: #383E42;
}
.scroll_container{
	width: 150px;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translate(-50% , 0);
}
.scroll_text p{
	margin-bottom: 0;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
	padding-top: 17px;
}
.scroll_btn{
	width: 26px;
	height: 41px;
	border-radius: 12px;
	border: 3px solid #fff;
	display: block;
	position: relative;
	cursor: pointer;
}
.scroll_btn_container{
	justify-content: space-around;
}
.scroll_btn::after{
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #FFF;
	display: block;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translate(-50%, 0);
}

/*-----------catalog_header--------------*/
.catalog_header_container{
	padding-top: 100px;
	padding-bottom: 90px;
}
.catalog_navigation{
	width: 24%;
	background: #F4F4F4;
	padding: 29px 20px;
}
.catalog_nav_title h3{
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	padding-left: 10px;
	margin-bottom: 15px;	

	color: #383E42;

	opacity: 0.8;
}
.catalog_nav_list{
	padding-left: 0;
	list-style: none;
}
.list_cat_link{
	padding: 13px 10px;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	opacity: .8;
	display:block;
	cursor: pointer;
	border-bottom: 1px solid rgba(232,232,232,.5);
	transition: .2s linear;
	color: #383E42;
}
.list_cat_link:hover{
	opacity: 1;
	border-bottom: 1px solid #383E42;

	color: #383E42;
}
.list_cat_link.active{
	opacity: 1;
	border-bottom: 1px solid #383E42;

	color: #383E42;
}
.catalog_body{
	width: 76%;
	padding-top: 25px;
	padding-left: 60px;
}
.catalog_nav_list.nav{
	width: auto;
	-ms-align-items: inherit;
	align-items: inherit;
}
/*-----------solutions--------------*/
#solutions{
	height: 100vh;
}
.solutions_container{
	width: 100%;
	height: 100%;
	padding: 100px 0;
}
.solutions-cont{
	width: 100%;
	height: 100%;
	background-image: url(../img/solutions_bg.png);
	background-size: 95% 90%;
	background-repeat: no-repeat;
	background-position: center left;
}
.solutions-cont .spot{
	position: absolute;
}
.hexagon {
	width: 147px;
	height: 80px;
	background: #fff;
	position: relative;
	box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.20);
	-moz-transition: all 0.3s ease-out;
 -o-transition: all 0.3s ease-out;
 -webkit-transition: all 0.3s ease-out;
}
.hexagon:before {
	content: "";
	position: absolute;
	top: -39px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 75px solid transparent;
	border-right: 75px solid transparent;
	border-bottom: 40px solid #fff;
	-moz-transition: all 0.3s ease-out;
 -o-transition: all 0.3s ease-out;
 -webkit-transition: all 0.3s ease-out;
}
.hexagon:after {
	content: "";
	position: absolute;
	bottom: -39px; 
	left: 0;
	width: 0;
	height: 0;
	border-left: 75px solid transparent;
	border-right: 75px solid transparent;
	border-top: 40px solid #fff;
	-moz-transition: all 0.3s ease-out;
 -o-transition: all 0.3s ease-out;
 -webkit-transition: all 0.3s ease-out;
}
.solutions-cont  .hexagon:hover{
	background: #f1f1f1;
	box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.33);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.solutions-cont .hexagon:hover:after  {
	border-top: 40px solid #f1f1f1;
	-webkit-transform: scale(1);
 	-moz-transform: scale(1);
 	-o-transform: scale(1);
}
.solutions-cont .hexagon:hover:before{
	border-bottom: 40px solid #f1f1f1;
	-webkit-transform: scale(1);
 -moz-transform: scale(1);
 -o-transform: scale(1);
}
.solutions-cont .hexagon span {
    position: relative;
    font-size: 30px;
    display: flex;
    justify-content: center;
}
.solut-name{
	font-family: Cera Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	z-index: 111;
	position: relative;
	text-align: center;
	color: #383E42;
	padding: 10px;

}
#solutions .scroll{
	border: 3px solid #bebfbf;
}
#solutions .scroll-doth{
	background-color: #bebfbf;
}


.scroll_container.type1 .scroll_text{
	color: #bebfbf;
	bottom: -20px;
	position: absolute;
	left: 0;
	right: 0;
}
.scroll_btn.type1{
	border-color: #bebfbf;
}
.scroll_btn.type1:after{
	background-color: #bebfbf;
}


/*-----------decisions--------------*/
.decisions_container{
	position: relative;
	background-color: #fff;
	color: #fff;
}
.fp-tableCell img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fp-controlArrow.fp-prev{
	border-width: 15px 15px 15px 0 !important;
}
.fp-controlArrow.fp-next{
	border-width: 15px 0 15px 15px !important;
}
.slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.slider__wrapper {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
  width: 100%;
}

.slider__item {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  width: 100%;
}
.info{
	position: absolute;
	bottom: 0;
	width: 30%;
	margin:  20px 70px;
	text-transform: uppercase;
}
.info p{
	font-family: Cera Pro;
	font-size: 36px;
	line-height: 45px;
	color: #FFF;
	font-weight: 500;
}
.info a{
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	color: white;
}
.info a span {
    height: 15px;
    width: 15px;
    background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFsSURBVHgBpZU/UsJQEMY3GQs70mlnSjpzg4RKO7Szy3gC7CyJJ9AjyAmIJ5Aj0FoRO6zkBvH7yGZk4nsbhJ358ZiXfd9b2D8JxGF1XZ9iSUAMzkAEClCBJSiDIJi5zgYOsSGWMaDoBnzqmuol7UUVL/EJt2LXYApyEBt+KVjVjRU+p0zFUtnT1J/23H2Q/FfMIXqzuzkhcqDh7Dv4BlHI6KTJ4pvhnPRoPqlGzgN3VnT6dzABmdhR0mce4vsArH2OKAvW3S2YM/uG5gIkJ/g4Bx+G41YUYiMVFU/tVSAOZU/TSEvwYPkxQnZBJD2GyF6k6ZaRx4WJqyj4BS56xF6xXFIMkW4MwSV/csUIfa2mYgNLTCuA58vtZAGPvgxifyw9piWz2t0YHtF6hbZe3n1wdcBwaMWmPod24kxqe3xl2pJ/Jo1rwDJbjJKlxCSwCta6F4NMVz67R6JKU7AjzOnNDLObCvl9BSzAzJX1HxuqJDLc5s1rAAAAAElFTkSuQmCC");
    background-size: contain;
	background-repeat: no-repeat;
    margin: 0 5px;
	transition: margin 0.4s ease-in-out;
}
.info a:hover {
	color: #292929;
}
.info a:hover span {
	background-repeat: no-repeat;
	background-size: contain;
	background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIJSURBVHgBnVU9UsJAGN1sYAa6DFDQGQsgQCGlhUXoLPUE6g20sxNOoJ5AbyCeQLwBNhCotqQIM9thwY/vMYsDmATGb2b5spu3L98/logQ13UzqVSqkU6nXWyLy+XSsSzrAc8Kq4f9exAEr1F3rd2DcrnsQV1IKTMg0fP5XOFZ48zH/gS6wW+SHMTtXeItwkqlco5Lp8aSLsBKRIjneSR/ITF0q9/vtyNBWC1qcaAQX61Wl/V6/XF9ZvOnVCo14Na5sap7KGEYht1CoUAv73O53NdkMglWLsPVW+rhcPgk/iGw9AOuN6bT6bGkddgwi50oMFz6IGYPJ2PoZLPZawkiD9nScQnA+zuU0FtSbE2YFJYvbdsuIn7jODAy2APpJTAkvYrDwahPqBPJosWKJVyTQjVZIgmkCsuV4kAxpB2Q3ibhGEO9WCwcsUeQHNaaj0w2o96bLlIptNYYcXSTyGq12gvCwrJoKqV0DIyV8CVhHXvSQWzcBDInicxUgAtcR85msx5Iv+lOFJiTZTAYXCZYJkxfKw4KW2s9y+fzIQ7P0EZsJ7UJxj4QCQLrHnD3Ah++A7a36mX0YAjSTBzpHrIWVhterNrW2gH4UD47h624Z3xx4BL/DLLfUvozYM3k4QUWvGYXmcLn5SOcU3MOasT/ZjQabc0AS8SIGRqeGRzFzb8ArE9k/TUqUT96EgU7mw5S3AAAAABJRU5ErkJggg==");
	margin: 0 5px 0 8px;
	transition: margin 0.4s ease-in-out;
}
.slider__item img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

#mobileimg{
	display: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider__item .top {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.top .spot{
	height: 30px;
	width: 30px;
	position: absolute;
	background-image: url(../img/icon/spot.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.hidden_item {
    width: 150px;
	height: 150px;
	opacity: 0;
	bottom: 0;
	left: -200%;
	position: absolute;
	margin-bottom: 40px;
	background-color:white;
	border-radius: 10px;
	overflow: hidden;
    transform: scale(1.1);
    transition: 0.4s all ease-in-out;
	z-index: 11111;
}
.hidden_item img {
	width: 130%;
	height: 80%;
	object-fit: contain;
	position: relative;
	right: 15%;
}
.hidden_item p{
	text-align: center;
	color: black;
}
.spot:hover .hidden_item {
    opacity: 1;
	transition: 0.4s all ease-in-out;
    transform: scale(1);
}



.slider__control {
  position: absolute;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
  z-index: 111;
}

.slider__control_show {
  display: flex;
}

.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.slider__control_left {
  right: 65%;
}

.slider__control_right {
  left: 35%;
}

.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider__control_right::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.allproj {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 20px 70px;
	min-width: 140px;
	z-index: 1111;
}
.allproj a {
	display: flex;
    align-items: center;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	text-transform: uppercase;
	color: #FFFFFF;
}
.allproj a span {
	height: 15px;
    width: 15px;
    background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFsSURBVHgBpZU/UsJQEMY3GQs70mlnSjpzg4RKO7Szy3gC7CyJJ9AjyAmIJ5Aj0FoRO6zkBvH7yGZk4nsbhJ358ZiXfd9b2D8JxGF1XZ9iSUAMzkAEClCBJSiDIJi5zgYOsSGWMaDoBnzqmuol7UUVL/EJt2LXYApyEBt+KVjVjRU+p0zFUtnT1J/23H2Q/FfMIXqzuzkhcqDh7Dv4BlHI6KTJ4pvhnPRoPqlGzgN3VnT6dzABmdhR0mce4vsArH2OKAvW3S2YM/uG5gIkJ/g4Bx+G41YUYiMVFU/tVSAOZU/TSEvwYPkxQnZBJD2GyF6k6ZaRx4WJqyj4BS56xF6xXFIMkW4MwSV/csUIfa2mYgNLTCuA58vtZAGPvgxifyw9piWz2t0YHtF6hbZe3n1wdcBwaMWmPod24kxqe3xl2pJ/Jo1rwDJbjJKlxCSwCta6F4NMVz67R6JKU7AjzOnNDLObCvl9BSzAzJX1HxuqJDLc5s1rAAAAAElFTkSuQmCC");
    background-size: contain;
	background-repeat: no-repeat;
    margin: 0 5px;
	transition: margin 0.4s ease-in-out;
}
.allproj a:hover {
	color: #292929;
}
.allproj a:hover span {
	background-repeat: no-repeat;
	background-size: contain;
	background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIJSURBVHgBnVU9UsJAGN1sYAa6DFDQGQsgQCGlhUXoLPUE6g20sxNOoJ5AbyCeQLwBNhCotqQIM9thwY/vMYsDmATGb2b5spu3L98/logQ13UzqVSqkU6nXWyLy+XSsSzrAc8Kq4f9exAEr1F3rd2DcrnsQV1IKTMg0fP5XOFZ48zH/gS6wW+SHMTtXeItwkqlco5Lp8aSLsBKRIjneSR/ITF0q9/vtyNBWC1qcaAQX61Wl/V6/XF9ZvOnVCo14Na5sap7KGEYht1CoUAv73O53NdkMglWLsPVW+rhcPgk/iGw9AOuN6bT6bGkddgwi50oMFz6IGYPJ2PoZLPZawkiD9nScQnA+zuU0FtSbE2YFJYvbdsuIn7jODAy2APpJTAkvYrDwahPqBPJosWKJVyTQjVZIgmkCsuV4kAxpB2Q3ibhGEO9WCwcsUeQHNaaj0w2o96bLlIptNYYcXSTyGq12gvCwrJoKqV0DIyV8CVhHXvSQWzcBDInicxUgAtcR85msx5Iv+lOFJiTZTAYXCZYJkxfKw4KW2s9y+fzIQ7P0EZsJ7UJxj4QCQLrHnD3Ah++A7a36mX0YAjSTBzpHrIWVhterNrW2gH4UD47h624Z3xx4BL/DLLfUvozYM3k4QUWvGYXmcLn5SOcU3MOasT/ZjQabc0AS8SIGRqeGRzFzb8ArE9k/TUqUT96EgU7mw5S3AAAAABJRU5ErkJggg==");
	margin: 0 5px 0 8px;
    transition: margin 0.4s ease-in-out;
}

/*-----------categories--------------*/   
.categories_container{
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	color: #383E42;
	padding-top: 100px;
	height: 100%;
	overflow: hidden;
}
.categories_container .content-cont{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0;
}
.cat_cont{
	margin: 0 auto;
	color: rgba(128, 128, 118, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
	align-items: center;
}
.cat_cont ul{
	list-style: none;
	list-style-type: none;
	list-style-position: inside;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	list-style-type: decimal;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}


.cat_cont li{
	list-style: none;
	padding: 20px;
	width: 25%;
}
ul .cat_submenu{
	position: relative;
	display: block;
}
ul .cat_submenu li{
	width: 100%;
	padding: 5px 0;
}
ul .cat_submenu li:first-child{
	width: 100%;
	padding-top: 0;
}
ul .cat_submenu li:last-child{
	width: 100%;
	padding-bottom: 0;
}
.cat_submenu li{
}
.cat_cont a:hover{
	color: #383E42;
	
}
.cat_cont p{
	font-family: Cera Pro;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
    font-weight: 300;
}
.cat_cont span{
	padding: 0 10px 0 0;
}

/*-----------advantages--------------*/   
.advantages_container{
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
	color: #fff;
	height: 100%;
	overflow: hidden;
}
.advantages_container {
    color: #383E42;
}
#advantages .scroll{
	border: 3px solid #BEBFBF;
}
#advantages .scroll-doth{
	background-color: #BEBFBF;
}
.scroll-doth{

}
.col-cont {
    width: 90%;
    height: 100%;
    display: flex;
    padding: 50px;
    padding-top: 140px;
    max-width: 1400px;
    margin: 0 auto;
}
.one-col{
	width: 20%;
	height: 80%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
}
.col_num{
	font-family: Cera Pro;
	font-style: normal;
	font-weight: 250;
	font-size: 72px;
	line-height: 80px;
	text-transform: uppercase;
	color: #383E42;
	padding-bottom: 10px;
}
.col_title{
	font-family: Cera Pro;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	color: #383E42;
	padding-bottom: 20px;
}
.col_txt{
	font-family: Cera Pro;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	height: 60px;
	color: #383E42;
	text-align: right;
}
.col_hexagon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 200px;
}
.col_hexagon .hexagon{
	width: 100%;
	height: 120px;
	box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	top: 60px;
	display: flex;
	align-items: center;
}
.col_hexagon .hexagon span {
    position: relative;
    margin: 0 auto;
    font-size: 75px;
}

.col_hexagon .hexagon:before {
	top: -49px; 
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-bottom: 50px solid #fff;
}
.col_hexagon .hexagon:after {
	bottom: -49px; 
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 50px solid #fff;
}
.col_hexagon .hexagon svg{
	stroke: #D3D3D3; 
	stroke-width:3; 
	stroke-dasharray:3,3; 
	fill: transparent;
}

/*-----------news--------------*/ 
.news_container{
	height: 100%;
	padding-top: 100px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.news-block {
    display: flex;
    width: 50%;
    height: 50%;
}

.news-block img {
    width: 60%;
    object-fit: cover;
}

.news_info {
    width: 40%;
    padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.news_info .news-title{
	font-family: Cera Pro;
	font-size: 24px;
	line-height: 30px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
	height: 40%;
	color: #383E42;
}
.news_info p{
	font-family: Cera Pro;
	font-size: 14px;
	line-height: 18px;
	color: #808076;
	height: 45%;
	overflow: hidden;
}
.news_info a{
	font-family: Cera Pro;
	font-size: 16px;
	line-height: 20px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #292929;
	font-weight: 400;
	height: 10%;
	margin: 10px 0;
}
.news_info a span{
	color: #292929;
	margin: 0 5px;
	height: 20px;
	width: 20px;
	transition: margin 0.4s ease-in-out;
	background-repeat: no-repeat;
	background-size: contain;
	background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIJSURBVHgBnVU9UsJAGN1sYAa6DFDQGQsgQCGlhUXoLPUE6g20sxNOoJ5AbyCeQLwBNhCotqQIM9thwY/vMYsDmATGb2b5spu3L98/logQ13UzqVSqkU6nXWyLy+XSsSzrAc8Kq4f9exAEr1F3rd2DcrnsQV1IKTMg0fP5XOFZ48zH/gS6wW+SHMTtXeItwkqlco5Lp8aSLsBKRIjneSR/ITF0q9/vtyNBWC1qcaAQX61Wl/V6/XF9ZvOnVCo14Na5sap7KGEYht1CoUAv73O53NdkMglWLsPVW+rhcPgk/iGw9AOuN6bT6bGkddgwi50oMFz6IGYPJ2PoZLPZawkiD9nScQnA+zuU0FtSbE2YFJYvbdsuIn7jODAy2APpJTAkvYrDwahPqBPJosWKJVyTQjVZIgmkCsuV4kAxpB2Q3ibhGEO9WCwcsUeQHNaaj0w2o96bLlIptNYYcXSTyGq12gvCwrJoKqV0DIyV8CVhHXvSQWzcBDInicxUgAtcR85msx5Iv+lOFJiTZTAYXCZYJkxfKw4KW2s9y+fzIQ7P0EZsJ7UJxj4QCQLrHnD3Ah++A7a36mX0YAjSTBzpHrIWVhterNrW2gH4UD47h624Z3xx4BL/DLLfUvozYM3k4QUWvGYXmcLn5SOcU3MOasT/ZjQabc0AS8SIGRqeGRzFzb8ArE9k/TUqUT96EgU7mw5S3AAAAABJRU5ErkJggg==");
}
.news_info a:hover {
	color: #000;
	font-weight: 500;
}
.news_info a:hover span {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAIsSURBVDhPlZVLbtpQFIbBMGEGEkIMPQHxGCQ7qLOCNisoXUHbFSSsINlBuoBIobPO6s4Y0gkYEJI78wAhZ0QlXv1+2yCMcUR/6XBf5372vcfnkM2kqNFodLLZ7Hu615i52+26jH363mq1ctfr9cB13b/yPVYCGIHu6JqYiw2A/aa1t9ttMZfLCV6kL1hvMpk4tAfFgK1W6w7ne7ou7SfHcexwJS4eqodZmOD98Xj8I1g4Vrvdfmg2mzucBbxI+FryVxtNZXL6qdfrHzjmI0/r8lYXA+fzuVsul9W1SqWSv1gsPMM0Td3LEzD7f2B76VrY6xuGEbylUSgUOrRFrKuJU3ENP2u1miKdKk7Xw4ryMxiL7KYFAMev+Xz+5fieTsVeBdHHtyHgFYNf4VJSw+FwgOMtRxL0YzSdEOseV1cVcP+9pUpQmhvAiuhZKC/lYUUBL1IE1V19CWfOS0AXp6twmC6C80BjLZfLm3AmLmURHF9ApdWbUSSDnmgCGPmrfE5IKbnZbDyDc/cYm2lRFEx38xaMvfv8dg1C/o05HVtvkRCO30ej0W0aLJKlYqEKFKQe6fMKsKM0Ip1inxDjWDU5VXSyax78PJvNvADIpkGlUlHluT8HTVMEs4D1KWN9zcXKF5F8pPmMKT9VKFLLF+sqKEpZ1YCDX6LAqvKQakEgGCql5PwHswFUuauqQMz79O3pdKrv86AEUFIFiorGO+zwF4ApG3zMOQWFymT+AQnQMzsmLEO3AAAAAElFTkSuQmCC');
	margin: 0 5px 0 8px;
	transition: margin 0.4s ease-in-out;
}
.reorder img{
	order: 2;
}
/**********************************/
.socialshare{
	width: 30px;
	height: 68px;
    position: absolute;
    right: 60px;
   	margin-top: 25px;
	z-index: 100;
}
.share_txt{
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
}
.socialshare .social-icons{
	display: none;
	text-align: center;
	width: 30px;
	height: 0px;
	list-style: none;
	padding: 0;
}
.socialshare .link_item{
	padding: 10px 0;
}
.icon-share2, .icon-twitter{
  display: inline-block;
  width: 25px;
  height: 30.3px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.socialshare .icon-Facebook:hover{
	color: #0058a6;
}
.socialshare .icon-pint:hover{
	color: red;
}
.socialshare .icon-Lin:hover{
	color: #007fa6;;
}
.socialshare .icon-twitter:hover{
	color: #73d1ee;
}
/*-----------footer--------------*/
.footer_top_container{
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #383E42;
}
.input_form{
	width: 30%;
	padding: 10px 40px;
	justify-content: center;
    display: flex;
    flex-direction: column;
}
.input_form input{
	width: 100%;
	margin: 10px 0;
	padding: 7px;
	border: none;
	border-bottom: solid 2px #383E4285;
}
input.submit{
	border: none;
	background: none;
	text-transform: uppercase;
	font-weight: 600;
	opacity: 0.6;
}
input.submit:hover{
	opacity: 1;
}

.input_form textarea{
	width: 100%;
	margin: 10px 0;
	padding: 7px;
	border: none;
	border-bottom: solid 2px #383E4285;

}
.map{
	width: 70%;
	height: 90%;
}
.map iframe{
	width: 95%;
	height: calc(100% - 80px);
	filter: brightness(110%) grayscale(100%);
	-webkit-filter: brightness(110%) grayscale(100%);
}
.map iframe:hover{
	filter: none;
}
.map-info{
	width: 100%;
	padding-bottom: 30px;
}
.map-info span{
	width: 100%;
	font-size: 22px;
	font-weight: 500;
	display: block;
}
.footer_contacts{
	padding-top: 100px;
	width: 100%;
	height: 65%;
	display: flex;
	justify-content: space-around;
    overflow: hidden;
}
.one {
    width: 20%;
}
.footer_contacts h3 {
    border-bottom: 2px solid grey;
    padding: 10px 0;
    font-size: 18px;
    text-transform: uppercase;
}

.footer_contacts a {
    font-size: 14px;
    padding: 0px;
    margin: 0;
    line-height: 12px;
}
.footer_top{
	height: 25%;
}
.footer_bottom{
	height: 10%;
}
.footer_top_information{
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: flex-start;
	align-items: flex-start;
	/* width: 430px; */
}
.foot-title{
	font-family: Cera Pro;
	font-size: 18px;
	line-height: 34px;
	font-weight: 600;
	color: #383E42;
}
.ff_title p{
	font-size: 13px;
	line-height: 1.3;
	color: #45494E;
	margin-bottom: 0;
	opacity: 0.6;
	margin-bottom: 10px;
}
.footer_inform_item{
	/* width: 173px; */
	width: 20%;
	margin-right: 41px;
	margin-bottom: 15px;
}
.footer_inform_item ul{
	padding-left: 0;
	list-style: none;
	padding-top: 7px;
	margin-bottom: 0;
	justify-content: space-between;
}
.footer_link{
	font-size: 13px;
	margin-right: 12px;
	transition: .2s;
}
.footer_link:hover{
	color: #C1C2C3;
}

.footer_follow{
	width: 20%;
	/* width: 230px; */
}
.follow_form{
	padding-top: 30px;
}
.follow_mail{
	border: none;
	background: transparent;
	font-size: 10px;
	font-family: inherit;
	line-height: 1.3;
	color: rgba(69,73,78,0.6);
	margin: 9px 0;
	width: 100%;
}
.follow_mail placeholder{
	color: inherit;
}
.follow_btn{
	border: none;
	background: transparent;
	font-size: 10px;
	line-height: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #383E42;
}
.follow_form{
	border-bottom: 2px solid #383E42;
}
.follow_form input:focus{
	outline: none;
}

.footer_bottom{
	background: #383E42;
	border-radius:0;
	min-height: 100px;
}
.footet_bottom_container{
	justify-content: space-between;
	height: 100%;
	-ms-align-items: center;
	align-items: center;
	color: #fff;
}
.footer_logo span{
	/* font-size: 67px; */
	font-size: 4em;
}
.logo_text p{
	width: 179px;
	font-size: 14px;
	line-height: 1.3;
	text-transform: uppercase;
	margin-bottom: 0;
	margin-left: 22px;
}
.footer_company span{
	width: 111px;
	font-size: 14px;
	line-height: 1.3;
	padding-right: 4px;

}


.contacts{
	width: 100%;
	height: calc(100vh - 100px);
	display: flex;
}



/**
 * PgwSlider - Version 2.3
 *
 * Copyright 2014, Jonathan M. Piat
 * http://pgwjs.com - http://pagawa.com
 *
 * Released under the GNU GPLv3 license - http://opensource.org/licenses/gpl-3.0
 */
.pgwSlider {
    width: 100%;
    color: #fff;
}

.pgwSlider a{
    display: block;
    text-decoration: none;
    color: #fff;
}

.pgwSlider .ps-current {
    float: left;
    width: 74%;
    overflow: hidden;
    height: inherit;
    position: relative;
    font-size: 1rem;
}

.pgwSlider.listOnTheLeft .ps-current {
    float: right;
}

.pgwSlider .ps-current ul {
    width: 100%;
}

.pgwSlider .ps-current li {
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: none;
}

.pgwSlider .ps-current img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    display: block;
    transition: margin-top 250ms linear;
}

.pgwSlider .ps-caption {
    position: absolute;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.7);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
    left: 0;
    bottom: 0;
    display: none;
    z-index: 3;
}

ul.pgwSlider,
.pgwSlider  ul {
    float: right;
    width: 25%;
    padding: 0;
    list-style: none;
    margin: 0;
}

ul.pgwSlider.listOnTheLeft,
.pgwSlider.listOnTheLeft > ul {
    float: left;
}

ul.pgwSlider > li,
.pgwSlider > .ps-list > li {
    height: 50px;
    margin-bottom: 6px;
    overflow: hidden;
    position: relative;
    opacity: 0.6;
    filter: alpha(opacity=60);
    font-size: 0.8rem;
    transition: opacity 200ms linear;
}

ul.pgwSlider > li:last-child,
.pgwSlider > ul > li:last-child {
    margin-bottom: 0;
}

ul.pgwSlider > li span,
.pgwSlider > .ps-list > li span {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 5px;
    background: rgba(0, 0, 0, 0.7);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul.pgwSlider > li:hover,
.pgwSlider > ul > li:hover {
    opacity: 1 !important;
}

ul.pgwSlider > li img,
.pgwSlider > ul > li img {
    width: 100%;
    min-height: 100%;
    display: block;
    transition: margin-top 250ms linear;
}

.pgwSlider .ps-prevIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    display: block;
}

.pgwSlider .ps-nextIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    display: block;
}

.pgwSlider .ps-current .ps-prev {
    background: rgba(0, 0, 0, 0.5);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    border: 1px solid #777;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    padding: 20px 20px 20px 17px;
    left: 0;
    top: 45%;
    cursor: pointer;
}

.pgwSlider .ps-current .ps-next {
    background: rgba(0, 0, 0, 0.5);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    border: 1px solid #777;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    position: absolute;
    padding: 20px 17px 20px 20px;
    right: 0;
    top: 45%;
    cursor: pointer;
}

/*
 * The media-queries are not used because IE8 doesn't support them.
 */
ul.pgwSlider.wide > li,
.pgwSlider.wide > ul > li {
    width: 100% !important;
}

.pgwSlider.narrow .ps-current {
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.pgwSlider.narrow .ps-current img {
    width: 100%;
    min-height: inherit;
}

.pgwSlider.narrow .ps-current,
ul.pgwSlider.narrow,
.pgwSlider.narrow > ul {
    width: 100%;
}

ul.pgwSlider.narrow > li,
.pgwSlider.narrow > .ps-list > li {
    float: left;
    min-height: 50px;
    max-height: 70px;
    min-width: 15%;
    font-size: 0.7rem;
    margin-bottom: 0;
}

ul.pgwSlider.narrow.listOnTheLeft > li,
.pgwSlider.narrow.listOnTheLeft > ul > li {
    float: right;
}

.pgwSlider.narrow .ps-caption {
    padding: 8px;
}

.pgwSlider.narrow .ps-current .ps-prev {
    padding: 15px 15px 15px 12px;
    top: 40%;
}

.pgwSlider.narrow .ps-current .ps-next {
    padding: 15px 12px 15px 15px;
    top: 40%;
}

.black_header_container .nav_toggle_item{
	background: black;
}

#subscribe .intro_content{
	justify-content: space-around;
}
.subscribe-txt{
	font-size: 40px;
	line-height: 50px;
	font-weight: 600;
}
.subscribe-link{
	font-size: 23px;
}


