.vision-mission-section {
  padding: 0 150px;
}
.vision-mission-section .section-main-heading {
  font-size: 3rem;
  font-weight: 600;
  color: var(--theme-color-1);
}
.vision-mission-section .col-block {
  width: 20%;
}

.vision-mission-section .col-block .img-container {
  width: 90%;
  margin: auto;
}

.vision-mission-section .col-block .img-container .img {
  width: 100%;
  padding: 32px;
  background: #ececec87;
  border-radius: 24%;
  box-shadow: 0 0 10px gray;
}

.vision-mission-section .col-block .section-title-1 {
  font-weight: 600;
  text-align: center;
}

.vision-mission-section .vertical-line {
  height: 35vh;
  width: 1px;
  background-color: rgb(195, 195, 195);
  box-shadow: 0 0 5px black;
}

/* featurs section */

.features-carousel .item{
  padding: 0 40px;
}

.features-carousel .item .feature-container{
  margin-top: 50px;
  padding: 15px 20px;
  background-color: rgb(238, 238, 238);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.features-carousel .item .feature-container .title{
  font-size: 28px;
  font-weight: 600;
}

.features-carousel .slick-current .feature-container{
  transform: translateY(-30px);
  background-color: var(--theme-color-green);
  box-shadow: 0 0 10px var(--theme-color-2);
}


.features-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--theme-color-1);
  border-radius: 50%;
  opacity: 0.75;
  transition: all 0.2s linear;
}
.features-carousel .slick-dots li.slick-active button {
  width: 50px;
  border-radius: 5px;
  opacity: 1;
}
.features-carousel .slick-dots li {
  width: auto;
  height: auto;
}
.features-carousel .slick-dots li button::before {
  content: "";
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
  .vision-mission-section {
    padding: 0 var(--std-padding);
  }

  .vision-mission-section .col-block {
    width: 90%;
  }
  .vision-mission-section .col-block .img-container {
    width: 60%;
  }

  .vision-mission-section .vertical-line {
    height: 1px;
    width: 80vw;
    margin-bottom: 20px;
  }

  .vision-mission-section .section-main-heading{
    font-size: 1.6rem;
  }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}
