/* Before and After Custom CSS */

html {
  scroll-behavior: smooth;
}

.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.comparison-slider-wrapper .comparison-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border: 1px white solid;
  box-sizing: border-box;
  border-radius: 10px;
}
.comparison-slider-wrapper .comparison-slider > img {
  width: 100%;
  height: auto;
  display: block;
}
.comparison-slider-wrapper .comparison-slider .overlay {
  display: block;
  position: absolute;
  bottom: 5px;
  left: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
  box-sizing: border-box;
  color: #ddd;
  text-align: left;
}
.comparison-slider-wrapper .comparison-slider .overlay-before {
  display: block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
  box-sizing: border-box;
  color: #ddd;
  text-align: right;
}
.comparison-slider-wrapper .comparison-slider .divider .overlay {
  display: inline;
}
@media screen and (min-width: 767px) {
  .comparison-slider-wrapper .comparison-slider .overlay {
    display: block;
 }
}
.comparison-slider-wrapper .comparison-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.comparison-slider-wrapper .comparison-slider .resize > img {
  display: block;
}
.comparison-slider-wrapper .comparison-slider .resize .overlay {
  right: auto;
  left: 20px;
  text-align: left;
}
.comparison-slider-wrapper .comparison-slider .divider {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: rgba(256, 256, 256, 0.2);
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  cursor: ew-resize;
}
.comparison-slider-wrapper .comparison-slider .divider:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -9px;
  top: 50%;
  margin-top: -10px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -5px;
  top: 50%;
  margin-top: -6px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:before {
  width: 30px;
  height: 30px;
  left: -14px;
  margin-top: -15px;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:after {
  width: 20px;
  height: 20px;
  left: -9px;
  margin-top: -10px;
  background-color: #555;
}
.comparison-slider-wrapper .caption {
  position: relative;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12px;
  font-style: italic;
}

/* Team Image Custom CSS */

.team-img {
  max-width: 50%;
}

.footer-custom {
  padding: 30px 0px;
}

.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: -95px;
}

@media (max-width: 1000px) {
  .footer-image {
    margin-bottom: -135px;
  }
}

@media (max-width: 768px) {
  .footer-image {
    margin-bottom: -160px;
  }
}