/* Responsive CSS for Mobile Devices */

@media only screen and (max-width: 1440px) {
  .wide-col-laptop {
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
  }
  
  .counter-box span {
    font-size: 26px;
    font-weight: 700;
  }
}

@media only screen and (max-width: 1199px) {
  .wide-col-laptop {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .counter-box {
    font-size: 13px;
  }
  
  .count-number, .counted {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .facts-row > .row > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  
  .container-fluid {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    display: block;
  }
  
  .col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .facts-list.owl-carousel {
    margin: 20px auto;
  }
  
  .owl-carousel .owl-dots {
    margin-top: 25px;
  }
  
  .row.justify-content-center {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 575px) {
  h1, h2 {
    font-size: 32px;
  }
  
  .about-contentbox {
    text-align: center;
  }
  
  .owl-carousel .owl-item img {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .facts-list .owl-dots {
    text-align: center;
  }
  
  .wide-col-laptop {
    padding: 0 15px;
  }
  
  .animated-row {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 460px) {
  h2 {
    font-size: 28px;
  }
  
  .about-img img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
} 