/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;

  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.wrapper {
margin-bottom: 5px;
  max-width: 1300px;
  width: 100%;
  position: relative;
	z-index: 2;
	background: #ffff;
}
.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -55px;
}
.wrapper i:last-child{
  right: -55px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 2) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}

.card .img img {
  width: 100%;
  height: 100%;
  border-top-left-radius:0%;
border-top-right-radius:0%;
border-bottom-right-radius: 8%;
	border-bottom-left-radius:8%;
  object-fit: cover;
  
}

.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}
.textos2{
	margin-top: 20px;
	margin-bottom: 50px;
	font-size: 15px;
	
}
.maps{
	width: 100%;
	margin-top: 150px; 
	margin-bottom: 50px;
	text-align: center;
		
	
}
.maps h3{
	font-size: 30px;
	margin-top: 100px;
	margin-bottom: 30px;
}




@media screen and (max-width: 900px) {
		.wrapper i:first-child{
			top: 30%;
  left: 5px;
}
.wrapper i:last-child{
	top: 30%;
  right: 5px;
}
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 1) - 9px);
  }
}

@media screen and (max-width: 600px) {
		.wrapper i:first-child{
			top: 30%;
  left: 5px;
}
.wrapper i:last-child{
	top: 30%;
  right: 5px;
}
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
		@media screen and (max-width: 420px) {
			
				.wrapper i:first-child{
					top: 30%;
  left: 5px;
}
.wrapper i:last-child{
	top: 30%;
  right: 5px;
}
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
					.maps h3{
	font-size: 25px;
	
}
	@media screen and (max-width: 360px) {
			.wrapper i:first-child{
top: 30%;				
  left: 5px;
}
.wrapper i:last-child{
	top: 30%;
  right: 5px;
}
  .wrapper .carousel {
   calc((100% / 1) - 9px);
margin-top: -5px;
	  
  }
		.maps h3{
	font-size: 22px;
	
}
	
}