html{
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Cairo', sans-serif;
}
body{
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -175px;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -o-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
.loader .dot {
  z-index: 3;
  position: relative;
  float: left;
  width: 50px;
  height: 50px;
  text-align: center;
  content: '';
  color: #666;
  font-size: 20px;
  transform: scale(0.5, 0.5);
  opacity: 0;
  animation: loader 3s infinite linear;
}
.loader .dot:nth-of-type(1) {
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  -o-animation-delay: 0.15s;
  -ms-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.loader .dot:nth-of-type(2) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader .dot:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
  -moz-animation-delay: 0.45s;
  -o-animation-delay: 0.45s;
  -ms-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
.loader .dot:nth-of-type(4) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader .dot:nth-of-type(5) {
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.loader .dot:nth-of-type(6) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.loader .dot:nth-of-type(7) {
  -webkit-animation-delay: 1.05s;
  -moz-animation-delay: 1.05s;
  -o-animation-delay: 1.05s;
  -ms-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.loader .cogs {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.loader .cogs .cog {
  -webkit-animation: rotate1 2s infinite;
  -moz-animation: rotate1 2s infinite;
  -o-animation: rotate1 2s infinite;
  -ms-animation: rotate1 2s infinite;
  animation: rotate1 2s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #eee;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: 125px;
}
.loader .cogs .cog.cog0 {
  -webkit-animation: rotate2 2s infinite;
  -moz-animation: rotate2 2s infinite;
  -o-animation: rotate2 2s infinite;
  -ms-animation: rotate2 2s infinite;
  animation: rotate2 2s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  -o-transform: rotate(22.5deg);
  -ms-transform: rotate(22.5deg);
  transform: rotate(22.5deg);
  top: -41px;
  left: 206px;
}
.loader .cogs .cog.cog1 {
  -webkit-animation: rotate2 2s infinite;
  -moz-animation: rotate2 2s infinite;
  -o-animation: rotate2 2s infinite;
  -ms-animation: rotate2 2s infinite;
  animation: rotate2 2s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  -o-transform: rotate(22.5deg);
  -ms-transform: rotate(22.5deg);
  transform: rotate(22.5deg);
  top: -41px;
  left: 44px;
}
.loader .cogs .cog:after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
.loader .cogs .cog .bar {
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: 39%;
  right: 39%;
  background: #eee;
}
.loader .cogs .cog .bar:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.loader .cogs .cog .bar:nth-of-type(3) {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.loader .cogs .cog .bar:nth-of-type(4) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@-moz-keyframes loader {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
}
@-o-keyframes loader {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
}
@keyframes loader {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
}
@-moz-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@-o-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@-moz-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(202.5deg);
    -moz-transform: rotate(202.5deg);
    -o-transform: rotate(202.5deg);
    -ms-transform: rotate(202.5deg);
    transform: rotate(202.5deg);
  }
  100% {
    -webkit-transform: rotate(22.5deg);
    -moz-transform: rotate(22.5deg);
    -o-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
  }
}
@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(202.5deg);
    -moz-transform: rotate(202.5deg);
    -o-transform: rotate(202.5deg);
    -ms-transform: rotate(202.5deg);
    transform: rotate(202.5deg);
  }
  100% {
    -webkit-transform: rotate(22.5deg);
    -moz-transform: rotate(22.5deg);
    -o-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
  }
}
@-o-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(202.5deg);
    -moz-transform: rotate(202.5deg);
    -o-transform: rotate(202.5deg);
    -ms-transform: rotate(202.5deg);
    transform: rotate(202.5deg);
  }
  100% {
    -webkit-transform: rotate(22.5deg);
    -moz-transform: rotate(22.5deg);
    -o-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
  }
}
@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(202.5deg);
    -moz-transform: rotate(202.5deg);
    -o-transform: rotate(202.5deg);
    -ms-transform: rotate(202.5deg);
    transform: rotate(202.5deg);
  }
  100% {
    -webkit-transform: rotate(22.5deg);
    -moz-transform: rotate(22.5deg);
    -o-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
  }
}
#pre-loader{
  width: 100%;
  height: 100%;
  background: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999999;
}
.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}
header.main{
  position:fixed;
  z-index: 9999;
  text-align:center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 8px 0;
  transition: all ease-in 200ms;
  background: rgba(0, 0, 0, 0.27);
}
.logo{
  width: 246px;
  transition: all 200ms ease-in;
  margin: auto;
  display: block;
  top: 50%;
  position: relative;
  /* -webkit-animation: fa-spin 9s infinite linear; */
  /* animation: fa-spin 9s infinite linear; */
  margin-top: -120px;
}
header.main .nav{
  display: inline-block;
}
header.main .nav-1{
  margin-right:15px;
}
header.main .nav-2{
  margin-left:15px;
}
header.main .nav>li{
  display: inline-block;
}
header.main .nav>li>a{
  font-size: 20px;
  background: transparent;
  color: #FFF;
  font-weight: 600;
  text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.87);
  padding: 10px 18px;
}
.fh{
  min-height:100%;
}
.fh:after,.fh:before{
  content:"";
  clear:both;
  display:table;
}
.gallery-list{
  float:left;
  width:100%;
  display:block;
  list-style:none;
  padding:0;
  margin:0;
  overflow: hidden;
}
.np{
  padding:0 !important;
}
.rel{
  position:relative;
}
.gallery-list>li{
  display:block;
  color: #fff;
  position: relative;
  overflow: visible;
  transition:all ease-in 300ms;
}
.gallery-list>li:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
/*   background: -webkit-linear-gradient(top, rgba(34, 34, 33, 0) 0%, rgba(34, 34, 33, 0) 25%, #222221 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222226', endColorstr='#222226', GradientType=0);
  background: linear-gradient(to bottom, rgba(34, 34, 33, 0) 0%, rgba(34, 34, 33, 0) 25%, #222221 100%);
  -webkit-transition: 0.35s all ease;
  transition: 0.35s all ease; */
}
.gallery-list:hover>li:not(:hover):after {
  /* background: rgba(242, 70, 46, 0.34); */
}
.gallery-list>li>img{
  max-width:100%;
}
.gallery-list>li:hover{
  /* transform:scale(1.05); */
}
.gallery-list>li>.info{
 z-index: 1;
 position: absolute;
 left: 10%;
 bottom: 0;
 -webkit-transition: 0.35s all ease;
 transition: 0.35s all ease;
 line-height:25px;
}
.gallery-list>li:hover>.info{
  -webkit-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
  transform: translateY(-15%);
  line-height:28px;
}
.history-bg{
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  background-size: cover;
  background-position: center;
}
#gallery{
}
header.main.closed{
  background: rgba(255, 255, 255, 0.96);
  height: 65px;
  z-index: 999999999;
}
header.main.closed .logo{
  width: 47px;
  margin-top: -26px;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  margin-top: -28px;
}
.details{
  position:relative;
  margin-bottom: 31px;
  padding: 0 36px;
  font-size: 18px;
  line-height: 34px;
  text-shadow: 0px 2px 3px #FFF,0px -1px 7px #FFF,0px 0px 12px #FFF,0px 0px 18px #FFF,0px 0px 12px #FFF,0px 2px 3px #FFF,0px -1px 7px #FFF,0px 0px 12px #FFF,0px 0px 18px #FFF,0px 0px 12px #FFF;
}
#main-slider .carousel,#main-slider .carousel-inner,#main-slider .carousel-inner .item{
  height:100%;
}
#main-slider .carousel-inner .item{
  background-size:cover;
  background-position:center;
}
#history h1{
  margin-top: 111px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 52px;
  font-weight: 800;
  font-size: 50px;
}
#history h1:after{
  content:"";
  width:60px;
  height: 3px;
  display:block;
  position:absolute;
  left:50%;
  bottom: 3px;
  background: rgba(0, 0, 0, 0.76);
  transform: translateX(-50%);
  border-radius: 3px;
}
.cs{
  overflow: auto;
}
.history-holder{
  background: #f2462e;
  color:#FFF;
}
.title{
  margin-top: 78px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 52px;
  font-weight: 800;
  font-size: 50px;
}
.title:after{
  content:"";
  width:60px;
  height: 3px;
  display:block;
  position:absolute;
  left:50%;
  bottom: 3px;
  background: rgba(0, 0, 0, 0.76);
  transform: translateX(-50%);
  border-radius: 3px;
}
ul.services{
  padding:0;
  margin:0 0 0 35px;
  list-style:none;
}
ul.services>li{
  font-size:20px;
  position:relative;
  margin-bottom: 13px;
}
ul.services>li:before{
  content:"\f054";
  font-family:fontawesome;
  display: inline-block;
  width: 44px;
  position: relative;
  top: 2px;
  font-size: 23px;
  font-weight: 100;
  color: #f2462e;
}
.go-top{
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 46px;
  color: #fff;
  background: #f2462e;
  border-radius: 50%;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
  cursor: pointer;
}
#map{
  width: 100%;
  height: 446px;
}
#contact{
  padding: 15px 0;
  padding-top: 45px;
  background: #ffffff;
  color: #1e1e1e;
}
.add{
  padding-left:8%;
}
ul.contact-form{
  padding:0;
  margin:0;
  list-style:none;
}
ul.contact-form>li{
  padding:3px;
}
ul.contact-form>li>.form-control{
  background: transparent;
  color:#1e1e1e;
  border-radius: 1px;
  border: 1px solid #4c4c4c;
  padding: 8px 11px;
  font-size: 17px;
  height: initial;
  outline: 0;
  max-width: 100%;
}
ul.contact-form>li>.form-control:focus{
  box-shadow: 0px 0px 7px #4c4c4c;
}
ul.contact-form>li>.form-control::-webkit-input-placeholder ,.dd{ 
  color: #1e1e1e;
}
ul.contact-form>li>.form-control::-moz-placeholder { 
  color: #1e1e1e;
}
ul.contact-form>li>.form-control:-ms-input-placeholder {
  color: #1e1e1e;
}
ul.contact-form>li>.form-control:-moz-placeholder {
  color: #1e1e1e;
}
.btn-theme{
  color: #ffffff;
  background: #4c4c4c;
  border-radius: 1px;
  border: 1px solid aliceblue;
  padding: 8px 11px;
  font-size: 17px;
  height: initial;
  outline: 0;
  width:100%;
  font-weight: 600;
  transition: 300ms ease-in all;
  margin-bottom: 16px;
}
.btn-theme:hover,.btn-theme:focus{
  background: rgb(61, 61, 61);
  color:#FFF;
  border-color: #313131;
}
.add h3{
  font-weight:700;
  border-bottom: 2px solid #1e1e1e;
  padding-bottom:5px;
}
body .carousel-indicators{
  z-index:99999 ;
}
.c-name{
  color: rgb(30, 98, 163);
  text-transform:uppercase;
  /* transform: scaleX(0); */
  transition: 300ms all ease-in;
  padding: 11px 20px;
  position: relative;
  top: 50%;
  font-weight: 800;
  font-size: 28px;
  text-shadow: -1px -1px 0 #fff,       1px -1px 0 #fff,     -1px 1px 0 #fff,      1px 1px 0 #fff;
}
.closed .c-name{
  display:inline-block;
  vertical-align: top;
  transform: scaleX(1);
  font-weight: 800;
  font-size: 17px;
  top: 0;
  color: #1e62a3;
}
.down-btn{
  position:absolute;
  display:inline-block;
  left:0;
  right:0;
  z-index: 9;
  width: 55px;
  height: 55px;
  bottom: 15px;
  margin: auto;
  font-size: 51px;
  transition: all ease-in 200ms;
  opacity: 0.4;
  text-align: center;
  transform: translateX(-1.5px);
}
.down-btn:hover{
  opacity:0.8;
}
[disabled="true"]{
  cursor:pointer;
  pointer-events: none;
}
.zi{
  transform: scale(1.2);
  position: relative;
  z-index: 8 !important;
  margin-top: 42px;
  margin-bottom: 60px;
}
.grid-item img{
  position:relative;
  z-index:4;
}
.logo-holder{
  height:150px;
  margin-bottom: 15px;
}
.logo-holder img{
  max-height:150px;
  display: block;
  margin: auto;
}
.bg-carousel{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 991px){
  .bg-carousel{
    position: relative;
    width: inherit;
    left: 0;
    right: 0;
    margin-left: -15px;
    margin-right: -15px;
    z-index: 0;
    transform: translate(0);
    top: 0;
  }
  .zi{
    transform: scale(1);
  }
}