.elementor.elementor-19 {
  max-width: 100% !important;
}

button.slick-prev.slick-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
border: 0;
background: transparent;
}

button.slick-next.slick-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
border: 0;
background: transparent;
}

button.slick-next.slick-arrow i, button.slick-prev.slick-arrow {
  background: transparent;
  font-size: 19px;
  font-weight: 100;
}
.slide.slick-slide a {
  display: flex;
  /* justify-content: center; */
}
.slide.slick-slide h3 a {
 
  text-align: center;
}

.slide.slick-slide {
  /* background: red; */
  margin-left: 7px;
  
}
.slick-slide img {
 
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.slider-content {
  padding: 25px;
}


/* about us */

/* .about-us h1 {
  text-align: center;
  margin: 1.5em;
} */

.about-us img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  padding: 0;
}

.about-us.container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.about-us .items {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: carouselAnim 50s infinite alternate linear;
  height: 600px;
}

.about-us .entry {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 500px;
  background: #fff;
  margin: 1em;
  /* padding: 0.5em; */
  border-radius: 10px;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
  height: 500px;
}

@media only screen and (max-width: 768px) {
  .about-us .items {
    animation: carouselAnim 35s infinite alternate linear;
  }
  
  @keyframes carouselAnim {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(calc(-100% + (2 * 300px)));
    }
  }
}

.about-us .entry p {
  text-align: center;
  padding: 1em;
}

.about-us .name {
  font-weight: bold;
}

@keyframes carouselAnim {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(calc(-100% + (5 * 300px)));
  }
}

.about-us.container .faders {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
}

.about-us .faders .right,
.about-us .faders .left {
  background: linear-gradient(
    to right,
    rgba(245, 245, 245, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 15%;
  height: 100%;
  position: absolute;
  z-index: 200;
}

.about-us .right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(245, 245, 245, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}


.about-us .items:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #2d387461;
  z-index: 1;
}

.page-about-us-title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  flex-direction: column;
}

.page-about-us-title h1 {
  color: #FFFFFF;
  font-family: "Quicksand", Sans-serif;
  font-size: 100px;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.page-about-us-title p {
  text-align: center;
  color: #FFFFFF;
  font-family: "Quicksand", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  width: var(--container-widget-width, 100%);
  max-width: 100%;
  --container-widget-width: 100%;
  --container-widget-flex-grow: 0;
  align-self: center;
}

/* modal */
.abmodal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.abmodal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.abclose {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.abclose:hover,
.abclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* card-solutions */
.card-solutions-slider .slick-slide img {
  object-fit: contain !important;
  width: 100%;
  height: 300px;
}