@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap&subset=latin-ext');
@font-face {
  font-family: 'Calibri 400';
  src: url('../libs/fonts/Calibri/Calibri 400.eot');
  src: url('../libs/fonts/Calibri/Calibri 400.eot?#iefix') format('embedded-opentype'),
  url('../libs/fonts/Calibri/Calibri 400.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Calibri';
  src: url('../libs/fonts/Calibri/Calibri.svg#Calibri') format('svg'),
  url('../libs/fonts/Calibri/Calibri.ttf') format('truetype'),
  url('../libs/fonts/Calibri/Calibri.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Stem-Bold';
  src: url('../libs/fonts/Stem/Stem-Bold.eot');
  src: url('../libs/fonts/Stem/Stem-Bold.eot?#iefix') format('embedded-opentype'),
  url('../libs/fonts/Stem/Stem-Bold.svg#Stem-Bold') format('svg'),
  url('../libs/fonts/Stem/Stem-Bold.ttf') format('truetype'),
  url('../libs/fonts/Stem/Stem-Bold.woff') format('woff'),
  url('../libs/fonts/Stem/Stem-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Flaticon";
  src: url("../libs/fonts/Flaticon/Flaticon.eot");
  src: url("../libs/fonts/Flaticon/Flaticon.eot?#iefix") format("embedded-opentype"),
  url("../libs/fonts/Flaticon/Flaticon.woff2") format("woff2"),
  url("../libs/fonts/Flaticon/Flaticon.woff") format("woff"),
  url("../libs/fonts/Flaticon/Flaticon.ttf") format("truetype"),
  url("../libs/fonts/Flaticon/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}


body{
  overflow-x: hidden;
  font-family: "Calibri", sans-serif;
  padding: 0px;
  margin: 0px;
}
body.full-page{
  background-color: #e9e9e9;
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}



.header{
  /*background-image: -moz-linear-gradient( -6deg, rgb(200,14,33) 0%, rgba(200,14,33,0) 100%);
  background-image: -webkit-linear-gradient( -6deg, rgb(200,14,33) 0%, rgba(200,14,33,0) 100%);
  background-image: -ms-linear-gradient( -6deg, rgb(200,14,33) 0%, rgba(200,14,33,0) 100%);*/
  background-color: #c80e20;
  height: 95px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .5s ease-in-out;
  /*width: 0;*/
}
@media(max-width: 767px){
	.header{
		height: 0;
	}
	body.full-page .header{
		height: 60px;
    	background-color: #c80e20;
	}
}
body.fixed-header .header{
  height: 60px;
  background-color: #c80e20;
}
@media(min-width: 768px){
	body.fixed-header nav.navigation{
	  top: 18px;
	}
}
body.fixed-header .logo img{
  height: 145px;
}
body.fixed-header .m-icon{
  top: 15px;
}
/*
body.menu-open .header{
right: 0;
left: 0;
width: 100%;
}
*/

body.full-page .header{
  background-image: inherit;
  background-color: #c80e20;
  /*box-shadow: 0px 0px 14px 3px rgba(0,0,0,.5);*/
}
body.sub-full-page .header{
  display: none;
}
/*
body.full-page .header,
body.full-page nav.navigation,
body.full-page .m-icon{
display:none;
}
*/

nav.navigation{
  position: fixed;
  z-index: 1000;
  top: 40px;
  left: 250px;
  transition: all .5s ease-in-out;
}
@media(max-width: 767px){
	nav.navigation{
		width: 100%;
		height: 0;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: #c80e20;
		opacity: 0;
		visibility: hidden;
	}
	body.menu-open nav.navigation{
		height: 100%;
		opacity: 1;
		visibility: visible;
	}
}
/*
body.menu-open nav.navigation{
left: 250px;
}
*/

body.sub-full-page nav.navigation{
  display: none;
}
.menu{
  list-style-type: none;
  display: block;
  padding: 0px;
}
.menu li{
  display: inline-block;
  position: relative;
}
@media(max-width: 767px){
  .menu{
    padding-top: 100px;
  }
}
@media(min-width: 768px){
	.menu li:after{
	  content: "";
	  position: absolute;
	  background-color: rgb(255, 156, 0);
	  width: 1px;
	  height: 14px;
	  top: 6px;
	}
	.menu li:last-child:after{
	  content: initial;
	}
}
.menu li:before{
  content: "";
  position: absolute;
  background-color: rgb(255, 156, 0);
  width: 0px;
  height: 1px;
  bottom: 0px;
  transition: all .3s;
  left: 20px;
}
@media(max-width: 767px){
	.menu li:before{
		display: block;
		text-align: center;
		margin:0px auto;
		right: 0;
		left: 0;
		bottom: 10px;
	}
}
.menu li:hover:before,
.menu li:focus:before,
.menu li.active:before{
  width: 30px;
}
.menu li a{
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  color: rgb(255,255,255);
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  padding: 20px;
}
@media(max-width: 767px){
	.menu li{
		display: block;
		text-align: center;
		position: relative;
	}
	.menu li a{
		display: block;
		text-transform: uppercase;
		font-size: 1rem;
	}
}







.m-icon{
  position: fixed;
  right: 25px;
  z-index: 2;
  top: 30px;
  cursor: pointer;
  width: 40px;
  height: 29px;
  z-index: 1002;
  transition: all .5s ease-in-out;
}
@media(min-width: 768px){
  .m-icon{
    display: none;
  }
}
body.sub-full-page .m-icon{
  display: none;
}
.m-icon span{
  background-color: #fff;
  height: 3px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  transition: all .3s;
}
.m-icon span:nth-child(2){
  width: 25px;
  top: 13px;
}
.m-icon span:nth-child(3){
  top: 25px;
}
.m-icon:hover span:nth-child(1){
  width: 25px;
}
.m-icon:hover span:nth-child(2){
  width: 40px;
}
.m-icon:hover span:nth-child(3){
  width: 25px;
}
body.menu-open .m-icon span:nth-child(2){
  display: none;
}
@media(max-width: 767px){
	.m-icon{
		width: 30px;
		right: 7px;
		top: 15px;
	}
	body.menu-open .m-icon{
		top: 30px;
	}
	.m-icon span{
		width: 30px;
	}
	.m-icon:hover span:nth-child(2){
		width: 30px;
	}
}

.logo img{
  position: relative;
  top: 20px;
  left: 30px;
  transition: all .5s ease-in-out;
  height: 155px;
}
@media(max-width: 767px){
  body.menu-open .m-icon span:nth-child(3){
    top: 0px;
    transform: rotate(-45deg);
  }
  body.menu-open .m-icon span:nth-child(1){
    transform: rotate(45deg);
  }
	.logo img,
	body.fixed-header .logo img{
		left: 15px;
		height: 95px;
	}
}

















.slider{
  position: relative;
}
.slider img{
  width:100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
@media(max-width: 767px){
	.slider img{
		height: calc(100vh - 50px);
	}
}
/*
.slider:before{
  content: url(../img/slider_layer.png);
  position: absolute;
  bottom: -29px;
  left: 0;
  z-index: 10;
}
*/
.slider:after{
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 95px;
  background-color: rgb(200, 14, 32);
  height: 100%;
}
.slider .whcr-item-description,
.slider h2{
  font-size: 30px;
  font-family: "Stem-Bold", sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: right;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.57);
  position: absolute;
  bottom: 150px;
  right: 145px;
  text-transform: uppercase;
  width: 500px;
}
@media(max-width: 767px){
	.slider .whcr-item-description,
	.slider h2{
		width: auto;
		right: 55px;
		font-size: 21px;
		bottom: 85px;
	}
}
.slider .owl-theme .owl-controls .owl-page{
  display: block;
}
.slider  .owl-theme .owl-controls{
  padding: 0;
}
.slider .owl-theme .owl-pagination,
.slider .owl-dots{
  position: absolute;
  bottom: 20px;
  right: 21px;
  z-index: 13;
  display: none;
}
.slider .owl-theme .owl-buttons,
.slider .owl-nav{
  position: absolute;
  bottom: 50px;
  left: 80px;
  z-index: 25;
}
@media(max-width: 767px){
	.slider .owl-nav{
		bottom: 10px;
		left: 10px;
	}
}
.slider .owl-nav button{
	background: #c80e20!important;
	width: 50px;
	height: 50px;
	opacity: 1;
	filter:Alpha(Opacity=100);
	padding-top: 15px;
	transition: all .3s;
	margin:2px;
	outline: none;
}
.slider .owl-nav button:hover{
	opacity: 0.8;
	filter:Alpha(Opacity=80);
}
.slider .owl-theme .owl-controls .owl-page span,
.slider .owl-carousel button.owl-dot{
  background: rgb(255, 156, 0)!important;
  width: 13px;
  height: 13px;
  opacity: 1;
  filter: Alpha(Opacity=100);
  margin: 16px 18px;
  position: relative;
  border-radius: 50%;
}
.slider .owl-theme .owl-controls .owl-page.active span:before,
.slider owl-carousel button.owl-dot.active span:before{
  content: "";
  position: absolute;
  border: 1.5px solid rgb(255, 156, 0);
  top: -8px;
  bottom: 0;
  left: -8px;
  right: 0;
  background: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.slider-useful-link{
  position: absolute;
  display: block;
  position: absolute;
  bottom: 50px;
  right: 145px;
}
.slider-useful-link a{
  padding: 10px 20px;
  border-radius: 45px;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  transition: all cubic-bezier(.6,.18,.85,.94) .3s;
  -moz-transition: all cubic-bezier(.6,.18,.85,.94) .3s;
  -webkit-transition: all cubic-bezier(.6,.18,.85,.94) .3s;
  -o-transition: all cubic-bezier(.6,.18,.85,.94) .3s;
  margin: 5px;
  border:1px solid rgb(200, 14, 32);
  font-weight: 700;
}
@media(max-width: 767px){
	.slider-useful-link{
		bottom: 180px;
		right: 55px;
	}
	.slider-useful-link a{
		padding: 8px;
		margin: 0px;
		font-size: 12px;
	}
}
.slider-useful-link a:nth-child(1){
  background-color: rgb(200, 14, 32);
  border-color: rgb(200, 14, 32);
}
.slider-useful-link a:nth-child(2),
.slider-useful-link a:nth-child(3){
  background-color: rgba(255, 255, 255, 0.5);
  border-color:rgba(255, 255, 255, 0.5);
  color: #1a1a1a;
}
.slider-useful-link a:hover:nth-child(1){
  background-color: rgba(200, 14, 32,.5);
  border-color: rgba(200, 14, 32,.5);
}
.slider-useful-link a:hover:nth-child(2),
.slider-useful-link a:hover:nth-child(3){
  background-color: rgba(255, 255, 255, 1);
  border-color:rgba(255, 255, 255, 1);
}
.slider .owl-carousel .owl-nav button.owl-next span,
.slider .owl-carousel .owl-nav button.owl-prev span{
	display: none;
}

.slider-sidebar{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 95px;
  background-color: rgb(200, 14, 32);
  height: 100%;
  z-index: 10;
}
@media(max-width: 767px){
	.slider-sidebar{
		width: 45px;
	}
}
body.sub-full-page .slider-sidebar,
body.full-page .slider-sidebar{
  position: fixed;
}
.social-list{
  padding: 0px;
  list-style-type: none;
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  text-align: center;
  left: 40px;
  z-index: 15;
}
.social-list li{
  display: block;
  margin-bottom: 15px;
  position: relative;
}
.social-list li i{
  color: #c80e21;
  font-size: 20px;
}
.social-list li i:after{
  content: "";
  position: absolute;
  transition: all .3s;
  top: -7px;
  bottom: 0;
  left: -8px;
  right: 0;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1.5px solid transparent;
}
.social-list li a:hover > i:after{
  border-color: rgb(255, 156, 0);
}
@media(max-width: 767px){
	.social-list{
		display: none;
	}
}
.search-icon{
  position: absolute;
  z-index: 10;
  right: 30px;
  top: 108px;
  cursor: pointer;
}
.search-icon i{
  color: #FFFFFF;
  font-size: 30px;
}
@media(max-width: 767px){
	.search-icon{
		right: 9px;
	}
	.search-icon i{
		font-size: 25px;
	}
}
.search {
  position: absolute;
  top: 100px;
  right: -1000%;
  transition: all .5s;
}
.search-box{
  border: 2px solid #c80e20;
  background-color: #FFF;
  width: 250px;
  height: 49px;
}
@media(max-width: 767px){
  .search{
    top: 103px;
  }
  .search-box{
    height: 35px;
  }
}
.search input[type="text"].ccm-search-block-text{
  padding: 7px;
  height: 45px;
  width: 190px;
  float: left;
  border:none;
}
.search input[type="submit"].ccm-search-block-submit{
  border:none;
  border-radius: 0px;
  height: 45px;
  width: 56px;
  float: left;
  background-color: #c80e20;
  color: #FFF;
}
body.search-open .search{
  right: 95px;
}
.menu-list{
  padding: 0px;
  list-style-type: none;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 95px;
  width: 95px;
}
.menu-list i{
  font-size: 27px;
}
.menu-list img.fa-icon{
  height: 27px;
  width: 27px;
}
@media(max-width: 767px){
	body.search-open .search{
		right: 45px;
	}
	.menu-list{
		width: 45px;
    top: 60px;
	}
}
.menu-list li{
  list-style-type: none;
  display: block;
  border-top: 1px solid #880000;
}
.menu-list li a{
  width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  padding: 20px 0px;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  transition: all .3s;
}
.menu-list li a:hover,
.menu-list li a:focus{
  background-color: rgba(0,0,0,.2);
}
@media(max-width: 767px){
	.menu-list li a{
		padding: 15px 0px;
	}
}










.title-box{
  position: relative;
}
.section-title{
  font-family: "Roboto", sans-serif;
  color: rgb(147, 13, 26);
  /*text-shadow: 0px 3px 5.52px rgba(0, 0, 0, 0.27);*/
  font-size: 3.5rem;
  font-weight: 300;
}
.small-title{
  font-family: "Calibri", sans-serif;
  font-size: 2.3rem;
  color: rgba(0, 0, 0, 0.102);
  line-height: 1.8;
  text-transform: lowercase;
  position: absolute;
  top: 27px;
  left: 147px;
}
.section-desc{
  font-size: 1.2rem;
  font-family: "Calibri", sans-serif;
  color: rgb(0, 0, 0);
  line-height: 1.8;
  text-align: left;
}
.all-text{
  font-size: 1.2rem;
  font-family: "Calibri", sans-serif;
  color: rgb(200,14,32);
  font-weight: bold;
  line-height: 1.2;
  float: right;
  text-decoration: none;
  transition: all .3s;
}

.about-us img{
  width: 100%;
  height: 375px;
}
.about-us .title-box{
  margin-top: 65px;
}
/* Common button styles */
/*
.about-us .button {
float: left;
width: 100%;
display: block;
margin: 1em;
padding: 1em 2em;
border: none;
background: none;
color: inherit;
vertical-align: middle;
position: relative;
z-index: 1;
text-decoration: none;
-webkit-backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
font-family: "Calibri", sans-serif;
color: #1a1a18;
font-weight: bold;
font-size: 1.3rem;
text-align: center;
border: 1px solid #c80e20;
}
.about-us .button:focus {
outline: none;
}
.about-us .button > span {
vertical-align: middle;
}
.about-us .button--ujarak {
-webkit-transition: border-color 0.4s, color 0.4s;
transition: border-color 0.4s, color 0.4s;
}
.about-us .button--ujarak::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #c80e20;
z-index: -1;
opacity: 0;
-webkit-transform: scale3d(0.7, 1, 1);
transform: scale3d(0.7, 1, 1);
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.about-us .button--ujarak,
.about-us .button--ujarak::before {
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.about-us .button--ujarak:hover {
color: #fff;
border-color: #c80e20;
text-decoration: none;
}
.about-us .button--ujarak:hover::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
*/
.cta {
  position: relative;
  display: block;
  margin-top: 30px;
  width: 100%;
  height: 70px;
  font-size: 1.4rem;
  line-height: 70px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  font-family: "Calibri", sans-serif;
  transition: all .3s;
}
@media(max-width: 767px){
	.cta{
		margin-top: 15px;
		height: 50px;
		line-height: 50px;
	}
}
.cta svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cta svg rect {
  stroke: #c80e20;
  stroke-width: 0;
  stroke-dasharray: 322, 0;
  stroke-dashoffset: 0;
  transition: all 350ms ease-out;
  height: 70px;
  width: 100%;
}
.cta:hover {
  color: #FFFFFF;
  text-decoration: none;
}
/*
.cta:hover svg rect {
stroke: #c80e20;
stroke-width: 3;
stroke-dasharray: 495, 624;
stroke-dashoffset: 560;
}
*/
.cta:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 1;
  background-color: #FFFFFF;
  -webkit-animation: custom-btn-color-change ease 5s infinite;
  animation: custom-btn-color-change ease 5s infinite;
  background-image: -webkit-gradient(linear,left top,right top,from(#c80e20),to(#c80e20));
  background-image: linear-gradient(to right,#c80e20 0,#a50b1a 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c80e20', endColorstr='#a50b1a', GradientType=1);
  left: 0;
  transition: all .3s;
}
.cta:hover:before{
  background-image: -webkit-gradient(linear,left top,right top,from(#1a1a18),to(#1a1a18));
  background-image: linear-gradient(to right,#1a1a18 0,#383837 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a1a18', endColorstr='#383837', GradientType=1);
}
.cta:nth-child(2):before{
  -webkit-animation: custom-btn-color-change ease 6s infinite;
  animation: custom-btn-color-change ease 6s infinite;
}
.cta:nth-child(3):before{
  -webkit-animation: custom-btn-color-change ease 7s infinite;
  animation: custom-btn-color-change ease 7s infinite;
}
@keyframes custom-btn-color-change{
  0%{background-position: 0;}
  50%{background-position: 320px;}
  100%{background-position: 0;}
}
/*
.projects{
background-image: url('../img/test/project_bg.jpg');
background-size: cover;
background-position: center;
width: 100%;
height: 535px;
}
.projects-wrap{
text-align: right;
padding-top: 75px;
}
.projects .title-box{
margin-bottom: 30px;
}
.projects .section-title{
text-transform: uppercase;
}
.projects .small-title{
left: none;
right: 2px;
top: 28px;
}
.projects ul{
padding: 0px;
list-style-type: none;
}
.projects ul li{
float: left;
display: block;
width: 100%;
margin-bottom: 30px;
}
.projects ul li h3{
font-family: "Stem-Bold", sans-serif;
font-size: 1.7rem;
color: rgb(147, 13, 26);
font-weight: bold;
line-height: 1.2;
}
.projects ul li a{
color: rgb(147, 13, 26);
font-weight: bold;
line-height: 1.2;
text-align: center;
font-family: "Stem-Bold", sans-serif;
font-size: 0.9rem;
text-decoration: none;
background-color: #f2f2f2;
padding: 8px;
border-radius: 10px;
width: 125px;
display: block;
box-shadow: 0px 3px 5.52px rgba(0, 0, 0, 0.27);
float: right;
transition: all .3s;
}
.projects ul li a:hover{
background-color: rgb(147, 13, 26);
color: #f2f2f2;
}
*/

.ads-box{
  padding: 50px 0px;
}
.ads-box figure,
.campaigns-page figure{
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.ads-box figure > img,
.campaigns-page figure > img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
@media(max-width: 767px){
	.ads-box figure > img,
	.campaigns-page figure > img{
		height: 230px;
	}
}
.ads-box .detail-box,
.campaigns-page .detail-box{
  border:1px solid #1a1a1a;
  padding: 30px;
  text-align: center;
  background-color: #FFFFFF;
}
@media(max-width: 767px){
	.ads-box .detail-box,
	.campaigns-page .detail-box{
		padding: 10px;
	}
}
.ads-box figcaption,
.campaigns-page figcaption{
  font-size: 1.2rem;
  color: #1a1a1a;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: "Stem-Bold", sans-serif;
}
@media(max-width: 767px){
	.ads-box figcaption,
	.campaigns-page figcaption{
		font-size: 1rem;
	}
}
.ads-box .detail-box a,
.campaigns-page .detail-box a{
  text-decoration: none;
  outline: none;
  padding: 10px 18px;
  line-height: 1.5;
  border-radius: 45px;
  color: #fff;
  display: inline-block;
  color: #1a1a18;
  transition: all .3s;
  text-transform: uppercase;
  margin:0px 20px;
}
@media(max-width: 767px){
	.ads-box .detail-box a,
	.campaigns-page .detail-box a{
		padding: 10px 14px;
		font-size: 14px;
		margin:0px 4px;
	}
}
.ads-box .detail-box a:nth-child(2),
.campaigns-page .detail-box a:nth-child(2){
  border:1px solid transparent;
  background-color: rgb(200, 14, 32);
  color: #FFFFFF;
}
.ads-box .detail-box a:nth-child(3),
.campaigns-page .detail-box a:nth-child(3){
  border:1px solid #1a1a18;
}
.ads-box .detail-box a:nth-child(2):hover,
.campaigns-page .detail-box a:nth-child(2):hover{
  background-color:transparent;
  border:1px solid rgb(200, 14, 32);
  color: #c80e20;
}
.ads-box .detail-box a:nth-child(3):hover,
.campaigns-page .detail-box a:nth-child(3):hover{
  background-color: #1a1a18;
  color: #FFFFFF;
}
.ads-box .owl-theme .owl-controls .owl-page span{
  background: rgb(255, 156, 0)!important;
  width: 13px;
  height: 13px;
  opacity: 1;
  filter: Alpha(Opacity=100);
  position: relative;
}
.ads-box .owl-controls .owl-page.active span,
.ads-box .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  opacity: 1;
}
.ads-box .owl-theme .owl-controls .owl-page.active span:before {
  content: "";
  position: absolute;
  border: 1.5px solid rgb(255, 156, 0);
  top: -8px;
  bottom: 0;
  left: -8px;
  right: 0;
  background: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.ads-box .owl-carousel .owl-nav {
  text-align: center;
}
.ads-box .owl-carousel .owl-nav button.owl-next,
.ads-box .owl-carousel .owl-nav button.owl-prev{
  background-color: #000;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  margin: 5px;
  outline: none;
  transition: all .3s ease-in-out;
}
.ads-box .owl-carousel .owl-nav button.owl-next:hover,
.ads-box .owl-carousel .owl-nav button.owl-prev:hover{
  background-color: #c80e20;
}

/*
.ads-box{
padding: 10px 0px;
}
.ads-box figure{
position: relative;
margin: 0px;
border: 1px solid #e9e9e9;
}

.ads-box-image{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.detail-box{
text-align: center;
padding: 30px;
}
.box-link a{

}
.detail-box.right{
left: inherit;
right: 15px;
}
.detail-box figcaption{
}
*/





.statistics{
  background-image: url('../img/statistics.jpg');
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding: 40px 0px;
}
.statistics-wrap{
  display: flex;
  flex-wrap: wrap;
}
.statistics-box{
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-decoration: none;
  padding: 35px;
  z-index: 2;
  transition: all .3s;
  background-color: rgb(255, 255, 255);
  opacity: 0.929;
  flex: 1;
  margin:15px;
  text-align: center;
}
.statistics-box .col-12{
  padding: 0;
}
.statistics-box span{
  display: block;
  font-family: "Open Sans", sans-serif;
  color: rgb(58, 58, 58);
  font-size:1rem;
}
.statistics-box img{
  width: 70px;
  height: 100px;
  margin: 0 auto;
}
.statistics-box span.number{
  font-weight: bold;
  font-size: 3.2rem;
  margin-top: 5px;
}
/*
.statistics-box:first-child img,
.statistics-box:last-child img{
  position: relative;
  top: 14px;
}*/
@media(max-width: 767px){
  .statistics-box{
    padding: 20px;
    text-align: center;
  }
  .statistics-box img{
    float: none;
    margin-right: 0px;
  }
  /*
  .statistics-box:first-child span.number,
  .statistics-box:last-child span.number{
    margin-top:29px;
  }*/
}

.examples_apart{
  background-image: url('../img/ornekdaire.jpg');
  background-position: center;
  background-size: cover;
  height: 355px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px){
	.examples_apart{
		height: 250px;
	}
}
/*
.examples_apart:before{
  content: "";
  background-color: rgba(41, 41, 41, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
*/
.examples_apart .apart-img{
  position: relative;
  top: 70px;
  left: 150px;
  z-index: 5;
}
.examples_apart .apart-icon{
  position: absolute;
  z-index: 10;
  width: 130px;
  top: 420px;
}
@media(max-width: 767px){
	.examples_apart .apart-img{
		top: 70px;
		left: 15px;
		width: 270px;
	}
	.examples_apart .apart-icon{
		width: 87px;
		top: 260px;
		left: 183px;
		transform: rotate(90deg);
	}
}
.examples_apart a{
      font-family: "Open Sans", sans-serif;
    font-size: 17px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 80%;
    padding: 15px 20px;
    z-index: 2;
    transition: all .3s;
    border: 1px solid #FFFFFF;
    text-transform: uppercase;
    width: 200px;
    text-align: center;
}
.examples_apart a span{
  position: relative;
  left: 0;
  transition: all .3s;
}
@media(max-width: 767px){
	.examples_apart a{
		left: inherit;
    bottom: 15px;
    right: 20px;
    /* margin: 0px auto; */
    padding: 10px 20px;
	}
}
.examples_apart a:hover{
  border-color: rgb(26,26,24);
}
.examples_apart a:hover span{
  left: 15px;
}
/*
.examples_apart:after{
content: "";
background-color: rgba(255, 156, 0, 0.3);
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 2;
}
*/




.projects-page{
  padding-right: 95px;
  padding-top: 230px;
}
@media(max-width: 767px){
	.projects-page{
		padding-right: 45px;
		padding-top: 135px;
	}
	.projects-page .content-wrap section,
	.projects-page > .container{
		padding: 0px;
	}
}
.projects-page .tabs nav li.tab-current a:before,
.projects-page .tabs nav li.tab-current a:after{
  content: initial;
}
.projects-page .tabs nav ul{
  display: inline-flex;
}
.projects-page .tabs nav ul li{
  margin:15px;
}
@media(max-width: 767px){
	.projects-page .tabs nav ul li{
		margin:5px;
		flex: inherit;
    display: block;
    width: 100%;
	}
	.projects-page .tabs nav{
		margin-bottom: 15px;
	}
}
.projects-page .tabs nav a{
  border:none;
  text-decoration: none;
  outline: none;
  background-color: #1a1a18;
  padding: 10px 18px;
  line-height: 1.5;
  border-radius: 45px;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #FFFFFF;
}
.projects-page .tabs nav a span{
  font-size: 0.8rem;
}
.projects-page .tabs nav ul li.tab-current a{
  background-color: rgb(200, 14, 32);
  color: #FFFFFF;
}
/*
.projects-page .tabs nav ul li a:hover{
  background-color: #121211;
}
*/
.project-list{
  min-height: 500px;
}
#gallery .ccm-layout-column-wrapper div{
  width: 100%!important;
  margin:0px;
}
@media(max-width: 767px){
  .projects-page .tabs nav a{
    display: block;
    width: 100%;
  }
  #gallery .wh-ps.fluid-grid .wh-item,
  #gallery .wh-ps.fluid-grid[class*=col-] .wh-item{
    width: 50%;
    padding-bottom: 50%;
  }
}




.project-box article{
  position: relative;
}
.project-box article a{
  color: #FFFFFF;
}
.project-box  figure figcaption,
.project-box  figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
  background-color: rgba(0,0,0,0.7);
}
.project-box figure {
  position: relative;
  overflow: hidden;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.project-box figure img{
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05,1.05,1);
  transform: scale3d(1.05,1.05,1);
}
.project-box figure figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
  transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}
.project-box figure p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 3em;
  padding: 0 1em;
  max-width: 150px;
  border-right: 4px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.project-box figure h2 {
  text-align: left;
}
.project-box  figure:hover figcaption,
.project-box  figure:hover figcaption > a{
	background-color: transparent;
}
.project-box figure:hover img {
  opacity: 0.6;
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}
.project-box figure:hover figcaption::before {
  -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
  transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
}
.project-box figure:hover p {
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/*
.project-box figure {
  position: relative;
  overflow: hidden;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.project-box figure img{
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.project-box figure figcaption {
  padding: 3em;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
.project-box figure figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: '';
}
.project-box figure h2 {
  margin: 17% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
  text-shadow: 0px 3px 13px rgba(34, 35, 35, 0.9);
  font-family: "Open Sans", sans-serif;
}
.project-box figure figcaption::before{
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.project-box figure:hover h2 {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.project-box figure:hover figcaption::before,
.project-box figure:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.project-box figure:hover figcaption {
  background-color: rgba(58,52,42,0);
}
.project-box figure:hover img {
  opacity: 0.7;
}
.project-box figure:hover .hvr-pulse-grow,
.project-box figure:focus .hvr-pulse-grow,
.project-box figure .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
*/





.project-detail-page .content-wrap {
  /*padding-bottom: 80px;*/
  height: 100vh;
  overflow-y: auto;
}
.project-detail-page .content-wrap section{
  max-width: 100%;
  padding:0px;
  background-color: #e9e9e9;
}
.project-detail-page .content-wrap section .owl-carousel img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100vh;
}
@media(max-width: 767px){
	.project-detail-page .content-wrap {
    /*padding-bottom: 80px;*/
    height: 100%;
  }
  /*
	.project-detail-page .content-wrap section .owl-carousel img{
		height: 100%;
	},*/
}
.project-detail-page .tabs nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.project-detail-page .tabs nav ul{
  max-width: 100%;
}
@media(min-width: 768px){
	.project-detail-page .tabs nav ul{
	  width: calc(100% - 140px);
	  margin: initial;
	  margin-top:0px;
	  margin-bottom: 0px;
	}
}
.project-detail-page .tabs nav a,
.project-detail-page .tabs nav li.tab-current a:before,
.project-detail-page .tabs nav li.tab-current a:after{
  border:none;
}
.project-detail-page .tabs nav li{
  background-color: rgb(255,255,255);
  border-left: 1px solid #e5e2e2;
}
.project-detail-page .tabs nav li:first-child{
  border:none;
}
.project-detail-page .tabs nav a{
  text-decoration:  none;
  outline: none;
  color: #1a1a18;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  transition: all .3s;
  background-color: #FFFFFF;
  border-top: 1px solid #e5e2e2;
}

.project-detail-page .tabs nav a span{
  font-size: 0.9rem;
  position: relative;
  top: -4px;
}
.project-detail-page .tabs nav a i{
  position: relative;
  font-size: 23px;
  top: 4px;
}

@media(max-width: 767px){

	.project-detail-page .tabs nav a{
		padding: 11px;
	}
	.project-detail-page .tabs nav a span{
		display: block;
		white-space: normal;
		line-height: 1.5;
		font-size: .8rem;
		display: none;
	}
	.project-detail-page .tabs nav a i{
		text-align: center;
		left: 0;
		right: 0;
		top:7px;
		display: block;
		margin-bottom: 15px;
	}
}
.project-detail-page .tabs nav li.tab-current{
  border-left-color: rgb(200, 14, 32);
}
.project-detail-page .tabs nav li.tab-current a{
  background-color: rgb(200, 14, 32);
  color: #FFFFFF;
  border-top-color: rgb(200, 14, 32);
  height: 100%;
}
@media(max-width: 767px){
	.project-detail-page .tabs nav li.tab-current a{
		height: 100%;
	}
}
.project-detail-page section.content-current,
.project-detail-page .c5h-video-pro-responsive,
.project-detail-page .fluid-width-video-wrapper,
.project-detail-page .fluid-width-video-wrapper iframe{
  height: 100%;
}
.project-detail-page .fluid-width-video-wrapper{
  padding-top: 0 !important;
}
#project-about,
#transport,
#gallery{
	padding: 90px 15px;
}
.project-about-left picture{
	display: block;
	width: 100%;
	height: calc(100vh - 185px);
	overflow: hidden;
}
.project-about-left picture img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.project-about-right .box-desc{
	background-color: rgba(200, 14, 32, 0.87);
	display: block;
	padding: 15px;
}
@media(min-width: 768px){
	.project-about-right .box-desc{
		position: absolute;
	  right: -75px;
    height: calc(100% - 35px);
	  top: 18px;
	  width: 360px;
	}
}
@media(max-width: 767px){
	.project-about-left picture{
		height: auto;
	}
	.project-about-right .box-desc{
		position: relative;
	    right: 0;
	    /* height: 435px; */
	    top: -100px;
	    width: 95%;
	    margin: 0px auto;
	    min-height: 120px;
	}
}

.project-about-right .box-desc p,
.project-about-right .box-desc a
.project-about-right .box-desc li,
.project-about-right .box-desc h5,
.project-about-right .box-desc h4,
.project-about-right .box-desc h6{
	font-family: "Open Sans", sans-serif;
    color: rgb(255,255,255)!important;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
    padding: 0px;
    font-weight: 500;
}


.project-detail-page .owl-carousel,
.project-detail-page .owl-wrapper-outer,
.project-detail-page .owl-wrapper,
.project-detail-page .whcr-item,
.project-detail-page .owl-item,
.project-detail-page img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.project-detail-page .whcr-item-description{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  color: #FFFFFF;
  text-align: left;
  right: 25px;
  font-size: 2rem;
  width: 500px;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.57);
  font-family: "Stem-Bold", sans-serif;
  text-transform: uppercase;
}
@media(max-width: 767px){
	.project-detail-page .whcr-item-description{
		text-align: right;
		right: 15px;
		font-size: 1.2rem;
		width: auto;
	}
}
.project-detail-page .owl-pagination{
  display: none;
}
.return-link,
.get-information{
  position: absolute;
  background-color: #c80e20;
  padding: 20px 27px;
  text-decoration: none;
  outline: none;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all .3s;
}
.get-information{
	left: initial;
  	right:0;
  	color: #FFF;
  	text-decoration: none;
  	text-transform: uppercase;
  	padding: 29px 27px;
  	bottom: 0px;
  	top: initial;
  	position: fixed;
  	z-index: 11;
}
.return-link i,
.get-information i{
  font-weight: 900;
  font-size: 35px;
  color: #FFF;
}
.get-information i{
  margin-right: 10px;
  position: relative;
  top: 3px;
  font-size: 25px;
}
.return-link:hover,
.get-information:hover{
  background-color: #FFFFFF;
  text-decoration: none;
  color: #000;
}
.return-link:hover i,
.get-information:hover i{
  color: #000;
}
@media(max-width: 767px){
	.return-link,
	.get-information{
		padding: 10px 20px;
    	position: fixed;
	}
	.get-information{
		bottom: 61px;
    	top: inherit;
    	left: 0;
    	text-align: center;
    	border-bottom: 1px solid #880000;
	}
	.return-link i,
	.get-information i{
		font-size: 25px;
	}
}








.slider .owl-next:before,
.slider .owl-prev:before,
.project-detail-page .owl-next:before,
.project-detail-page .owl-prev:before{
  content: url(../img/icon/chevron.svg);
  display: block;
  position: relative;
}
.slider .owl-next:before,
.project-detail-page .owl-next:before{
  right: -3px;
  top: 3px;
}
.slider .owl-prev:before,
.project-detail-page .owl-prev:before {
  transform: rotate(-180deg);
  left: -3px;
  top: -4px;
}
.slider .owl-theme .owl-controls .owl-buttons div,
.project-detail-page .owl-theme .owl-controls .owl-buttons div{
  background: #cf6f55;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  opacity: 1;
  filter: Alpha(Opacity=100);
  padding-top: 15px;
  transition: all. 3s;
}
.slider .owl-theme .owl-controls .owl-buttons div:hover,
.project-detail-page  .owl-theme .owl-controls .owl-buttons div:hover{
  opacity: 0.8 !important;
  filter: Alpha(Opacity=80);
}
.project-detail-page .owl-buttons{
  position: absolute;
  bottom: 25px;
  left: 25px;
}
@media(max-width: 767px){
	.project-detail-page .owl-buttons{
		bottom: 115px;
		left: 15px;
	}
}
.project-detail-page .owl-theme .owl-controls{
  padding: 0px;
}




.campaigns-page{
  padding-right: 95px;
  padding-top: 230px;
}
@media(max-width: 767px){
	.campaigns-page{
		padding-right: 0px;
	}
}
.pageHead, .pageHeadBg {
  max-height: 350px;
  height: 350px;
}
.pageHead {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  position: relative;
  padding-right: 95px;
  margin-top: 95px;
}
@media(max-width: 767px){
  .pageHead{
    margin-top: 60px;
  }
  .pageHead, .pageHeadBg{
    max-height: 250px;
    height: 250px;
  }
}
.pageHeadText {
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  color: #fff;
  text-align: left;
  transform: translateY(-50%);
  padding-right: 95px;
  left: 0;
  right: 0;
  text-align: center;
}
@media(max-width: 768px){
  .pageHeadText {
    font-size: 3rem;
    line-height: normal;
  }
}
@media(max-width: 767px){
	.pageHeadText{
		padding-right: 0px;
	}
}

.sub-page-content {
  line-height: 2;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 300px;
  padding-right: 95px;
}
.sub-page-content img{
  width: 100%;
  height: auto;
}
@media(max-width: 767px){
	.sub-page-content{
		padding-right: 45px;
	}
}












body.full-page .footer,
body.sub-full-page .footer{
  display: none;
}

.footer{
  background-color: #1a1a18;
  padding-top: 30px;
}
.footer-top{
  position: relative;
  z-index: 1;
}
.footer-top h2{
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}
@media(max-width: 767px){
	.footer-top h2{
		font-size: 25px;
	}
}
.footer-top h2:after{
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 50%;
  background-color: #757575;
  margin: 0px auto;
  left: 0;
  right: 0;
  bottom: -10px;
}
.footer address ul{
  list-style-type: none;
  padding: 0px;
  font-family: "Robot", sans-serif;
  font-size: 1.1rem;
}
.footer address ul li{
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.footer address ul li a,
.footer address ul li span{
  color: rgb(255, 255, 255);
  text-decoration: none;
  outline: none;
  width: calc(100% - 50px);
}
@media(max-width: 767px){
	.footer address ul li a,
	.footer address ul li span{
		font-size: .7rem;
	}
}
.footer address ul li i{
  background-color: #c80e21;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  top: -8px;
}
@media(max-width: 767px){
	.footer address ul li i{
		width: 30px;
		height: 30px;
		top: 0px;
	}
}
.footer address.text-left ul li i{
  margin-right: 10px;
  float: left;
}
.footer address.text-right ul li i{
  margin-left: 10px;
  float: right;
}
.footer-top img{
  width: 160px;
  display: block;
  margin:0px auto;
}
@media(max-width: 767px){
	.footer-top img{
		display: none;
	}
	.footer-top .text-right{
		position: absolute;
		right: 15px;
		top: -190px;
	}
}


.footer-bottom{
  position: relative;
  padding-top: 25px;
  padding-bottom: 15px;
}
.footer-bottom:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(18, 18, 17);
  height: 200px;
}
.footer-bottom:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 75%;
  margin:0px auto;
  background-color: #757575;
}
.footer_social ul{
  padding: 0px;
  list-style-type: none;
  text-align: center;
}
@media(max-width: 767px){
	.footer_social ul{
		text-align: left;
	}
}
.footer_social ul li{
  display: inline-block;
}
.footer_social ul li a{
  color: #c80e21;
  transition: all .3s;
  margin:10px;
}
.footer_social ul li a:hover,
.footer_social ul li a:focus{
  color: #FFFFFF;
}
.footer_social ul li a i{
  font-size: 22px;
}
.copyright{
  text-align: right;
}
.copyright a,
.copyright span,
.footer .links a{
  font-family: "Robot", sans-serif;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-decoration: none;
  outline: none;
  font-weight: bold;
}
@media(max-width: 767px){
	.links{
		display: none;
	}
	.copyright{
		text-align: right;
	}
	.copyright a,
	.copyright span,
	.footer .links a{
		font-size: .9rem;
	}
}



@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("./Flaticon.svg#Flaticon") format("svg");
  }
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 30px;
  font-style: normal;
  color: #121211;
}
@media(max-width: 767px){
	[class^="flaticon-"]:before,
	[class*=" flaticon-"]:before,
	[class^="flaticon-"]:after,
	[class*=" flaticon-"]:after{
		font-size: 20px;
	}
}
.flaticon-call:before {
  content: "\f100";
}
.flaticon-smartphone:before {
  content: "\f101";
}
.flaticon-placeholder:before {
  content: "\f102";
}
.flaticon-mail:before {
  content: "\f103";
}
.flaticon-email:before {
  content: "\f104";
}
.flaticon-worldwide:before {
  content: "\f105";
}

@media (min-width: 1200px){
  .section-wrapper .container {
    max-width: 1250px;
  }
}


.socialbox{
	width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  z-index: 9;
  display: block;
  margin: 0 auto;
  left: 15px;
  cursor: pointer;
}
.socialbox img.fa-icon{
  position: absolute;
  z-index: 100;
  right: 15px;
  height: 27px;
  width: 27px;
  top: 15px;
}
@media (max-width: 767px){
  .socialbox {
  	left: -10px;
  }
}
.socialbox > i{
	font-size: 27px;
  color: rgb(255,255,255);
   position: relative;
   top: 15px;
}
.a{
	width:45px!important;
	height:45px!important;
	border-radius:50%;
	background:#c80e20;
	text-align:center;
	float:left;
	line-height:45px;
	position:absolute;
	top:50%;
	right:50%;
	transform:translate(-50%,-50%);
	transition:all 1s ease;
	opacity:0;
	font-size: 21px;
  padding: 12px!important;
  color: rgb(255,255,255)!important;
}
.a i{
  font-size: 20px;
}
.a1.active {
	right:55px;
	opacity:1;
}
.b1.active{
	right:65px;
	opacity:1;
}
.c1.active{
	right:115px;
	opacity:1;
}
.d1.active{
	right:165px;
	opacity:1;
}
.a:hover,
.a:focus{
  background-color: #1a1a18;
}


@keyframes moveon{
	from{
		transform:rotate(360deg);
	}
	to{
		transform:rotate(0deg);
	}
}
@keyframes moveon2{
	from{
		transform:rotate(0deg);
	}
	to{
		transform:rotate(540deg);
	}
}




.subpage-content h1,
.subpage-content h2,
.subpage-content h3,
.subpage-content h4,
.subpage-content h5,
.subpage-content h6{
  font-family: "Playfair Display", sans-serif;
  color: #101a2f;
}

.contact a{
  display: block;
  color: #1a1a18;
  text-decoration: none;
  transition: all .3s ease-in-out;
  position: relative;
  left: 0px;
}
.contact a:hover,
.contact a:focus{
  color: #c80e20;
  left: 5px;
}
.contact p{
  margin-bottom: 0px;
  font-family: "Open Sans", sans-serif;
}
.contact h3{
  margin-bottom: 50px;
  border-top: 1px solid #000;
  padding-top: 25px;
  font-weight: bold;
}
.sub-page-content .control-label{
  width: 120px;
  float: left;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
.sub-page-content .form-group{
  display: block;
  width: 100%;
  float: left;
}
.sub-page-content .formify-form input[type="text"],
.sub-page-content .formify-form input[type="email"],
.sub-page-content .formify-form input[type="tel"],
.sub-page-content .formify-form input[type="number"],
.sub-page-content .formify-form input[type="search"],
.sub-page-content .formify-form input[type="url"],
.sub-page-content .formify-form input[type="password"],
.sub-page-content .formify-form textarea,
.sub-page-content input[type="text"],
.sub-page-content input[type="email"],
.sub-page-content input[type="tel"],
.sub-page-content input[type="search"],
.sub-page-content input[type="url"],
.sub-page-content input[type="password"],
.sub-page-content .ui-autocomplete-input,
.sub-page-content textarea,
.sub-page-content .uneditable-input{
  width:calc(100% - 120px);
  background-color:#ffffff;
  border-color:#1a1a18;
  border-radius:0px;
  transition:all 0.3s;
  box-shadow:none;
  -moz-box-shadow:none;
  -webkit-box-shadow:none;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
}
.sub-page-content .field-radios .radio{
  float: left;
  margin-right: 15px;
}
.sub-page-content .formify-form input[type="text"]:focus,
.sub-page-content .formify-form input[type="email"]:focus,
.sub-page-content .formify-form input[type="tel"]:focus,
.sub-page-content .formify-form input[type="number"]:focus,
.sub-page-content .formify-form input[type="search"]:focus,
.sub-page-content .formify-form input[type="url"]:focus,
.sub-page-content .formify-form input[type="password"]:focus,
.sub-page-content .formify-form textarea:focus,
.sub-page-content input[type="text"]:focus,
.sub-page-content input[type="email"]:focus,
.sub-page-content input[type="tel"]:focus,
.sub-page-content input[type="search"]:focus,
.sub-page-content input[type="url"]:focus,
.sub-page-content input[type="password"]:focus,
.sub-page-content .ui-autocomplete-input:focus,
.sub-page-content .uneditable-input:focus,
.sub-page-content textarea:focus,
.sub-page-content .formify-form input[type="text"]:hover,
.sub-page-content .formify-form input[type="email"]:hover,
.sub-page-content .formify-form input[type="tel"]:hover,
.sub-page-content .formify-form input[type="number"]:hover,
.sub-page-content .formify-form input[type="search"]:hover,
.sub-page-content .formify-form input[type="url"]:hover,
.sub-page-content .formify-form input[type="password"]:hover,
.sub-page-content .formify-form textarea:hover,
.sub-page-content input[type="text"]:hover,
.sub-page-content input[type="email"]:hover,
.sub-page-content input[type="tel"]:hover,
.sub-page-content input[type="search"]:hover,
.sub-page-content input[type="url"]:hover,
.sub-page-content input[type="password"]:hover,
.sub-page-content .ui-autocomplete-input:hover,
.sub-page-content .uneditable-input:hover,
.sub-page-content textarea:hover
{
  background-color:transparent;
  border-color:#c80e20;
  box-shadow:none;
}
.sub-page-content .form-actions{
  text-align:center;
  margin-top:25px;
}
.sub-page-content .formify-form input[type="submit"],
.sub-page-content input[type="submit"],
.sub-page-content button[type="submit"]{
  background: #c80e20;
    padding: 10px;
    width: 200px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Playfair Display", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all .3s;
    border: 2px solid #c80e20;
    border-radius: 0px;
}
.sub-page-content .formify-form input[type="submit"]:hover,
.sub-page-content .formify-form input[type="submit"]:focus,
.sub-page-content input[type="submit"]:hover,
.sub-page-content input[type="submit"]:focus,
.sub-page-content input[type="submit"]:active,
.sub-page-content button[type="submit"]:hover,
.sub-page-content button[type="submit"]:focus,
.sub-page-content button[type="submit"]:active{
  color: #101a2f;
    background: #FFFFFF;
    text-decoration: none;
    box-shadow: none;
}
.sub-page-content .formify-field-input{
  text-align:center;
}
.sub-page-content span.text-muted{
  display:none;
}
.sub-page-content .form-actions{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 25px;
}



.pswp__top-bar p {
    margin: inherit!important;
    padding: inherit!important;
    color: inherit!important;
    font-weight: inherit!important;
    font-size: inherit!important;
    line-height: inherit!important;
}


.order-btn-show {
  color: #fff;
  font-size: 1.1rem;
  position: fixed;
  z-index: 20;
  display: none;
  text-align: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  bottom: 15px;
  right: 15px;
  outline: none !important;
  border: none;
  background: transparent;
  line-height: 1.2;
  padding-top: 45px;
  cursor: pointer;
  text-transform: uppercase;
  display: block;
}
/*
body.fixed-header .order-btn-show{
  display: block;
}*/
.order-btn-show:hover,
.order-btn-show:focus{
  text-decoration: none;
  color: #FFF !important;
}
.order-btn-show.display{
  display: block;
}
.order-btn-show::before{
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-color: #516ea9;
  border-radius: 50%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-animation: beatbtn 0.9s ease-in-out infinite;
  animation: beatbtn 0.9s ease-in-out infinite;
}
.order-btn-show img{
   	height: 145px;
    position: absolute;
    left: -2px;
    top: -2px;
}
@media (max-width: 768px)
{
	.order-btn-show{
  		width: 100px;
  		height: 100px;
	}
	.order-btn-show img{
	   	height: 105px;
	}
	/*
  .order-btn-show{
    height: 40px;
    border-radius: 0px !important;
    left: 0px;
    right: 0px;
    width: 100%;
    bottom: 0px;
    padding-top: 10px;
  }
  .order-btn-show::before{
    border-radius: 0px !important;
    -webkit-animation: initial !important;
    animation: initial !important;
  }
  */
}

@keyframes beatbtn {
  0% {
    background-color: rgba(81, 110, 169, 1);
    transform-origin: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: rgba(81, 110, 169, .8);
    transform-origin: center;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}


::-webkit-scrollbar{
  width:4px;
}
@media (max-width:768px){
  ::-webkit-scrollbar{
    width:2px;
  }
}
::-webkit-scrollbar-track{
  background-color:#f9f9f9;
}
::-webkit-scrollbar-thumb{
  background-color:#1a1a18;
}
::-webkit-scrollbar-thumb:hover{
  background-color:#c80e20;
}
