
/* 12.01 About CSS */
.about-content {
  position: relative;
  z-index: 99;
  max-width: 420px;
}

.about-content.max-width-470 {
  max-width: 470px;
}

.about-content.max-width-470 p {
  font-size: 18px;
  line-height: 1.67;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .about-content {
    max-width: 100%;
  }
}

.about-image .about-image-one{
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.about-image-two{
  z-index: 10;
}

.about-image .about-image-one .thumbnail {
  position: relative;
}

.about-image .about-image-one img {
  border-radius: 5px;
}


.about-image .about-image-one .thumbnail:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-image-one:hover img {
  -webkit-transition: all 2s ease 0s;
  -o-transition: all 2s ease 0s;
  transition: all 2s ease 0s;

  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}






.about-image .about-image-two {
  position: absolute;
  top: -90px;
  right: -73px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-image .about-image-two {
    right: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .about-image-two {
    right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image .about-image-two {
    right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .about-image .about-image-two {
    right: 0px;
  }
}

.about-image .about-image-two img {
  border-radius: 5px;
}