.overlay-background {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}
.overlay-background .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  min-height: 620px;
}
.overlay-background .flex-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1368px) {
  .overlay-background,
  .overlay-background .overlay {
    min-height: 520px;
  }
}
@media (max-width: 900px) {
  .overlay-background .flex-grid {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 800px) {
  .overlay-background,
  .overlay-background .overlay {
    min-height: 420px;
  }
}
@media (max-width: 480px) {
  .overlay-background,
  .overlay-background .overlay {
    min-height: 300px;
  }
}

.content-recomendations .top .flex-grid {
  display: flex;
  gap: 4rem;
}
.content-recomendations .top .flex-grid .left {
  width: 34%;
}
.content-recomendations .top .flex-grid .right {
  width: 66%;
}
@media (max-width: 900px) {
  .content-recomendations .top .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
  .content-recomendations .top .flex-grid .left,
  .content-recomendations .top .flex-grid .right {
    width: 100%;
  }
}
.content-recomendations .bottom .flex-list {
  display: flex;
  gap: 2rem;
}
.content-recomendations .bottom .flex-list li {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.content-recomendations .bottom .flex-list li .background {
  height: 296px;
  transition: 0.6s;
}
.content-recomendations .bottom .flex-list li:hover .background {
  transform: scale(1.05);
}
.content-recomendations .bottom .flex-list li a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 296px;
  padding: 2rem;
  transition: 0.3s;
}
.content-recomendations .bottom .flex-list li a h3 {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.content-recomendations .bottom .flex-list li a h3 img {
  width: 100%;
  max-width: 3.3rem;
}

@media (max-width: 800px) {
  .content-recomendations .bottom .flex-list {
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .content-recomendations .bottom .flex-list {
    gap: 1rem;
  }
  .content-recomendations .bottom .flex-list li .background,
  .content-recomendations .bottom .flex-list li a {
    height: 165px;
  }
}

.content-steps .top .flex-grid {
  display: flex;
  gap: 4rem;
}
.content-steps .top .flex-grid .left {
  width: 34%;
}
.content-steps .top .flex-grid .right {
  width: 66%;
}
@media (max-width: 900px) {
  .content-steps .top .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
  .content-steps .top .flex-grid .left,
  .content-steps .top .flex-grid .right {
    width: 100%;
  }
}
.content-steps .bottom .flex-list {
  display: flex;
  gap: 2rem;
}
.content-steps .bottom .flex-list > li {
  padding: 1.5rem;
  width: 100%;
  border: 2px solid var(--black);
  background: var(--white);
}
.content-steps .bottom .flex-list .content-box ul {
  padding-left: 1.5rem;
}
.content-steps .bottom .flex-list .content-box li::before {
  top: 6px;
  left: -1.3rem;
  width: 12px;
  height: 12px;
}
@media (max-width: 900px) {
  .content-steps .bottom .flex-list {
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .content-steps .bottom .flex-list li a {
    height: 200px;
  }
}

.slider-block .overflow-grid {
  overflow-x: hidden;
}
.slider-block .flex-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.slider-block .flex-grid .right {
  width: 65%;
}
.controls {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.controls .btn {
  white-space: nowrap;
}
.controls .slider-prev,
.controls .slider-next {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-width: 32px;
  width: 32px;
  height: 32px;
  transition: 0.3s;
  color: var(--black);
  border: 2px solid var(--black);
}
.controls .slider-prev:hover,
.controls .slider-next:hover {
  background: var(--black);
  color: var(--white);
}
.controls.white .slider-prev,
.controls.white .slider-next {
  color: var(--white);
  border: 2px solid var(--white);
}
.controls.white .slider-prev:hover,
.controls.white .slider-next:hover {
  background: var(--white);
  color: var(--green);
}
@media (max-width: 460px) {
  .controls {
    margin-top: 0.8rem;
  }
}
.slider-block.image-slider .swiper {
  width: 1600px;
}
.slider-block.image-slider.half .swiper {
  width: 1350px;
}
.slider-block.image-slider.half .flex-grid .left {
  min-width: 50%;
}
@media (max-width: 1368px) {
  .slider-block.image-slider .swiper {
    width: 1200px;
  }
  .slider-block.image-slider.half .swiper {
    width: 1030px;
  }
}
@media (max-width: 1000px) {
  .slider-block .flex-grid {
    gap: 1.5rem;
  }
  .slider-block.image-slider .flex-grid {
    flex-direction: column;
  }
  .slider-block.image-slider .flex-grid .left,
  .slider-block.image-slider .flex-grid .right {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .slider-block.image-slider .swiper {
    width: 1000px;
  }
}
@media (max-width: 480px) {
  .slider-block.image-slider .swiper {
    width: 780px;
  }
}

.slider-block.card-slider .post-card .thumb {
  width: 100%;
  object-fit: cover;
}
.slider-block.card-slider .swiper {
  width: 1220px;
}
.slider-block.card-slider .swiper .circle-card {
  min-height: 425px;
  height: unset !important;
}
@media (max-width: 880px) {
  .slider-block.card-slider .flex-grid {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .slider-block.card-slider .info-card .image-box img,
  .slider-block.card-slider .info-card .image-box .overlay {
    height: 280px;
  }
  .slider-block.card-slider .swiper {
    width: 900px;
  }
}
@media (max-width: 460px) {
  .slider-block.card-slider .info-card .image-box img,
  .slider-block.card-slider .info-card .image-box .overlay {
    height: 240px;
  }
  .slider-block.card-slider .post-card .content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 380px) {
  .slider-block.card-slider .swiper {
    width: 760px;
  }
}
.slider-block.card-slider2 .swiper {
  width: 1500px;
}
.slider-block.card-slider2 .flex-grid .left {
  min-width: 400px;
}
.slider-block.download-slider .swiper {
  width: 1800px;
}
@media (max-width: 880px) {
  .slider-block.download-slider .flex-grid {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .slider-block.download-slider .swiper {
    width: 1000px;
  }
  .slider-block.download-slider .download-card {
    align-items: center;
  }
  .slider-block.download-slider .download-card img {
    width: 35%;
  }
  .slider-block.download-slider .download-card .content {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .slider-block.card-slider .info-card .image-box img,
  .slider-block.card-slider .info-card .image-box .overlay {
    height: 240px;
  }
  .slider-block.card-slider .post-card .content {
    padding: 2rem 1rem;
  }
  .slider-block.card-slider .swiper {
    width: 800px;
  }
}
.slider-block.box-slider .flex-grid .left,
.slider-block.box-slider .flex-grid .right {
  width: 50%;
}
.slider-block.box-slider .swiper {
  width: 1300px;
}
.slider-block.box-slider .swiper .slide-box {
  min-height: 530px;
}
@media (max-width: 1300px) {
  .slider-block.box-slider .swiper {
    width: 1100px;
  }
  .slider-block.card-slider2 .swiper {
    width: 1400px;
  }
}
@media (max-width: 1100px) {
  .slider-block.card-slider2 .flex-grid {
    flex-direction: column;
  }
  .slider-block.card-slider2 .flex-grid .left {
    min-width: unset;
  }
}
@media (max-width: 1050px) {
  .slider-block.box-slider .flex-grid {
    flex-direction: column;
  }
  .slider-block.box-slider .flex-grid .left,
  .slider-block.box-slider .flex-grid .right {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .slider-block.box-slider .swiper {
    width: 800px;
  }
}
@media (max-width: 460px) {
  .slider-block.box-slider .box-card {
    padding: 2rem 1rem;
  }
  .slider-block.card-slider2 .swiper {
    width: 600px;
  }
  .slider-block.box-slider .swiper {
    width: 620px;
  }
  .slider-block.box-slider .swiper .slide-box {
    min-height: 465px;
  }
}

.big-slider .top {
  display: flex;
  gap: 4rem;
}
.big-slider .top .left {
  min-width: 400px;
}
.big-slider .top .right {
  width: 100%;
}
.big-slider.content .swiper .swiper-slide {
  background: var(--white);
  padding: 4rem;
}
.big-slider.gallery {
  margin-bottom: 4rem;
}
.big-slider.gallery .bottom {
  margin-bottom: -5rem;
}
.big-slider.gallery .bottom .button-grid,
.big-slider.tabs-gallery .bottom .button-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.big-slider.gallery .bottom .button-grid {
  padding-bottom: 10rem;
}

.swiper-slide{
  height: unset !important;
}

@media (max-width: 1368px) {
  .big-slider.gallery .bottom {
    margin-bottom: -4rem;
  }
  .big-slider.gallery .bottom .button-grid {
    padding-bottom: 8rem;
  }
}
@media (max-width: 850px) {
  .big-slider.gallery .bottom {
    margin-bottom: -3rem;
  }
  .big-slider.gallery .bottom .button-grid,
  .big-slider.tabs-gallery .bottom .button-grid {
    flex-direction: column;
  }
  .big-slider.gallery .bottom .button-grid {
    padding-bottom: 6rem;
  }
  .big-slider .top .left {
    min-width: unset;
  }
}
.big-slider.gallery img {
  cursor: zoom-in;
}
.big-slider .modal {
  display: none;
}
.big-slider .modal.ativo {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.65);
}
.big-slider .modal .overlay {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-slider .modal .overlay .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 24px;
  color: var(--white);
  opacity: 0.5;
  transition: 0.3s;
}
.big-slider .modal .overlay .close:hover {
  opacity: 1;
}
.big-slider .image-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-slider .image-grid img {
  display: none;
}
.big-slider .image-grid img.ativo {
  display: block;
}
.big-slider.tabs-gallery .bottom .menu {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  overflow-x: scroll;
}
.big-slider.tabs-gallery .bottom .menu li {
  cursor: pointer;
  padding: 1rem 0.5rem;
  min-width: 180px;
}
.big-slider.tabs-gallery .bottom .menu li.ativo {
  border-bottom: 2px solid var(--white);
}
.big-slider.tabs-gallery .bottom .gallery figure.ativo {
  display: flex;
}
@media (max-width: 950px) {
  .big-slider .top {
    gap: 1.5rem;
    flex-direction: column;
  }
  .big-slider.content .swiper .swiper-slide {
    padding: 3rem;
  }
}
@media (max-width: 600px) {
  .big-slider.content .swiper .swiper-slide {
    max-height: 550px;
    overflow: hidden;
    overflow-y: scroll;
  }
  .big-slider.tabs-gallery .bottom .menu li {
    min-width: unset;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .big-slider.content .swiper .swiper-slide {
    padding: 3rem 1.5rem;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
}
.post-card .content {
  padding: 2rem;
  background: var(--white);
}
.post-card .content h3 {
  margin: 0;
}
.post-card .content .link {
  margin-top: 1rem;
}
.slider-block.card-slider .post-card .content{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.slider-block.card-slider .post-card .content .link {
  margin-top:auto;
  padding-top:1rem;
}
@media screen and (max-width:560px){
  .post-card .content {
    padding: 1.2rem;
  }
}
.post-card.nopadding .content {
  padding: 2rem 0;
}
.section-white .post-card{
  border:3px solid #c9c9c9;
}
.post-card.horizontal {
  flex-direction: row;
}
.post-card.horizontal .thumb {
  min-width: 368px;
  object-fit: cover;
  height: 368px;
}
.post-card.horizontal .content {
  width: 100%;
}

.info-card {
  display: block !important;
}
.info-card .image-box {
  position: relative;
}
.info-card .image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media screen and (max-width:500px){
  .info-card .paragraph{
    font-size:14px;
  }
}
@media (max-width: 800px) {
  .post-card.horizontal .thumb {
    min-width: 160px;
    height: 160px;
  }
}
@media (max-width: 425px) {
  .post-card.horizontal {
    flex-direction: column;
  }
  .post-card.horizontal .thumb {
    min-width: 100%;
    height: unset;
  }
}
.info-card .image-box .overlay {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  align-items: flex-end;

  padding: 2rem 2rem;
  width: 100%;
  height: 380px;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.info-card .image-box .overlay.nooverlay {
  background: unset;
}

.photo-card-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.photo-card {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.photo-card img {
  min-width: 120px;
  width: 120px;
}
@media (max-width: 460px) {
  .photo-card {
    gap: 1rem;
  }
  .photo-card img {
    min-width: 80px;
    width: 80px;
  }
}

.article-card {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.article-card img {
  min-width: 340px;
  width: 340px;
}
@media (max-width: 700px) {
  .article-card img {
    min-width: 160px;
    width: 160px;
  }
}
@media (max-width: 480px) {
  .article-card {
    flex-direction: column;
  }
  .article-card img {
    min-width: unset;
    width: 100%;
  }
  .article-card .btn {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
}
.circle-card {
  padding: 2rem;
  background: var(--white);
}
.download-card {
  display: flex;
  gap: 1rem;
}
.download-card img,
.download-card .content {
  width: 50%;
}
.download-card .button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 850px) {
  .download-card {
    flex-direction: column;
  }
}
.slide-box {
  padding: 3rem;
  border: 2px solid var(--black);
}
.slide-box .title-box {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
@media (max-width: 460px) {
  .slide-box {
    padding: 2rem 1.5rem;
  }
  .slide-box .title-box {
    gap: 1.5rem;
  }
}
.content-section .flex-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.content-section .flex-grid.start {
  align-items: flex-start;
}

.content-section .flex-grid.end {
  align-items: center;
}

.content-section.reverse .flex-grid {
  flex-direction: row-reverse;
}

@media screen and (max-width:684px){
  .content-section.reverse .flex-grid {
    flex-direction: column-reverse;
  }
}

.content-section .flex-grid .left,
.content-section .flex-grid .right {
  width: 100%;
}

.content-section.d75 .flex-grid .left {
  width: 75%;
}

.content-section.d75 .flex-grid .right {
  width: 25%;
}

.content-section.d35 .flex-grid .left {
  width: 35%;
}

.content-section.d35 .flex-grid .right {
  width: 65%;
}

.content-section.d50 .flex-grid .left,
.content-section.d50 .flex-grid .right {
  width: 50%;
}

.content-section .overlay {
  background: rgba(0, 0, 0, 0.4);
}

:is(.slider-block, .feed-section, .content-section, .info-slider) .modal {
  inset: 0;
  width: 100%;
  z-index: 1002;
}
:is(.slider-block, .feed-section, .content-section, .info-slider)
  .modal
  .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
:is(.slider-block, .feed-section, .content-section, .info-slider)
  .modal
  .overlay
  .b-modal-content {
  width: 100%;
  max-width: 580px;
  position: relative;
  background: var(--white);
  padding: 3rem 2rem;
}

:is(.slider-block, .feed-section, .content-section, .info-slider)
  .modal
  .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 19px;
}

:is(.slider-block, .content-section, .feed-section, .info-slider)
  .modal
  .form-box {
  padding: 1rem;
  max-height: 520px;
  overflow-y: scroll;
}

.content-section .modal iframe {
  width: 100%;
}

.content-section .flex-grid .right iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 420px) {
  .content-section .flex-grid .right iframe {
    height: 280px;
  }
}
@media (max-width: 900px) {
  .content-section .flex-grid,
  .content-section .flex-grid.start,
  .content-section .flex-grid.end,
  .content-section.mobile-default .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  .content-section.mobile-reverse .flex-grid {
    flex-direction: column-reverse;
  }
  .content-section.d75 .flex-grid .left {
    width: 100%;
  }

  .content-section.d75 .flex-grid .right {
    width: 40%;
  }
  .content-section.d35 .flex-grid .left,
  .content-section.d35 .flex-grid .right,
  .content-section.d50 .flex-grid .left,
  .content-section.d50 .flex-grid .right {
    width: 100%;
  }
}

.content-sectionB .flex-grid {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}
.content-sectionB .flex-grid .left {
  min-width: 410px;
  width: 410px;
}
.content-sectionB .flex-grid .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 850px) {
  .content-sectionB .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
  .content-sectionB .flex-grid .left {
    min-width: unset;
    width: unset;
  }
}
.colapse {
  display: flex;
  flex-direction: column;
}
.colapse .question {
  border: 2px solid var(--black);
  border-top: none;
}
.colapse .question:first-child {
  border-top: 2px solid var(--black);
}
.colapse label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
}
.colapse label i {
  transition: 0.6s;
}
.colapse label .title {
  transition: 0.4s;
}
.colapse label.ativo i {
  transform: rotate(45deg);
}
.colapse label:hover .title,
.colapse label.ativo .title,
.colapse label.ativo i {
  color: var(--green);
}
.colapse .b-colapse-content {
  padding: 2rem;
  border-top: 2px solid var(--black);
}
.feed-section .flex-list {
  display: flex;
  gap: 4rem;
}
.feed-section.wrap .flex-list {
  flex-wrap: wrap;
}
.feed-section .flex-list .info-card {
  width: 100%;
}
.feed-section .flex-list .post-card {
  width: 100%;
}
.feed-section .flex-list .post-card .thumb {
  width: 100%;
  object-fit: cover;
  height: 230px;
}
.feed-section .flex-list .post-card .content {
  height: calc(100% - 230px);
}
.feed-section.wrap .flex-list .info-card,
.feed-section.wrap .flex-list .post-card {
  width: calc((100% - 8rem) / 3);
}
.feed-section .nav-links span,
.feed-section .nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;

  width: 36px;
  height: 36px;

  border-radius: 255px;
  transition: 0.3s;
}
.feed-section .nav-links span {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}
.feed-section .nav-links a {
  border: 1px solid var(--black);
  background: tranparent;
  color: var(--black);
}
.feed-section .nav-links a:hover {
  background: var(--black);
  color: var(--white);
}
@media (max-width: 900px) {
  .feed-section.wrap .flex-list .info-card,
  .feed-section.wrap .flex-list .post-card {
    width: calc((100% - 4rem) / 2);
  }
  .feed-section .flex-list .info-card .content p {
    min-height: unset !important;
  }
}
@media (max-width: 860px) {
  .feed-section .flex-list {
    flex-direction: column;
    gap: 2rem;
  }
  .feed-section.wrap .flex-list {
    flex-direction: unset;
  }
}
@media (max-width: 600px) {
  .feed-section.wrap .flex-list .info-card,
  .feed-section.wrap .flex-list .post-card {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .info-card .image-box .overlay,
  .info-card .image-box img {
    height: 240px;
  }
  .info-card .btn {
    width: 100%;
  }
}
.photo-tabs .top {
  display: flex;
  gap: 4rem;
}
.photo-tabs .top .left {
  min-width: 400px;
}
@media (max-width: 950px) {
  .photo-tabs .top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .photo-tabs .top .left {
    min-width: unset;
  }
}
.photo-tabs .bottom .box {
  display: none;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 700px;
  animation: fadeIn 1.2s forwards;
}
.photo-tabs .bottom .box.ativo {
  display: flex;
}
.photo-tabs .bottom .box .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 700px;
  object-fit: cover;
  z-index: 0;
}
.photo-tabs .bottom .box .card {
  max-width: 40%;
  min-width: 480px;
  padding: 4rem;
  z-index: 3;
}

@media (max-width: 850px) {
  .photo-tabs .bottom .box,
  .photo-tabs .bottom .box .background-image {
    height: 550px;
  }
}
@media (max-width: 550px) {
  .photo-tabs .bottom .box .background-image {
    height: 300px;
    position: unset;
  }
  .photo-tabs .bottom .box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: unset;
  }
  .photo-tabs .bottom .box .card {
    margin-top: -7rem;
    margin-left: 1rem;
    padding: 2rem;
    max-width: 100%;
    min-width: unset;
  }
}
.wpcf7-spinner{
  transition: 0.3s !important;
  max-height: 0 !important;
}
form.submitting .wpcf7-spinner{
  max-height: 200px !important;
}
.contact-form .flex-grid {
  display: flex;
  gap: 4rem;
}
.contact-form .flex-grid .left,
.contact-form .flex-grid .right {
  width: 100%;
}
.contact-form .flex-grid .left img{
  height: 100%;
  object-fit: cover;
}
@media (max-width: 780px) {
  .contact-form .flex-grid {
    flex-direction: column;
  }
}
.testmonials .b-container > .flex-grid {
  display: flex;
  gap: 4rem;
}
.testmonials .b-container > .flex-grid .left {
  width: 35%;
}
.testmonials .b-container > .flex-grid .right {
  width: 65%;
}
.testmonials .testmonial {
  padding: 2rem 3rem;
  background: var(--gray);
}
.testmonials .testmonial .flex-grid {
  display: flex;
  gap: 2rem;
}
.testmonials .testmonial .flex-grid .person {
  width: 35%;
}
.testmonials .testmonial .flex-grid .person .paragraph {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 5px;
}
.testmonials .testmonial .flex-grid .content-box {
  width: 65%;
}
.testmonials .menu {
  display: flex;
  flex-wrap: wrap;
}
.testmonials .menu li {
  cursor: pointer;
  width: calc(100% / 9);
  filter: saturate(0.25);
  opacity: 0.5;
  transition: 0.4s;
}
.testmonials .menu li:hover {
  opacity: 0.75;
  filter: saturate(0.75);
}
.testmonials .menu li.ativo {
  opacity: 1;
  filter: saturate(1);
}
.grid-testimonials img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 980px) {
  .testmonials .b-container > .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
  .testmonials .b-container > .flex-grid .right {
    display: flex;
    flex-direction: column-reverse;
  }
  .testmonials .b-container > .flex-grid .left,
  .testmonials .b-container > .flex-grid .right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .testmonials .testmonial {
    padding: 2rem;
  }
  .testmonials .menu li {
    width: calc(100% / 6);
  }
  .testmonials .testmonial .flex-grid {
    flex-direction: column;
  }

  .testmonials .testmonial .flex-grid .person {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
  }
  .testmonials .testmonial .flex-grid .person img {
    width: 120px;
  }
  .testmonials .testmonial .flex-grid .content-box {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .testmonials .testmonial .flex-grid .person {
    gap: 2rem;
    flex-direction: column;
  }
}

.dynamic-blog .flex-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.dynamic-blog .flex-grid .left,
.dynamic-blog .flex-grid .right {
  width: 100%;
}
.dynamic-blog .flex-grid .left ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.dynamic-blog .flex-grid .left ul li {
  padding-right: 1rem;
  border-right: 4px solid transparent;
  transition: 0.3s;
}
.dynamic-blog .flex-grid .left ul li.ativo {
  border-color: var(--green);
}
.dynamic-blog .flex-grid .left .mobile-thumb {
  display: none;
}
.dynamic-blog .flex-grid .right img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.dynamic-blog .flex-grid .left .mobile-thumb {
  display: none;
}
@media (max-width: 950px) {
  .dynamic-blog .flex-grid .right {
    display: none;
  }
  .dynamic-blog .flex-grid .left .mobile-thumb {
    display: inline-block;
    width: 110px;
    height: 110px;
    object-fit: cover;
  }
  .dynamic-blog .flex-grid .left ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .dynamic-blog .flex-grid .left ul li.ativo {
    border-color: transparent;
  }
}
@media (max-width: 460px) {
  .dynamic-blog .flex-grid .left .mobile-thumb {
    width: 65px;
    height: 65px;
  }
  .dynamic-blog .flex-grid .left .btn {
    width: 100%;
  }
}
.image-content50 .background {
  display: flex;
  justify-content: flex-end;
}
.image-content50.reverse .background {
  justify-content: flex-start;
}
.image-content50 .background img {
  width: 50%;
  object-fit: cover;
  height: 680px;
}
.image-content50 .b-container {
  margin-top: -680px;
  height: 680px;
  display: flex;
}

.image-content50 .content-grid {
  width: calc(50% - 3rem);
}
.image-content50.reverse .content-grid {
  width: calc(50% - 3rem);
  margin:auto 0 auto calc(50% + 3rem);
}

@media (max-width: 1060px) {
  .image-content50 {
    display: flex;
    flex-direction: column-reverse;
  }
  .image-content50.mobile-reverse {
    display: flex;
    flex-direction: column;
  }
  .image-content50 .background img {
    width: 100%;
    height: 400px;
  }
  .image-content50 .b-container {
    margin-top: unset;
    height: unset;
  }
  .image-content50 .content-grid,
  .image-content50.reverse .content-grid {
    width: 100%;
    margin-left: 0;
  }
}
.slider-partners .flex-grid {
  display: flex;
  gap: 4rem;
}
.slider-partners .flex-grid .left {
  width: 35%;
}
.slider-partners .flex-grid .right {
  width: 65%;
}
.slider-partners .swiper .comment {
  display: flex;
  gap: 2rem;
}
.slider-partners .swiper .comment .avatar {
  min-width: 120px;
}
.slider-partners .swiper .comment .avatar .content-grid {
  margin-top: 8px;
}
.slider-partners .swiper .comment .avatar .avatar-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top center;
}
.slider-partners .swiper .comment .mobile {
  display: none;
}
@media (max-width: 850px) {
  .slider-partners .flex-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
  .slider-partners .flex-grid .left,
  .slider-partners .flex-grid .right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .slider-partners .swiper .comment .desktop {
    display: none;
  }
  .slider-partners .swiper .comment .mobile {
    display: block;
  }
  .slider-partners .swiper .comment {
    flex-direction: column;
  }
  .slider-partners .swiper .comment .avatar {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .slider-partners .swiper .comment .avatar .avatar-thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
  .slider-partners .swiper .comment .avatar .content-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 420px) {
  .slider-partners .swiper .comment {
    align-items: center;
    flex-direction: column;
  }
}
.overlay-cta .overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
}
.overlay-cta.green .overlay {
  background: var(--green90);
}
.overlay-cta.yellow .overlay {
  background: var(--yellow90);
}
.overlay-cta.black .overlay {
  background: var(--black90);
}
@media (max-width: 480px) {
  .overlay-cta .overlay {
    padding: 3rem 1.5rem;
  }
}
.contact-form2 .b-container {
  padding-bottom: 0;
}
.contact-form2 .flex-grid {
  padding: 4rem 0;
  display: flex;
  gap: 4rem;
}
.contact-form2 .flex-grid .left,
.contact-form2 .flex-grid .right {
  width: 100%;
}
.contact-form2 .flex-grid .right .form-box {
  background: var(--white);
  padding: 2rem 3rem;
}
@media (max-width: 1368px) {
  .contact-form2 .flex-grid {
    padding: 3rem 0;
  }
  .contact-form2 .flex-grid .right .form-box {
    padding: 3rem;
  }
}
@media (max-width: 960px) {
  .contact-form2 .flex-grid {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .contact-form2 .flex-grid .right .form-box {
    padding: 2rem 1.5rem;
  }
}
.info-slider .top .flex-grid {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
}
.info-slider .top .flex-grid .left,
.info-slider .top .flex-grid .right {
  width: 100%;
}
.info-slider .top .flex-grid .right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .info-slider .top .flex-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .info-slider .top .flex-grid .right {
    justify-content: flex-start;
  }
  .info-slider .bottom .swiper {
    padding-right: 60px;
  }
}
.simple-menu .menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.simple-menu .menu-fixed {
  display: none;
}
.simple-menu .menu-fixed.ativo {
  padding: 1.2rem 0.8rem;
  width: 100%;
  position: fixed;
  display: flex;
  gap: 2.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  top: 73px;
  left: 0;
  margin-top: 0;
  background: var(--gray);
  z-index: 1001;
  transition: 0.4s;
  justify-content: center;

}
.simple-menu .menu li a,
.simple-menu .menu-fixed.ativo li a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--black);

  transition: 0.3s;
}
.simple-menu .menu-fixed.ativo li a {
  font-size: 16px;
}
.simple-menu .menu-fixed.ativo li a {
  white-space: nowrap;
}
.simple-menu .menu.white li a {
  color: var(--white);
}
.simple-menu .menu li a:hover {
  color: var(--green);
}
.simple-menu .menu.white li a:hover {
  color: var(--yellow);
}
@media (max-width: 1024px) {
  .simple-menu .menu-fixed.ativo {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 0.6rem;
    justify-content: flex-start;
  }
  .simple-menu .menu-fixed.ativo li {
    white-space: nowrap;
  }
}
@media (max-width: 850px) {
  .simple-menu .menu li a {
    font-size: 16px;
  }
}
.simple-content .flex-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-feed .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.blog-feed .blog-list .info-card {
  width: calc((100% - 4rem) / 3);
}
.blog-feed .blog-list .info-card:nth-child(4),
.blog-feed .blog-list .info-card:nth-child(5) {
  width: calc((100% - 2rem) / 2);
}
.blog-feed .blog-list .info-card:nth-child(4) img,
.blog-feed .blog-list .info-card:nth-child(4) .overlay,
.blog-feed .blog-list .info-card:nth-child(5) img,
.blog-feed .blog-list .info-card:nth-child(5) .overlay {
  height: 480px;
}
@media (max-width: 1050px) {
  .blog-feed .blog-list .info-card,
  .blog-feed .blog-list .info-card:nth-child(4) {
    width: calc((100% - 2rem) / 2);
  }
  .blog-feed .blog-list .info-card:nth-child(5) {
    width: 100%;
  }
  .blog-feed .blog-list .info-card:nth-child(4) img,
  .blog-feed .blog-list .info-card:nth-child(4) .overlay,
  .blog-feed .blog-list .info-card:nth-child(5) img,
  .blog-feed .blog-list .info-card:nth-child(5) .overlay {
    height: 380px;
  }
}
@media (max-width: 600px) {
  .blog-feed .blog-list .info-card,
  .blog-feed .blog-list .info-card:nth-child(4) {
    width: 100%;
  }
}
.blog-feed .highlight .overlay {
  padding: 4rem;
  display: flex;
  height: 480px;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.blog-feed .highlight .overlay .content {
  width: 100%;
  max-width: 500px;
}

@media (max-width: 600px) {
  .blog-feed .highlight .overlay {
    padding: 2rem 1.5rem;
  }
}
.job-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.job-list .job .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.job-list .job .flex-box .btn {
  white-space: nowrap;
}
.job-list .job .label {
  margin-bottom: 0.5rem;
}
@media (max-width: 650px) {
  .job-list {
    gap: 2rem;
  }
  .job-list .job .flex-box {
    gap: 0.5rem;
    flex-direction: column;
  }
}

.content-icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.content-icon-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.content-icon-list li img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  object-fit: container;
}
.cardbox .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cardbox .card-list li {
  position: relative;
  padding: 2rem;
  width: calc((100% - 3rem) / 4);
  border: 2px solid var(--green);
  min-height: 270px;
}
.cardbox .card-list li img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.cardbox .card-list li span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 55px;
  font-weight: 700;
  color: var(--green);
}
.cardbox .card-list .cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .cardbox .card-list li {
    width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 600px) {
  .cardbox .card-list {
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin-right: -1.2rem;
    padding-right: 1.2rem;
    padding-bottom: 1rem;
  }
  .cardbox .card-list li {
    min-width: 260px;
  }
}
