/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
    Theme name: BigCity Theme
*/


.award-carousel {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
 }
 
 .award-carousel-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
 }
 
 @-webkit-keyframes scroll {
   0% { -webkit-transform: translateX(0%); transform: translateX(0%); }
   100% { -webkit-transform: translateX(-60%); transform: translateX(-60%); }
 }
 
 @keyframes scroll {
   0% { -webkit-transform: translateX(0%); transform: translateX(0%); }
   100% { -webkit-transform: translateX(-60%); transform: translateX(-60%); }
 }
 
 .award-carousel img {
  width: 20%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
 }


 .wcarousel-container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}
.wcarousel-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400%;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.wimage {
  width: 25%;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.wimage img {
  width: 100%;
  display: block;
}
.wdots {
  text-align: center;
  padding-top: 10px;
}
.wdot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #CFE4FF;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  -o-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}
.wdot.active {
  background-color: #2F89FC;
  width: 45px !important;
  border-radius: 12px;
}


.desktophidden {
  display: none !important;
}

@media screen and (max-width: 576px) {
  .desktophidden {
    display: none !important;
  }

  .award-carousel-images {
    -webkit-animation: scroll 10s linear infinite;
            animation: scroll 10s linear infinite;
   }

   .award-carousel {
    height: 120px;
   }

   .unlockpotential {
    padding-top: 40px;
    padding-bottom: 40px;
   }

}