
.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
  visibility: visible;
  opacity: 1;
}
.dandik,
.bamdik {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.dandik:hover,
.bamdik:hover {
  color: var(--white);
  background: var(--primary);
}
.dandik {
  right: -10px;
}
.bamdik {
  left: -10px;
}
.slider-dots ul {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider-dots ul li {
  width: 9px;
  height: 9px;
  margin: 0px 5px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  background: var(--primary);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.slider-dots ul li button {
  display: none;
}
.slider-dots ul li.slick-active {
  width: 25px;
  background: var(--primary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 575px) {
  .slider-dots ul {
    bottom: 10px;
  }
  .slider-dots ul li {
    margin: 0px 6px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .slider-dots ul {
    bottom: 20px;
  }
  .slider-dots ul li {
    margin: 0px 6px;
  }
}
body {
  background: var(--white);
}
.about-content h2 {
  margin-bottom: 25px;
}
.about-content p {
  margin-bottom: 40px;
}
.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-list li {
  padding-left: 30px;
  border-left: 1px solid var(--border);
}
.about-list li:first-child {
  border-left: 0px;
  padding-left: 0px;
}
.about-list li h3 {
  margin-bottom: 5px;
}
.about-list li h6 {
  font-weight: 400;
  color: var(--text);
  text-transform: capitalize;
}
.about-img {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-left: 50px;
}
.about-img img {
  width: 100%;
  border-radius: 8px;
}
.about-testimonial {
  background: url(../img/testimonial-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0px 70px;
}
.testi-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 30px;
}
.testi-img {
  margin-right: 80px;
  border-radius: 50%;
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
}
.testi-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 10px solid var(--white);
}
.testi-quote {
  width: 600px;
}
.testi-quote i {
  font-size: 50px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 30px;
}
.testi-quote p {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .testi-quote p {
  font-size: 19px !important;
  }
.testi-quote i {
  margin-bottom: 1px;
}
}
.testi-quote h4 {
  text-transform: capitalize;
  margin-bottom: 5px;
}
.testi-quote h6 {
  font-weight: 400;
  color: var(--text);
}
.about-choose {
  margin-bottom: 75px;
}
.choose-card {
  margin: 25px 15px;
}
.about-brand {
  background: var(--green-chalk);
  padding: 90px 0px 100px;
}
.brand-slider li {
  margin: 0px 10px;
  padding: 20px 0px;
  border-radius: 8px;
  background: var(--white);
}
.brand-slider li img {
  width: 100%;
}
.team-slider li {
  margin: 0px 12px;
}
.team-slider .dandik,
.team-slider .bamdik {
  top: 40%;
}
@media (max-width: 575px) {
  .about-list li {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .testi-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testi-img {
    margin-right: 0px;
  }
  .testi-quote {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .testi-img {
    margin-right: 50px;
  }
  .testi-quote {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .about-list {
    margin-bottom: 30px;
  }
  .about-img {
    margin-left: 0px;
  }
}
