@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');

body {
	color: black;
	font-family: 'Open Sans', sans-serif;
}

.text-center {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
}

.page-title {
    font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-size: 30px;
}

.page-text {
    width: 70%;
    font-size: 16px;
}
.page-text p {
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
}

highlight main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.carousel {
  position: relative;
  width: 1080px;
  height: 1080px;
  overflow: hidden;
}

.carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #c8c8c885;
}

.carousel-item {
  flex: 0 0 100%;
  transition: transform 0.5s ease;
}

.carousel-item img {
  width: 100%;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  transform-origin: top left;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.carousel-prev:hover {
  transform: scale(1);
  border-radius: 10rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.363);
}
.carousel-next:hover {
  transform: scale(1);
  border-radius: 10rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.363);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

@media screen and (max-width: 1000px) {
    .carousel {
  width: 100%;
  height: 100%;
}
}

@media screen and (max-width: 700px) {
    .carousel {
  width: 100%;
  height: 100%;
}
  .popup {
    width: 70%;
  }
  .services {
    font-size: 1.2rem;
  }
  .icons {
    width: 3rem;
  }
  
}
main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
section {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.boletim-content {
  width: 80%;
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  flex-wrap: wrap;
}
.boletim {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20rem;
  gap: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.boletim a {
  width: 80%;
  height: 80%;
  border-radius: 2rem;
}
.boletim img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}
.image-frame {
    display: inline-block;
    padding: 10px;
    border: 1px solid #363636;
    box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
-webkit-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
}
.imgusedcard {
  max-width: 22rem;
  max-height: 18.5rem;
  border-radius: 0rem;
}
.boletim:hover {
  transform: scale(105%);
  transition-property: transform;
  -webkit-box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
}

