a:hover {
    text-decoration: none;
}
.product-box img{
	text-align: center;
}
.product-box h3{
font-size: 18px;
color: #606060;
}
#home-hero{
min-height: 100vh;
background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
        url('img/main1.jpg');
}
a.product-box {
    box-shadow: 0 25px 70px rgba(0,0,0,.07);
    display: block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
    color: #000;
    background: #fff;
}
a.product-box img{
	margin-bottom: 10px;
}
#home-hero h2 {
    font-size: 50px;
    line-height: 1em;
    font-weight: 700;
    color: #e93f33;
    padding-bottom: 20px;
}
#home-hero p {
    font-weight: 400;
    line-height: 1.9;
    font-size: 16px;
    color: #828282;
}
.btn-secondary {
    color: #fff;
    background-color: #ee7f33;
    border: 0;
    padding: 15px 30px;
}
.btn-secondary:hover{
    color: #fff;
    background-color: #e93f33;
    border: 0;
    padding: 15px 30px;
}
.header-section img{
	padding-top: 10px;
}
#home-hero .row.align-items-center {
    height: 50vh;
}
#image-overlay{
position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image:url('img/image-overlay1.png');
       background-size: contain;
    background-repeat: no-repeat;
}
.listing-block{
	padding-top: 30px;
}
.listing-block .list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

.listing-block .list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.listing-block .list-inline>li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width:40px;
    height:40px;
    font-size: 20px;
}

.listing-block .list-inline a.icoFacebook:hover {
    background-color: #3B5998;
}
.listing-block .list-inline a.icotwitter:hover {
    background-color: #0084b4;
}

.listing-block .list-inline a.icogoogle-plus:hover {
    background-color:#dd4b39;
}

.listing-block .list-inline a.icolinkedin:hover {
    background-color:#0077B5;
}

.listing-block .list-inline>li a:hover i, .triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
 
.listing-block .list-inline li i {
    margin: 0;
    line-height:40px;
    text-align: center;
}
 
.listing-block .list-inline .social-circle i {
    color: #fff;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.listing-block .list-inline a {
	color:#fff;
    background-color:#818182;
}



.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #e93f33; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ba1f24;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #e93f33;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #e93f33;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1000px) { 
#image-overlay {
    background: #fff;
}
#home-hero .row.align-items-center {
    height: auto;
    margin: 30px 0;
}
#home-hero {
background: #fff;
}
a.product-box {

    margin-bottom: 20px;
    min-height: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.header-section img {
    max-width: 100px;
}
.video-play-button{
	display: none;
}
}
