/* Reset Code */
/*============================================================== 
   inner banner
==============================================================*/
.inner-banner {
  background: url("../images/inner-banner/inner-banner-about.jpg") no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
}


/* //inner banner */

/*=============================================================
about 
==============================================================*/
.about-content {
  padding: 3rem 1.5rem;
}
@media (max-width: 600px) {
 .about-content {
  padding: 2rem 15px;
}
}
.about p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--font-color);
  letter-spacing: .2px;
}
@media (max-width: 600px) {
 .about p {
  font-size: 16px;
  line-height: 1.2;
}
}
.about img {
  width: auto;
  max-width: 100%;
  height: auto;
  box-shadow: 0px 17px 26px -16px rgba(0, 0, 0, 0.41);
}

/*=================================================
   about block
===================================================*/

.about .img-border {
  z-index: 1;
}

.about .img-border:after {
  content: '';
  position: absolute;
  border: 8px solid var(--border-color-light);
  right: -25px;
  left: 25px;
  bottom: 25px;
  top: -25px;
  z-index: -1;
  border-radius: var(--border-radius);
}

.about .middle-section h2 {
  color: var(--heading-color);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
}

.about span.video-play-icon {
  background: #fff;
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
}

.about img.video-popup-image {
  border-radius: var(--border-radius);
}

.about span.video-play-icon span {
  color: var(--primary-color);
}

.about span.video-play-icon:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}

.about span.fa.fa-play {
  line-height: 55px;
}

.about .play-view {
  left: 0;
  right: 0;
  top: calc(50% - 40px);
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
  }

  100% {
    box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
  }

  100% {
    box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
  }
}

@media (max-width: 1080px) {
  .about .history-info {
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .about .img-border {
    display: inline-block;
  }
}

/* //about block */