/* hero */
.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-image: linear-gradient(
    120deg,
    #00223cc7 0%,
    #ffffff00 50%,
    #cd8c5e82 100%
  );
  z-index: 1;
}

@media (min-width: 1180px) and (max-width: 1600px) {
  .hero {
    height: 75vh;
  }
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}

.hero h1 {
  text-align: left;
  color: var(--branco);
  font-size: 80px;
  font-family: HelveticaNeueLight;
}

@media (max-width: 970px) {
  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 750px) {
  .hero h1 {
    font-size: 46px;
  }
}

.hero-block {
  z-index: 2;
}

/* flex or grid */
.display-flex {
  display: flex;
  flex-wrap: wrap;
}

/* form */

.contact-form .custom .input-text {
  margin-bottom: 20px;
}

.contact-form .custom .input-text {
  border: 0;
  border-bottom: 2px solid var(--azul);
  padding-bottom: 20px;
  width: 100%;
  color: var(--azul);
  font-size: 20px;
  transition: 333ms padding ease-in-out;
  font-family: HelveticaNeueLight;
}

.contact-form .custom .input-text:not(select):focus {
  padding-bottom: 5px;
  padding-top: 16px;
}

.contact-form .custom .input-text::placeholder {
  color: var(--cinzaEscuro);
  font-size: 20px;
  font-weight: 300;
}

.contact-form .custom select.input-text {
  color: var(--cinzaEscuro);
  font-size: 20px;
  font-family: HelveticaNeueLight;
}

.contact-form .custom textarea.input-text {
  height: 100px;
}

.contact-form .custom label {
  width: 100%;
}

.checkbox.custom > label,
.checkbox.custom > label .wpcf7-list-item {
  padding: 0;
  margin: 0;
}

.checkbox.custom label input[type="checkbox"] {
  display: inline-flex;
  appearance: none;
  background-color: #fff;
  font: inherit;
  color: currentColor;
  width: 23px;
  height: 23px;
  border: 0.15em solid rgb(176, 176, 176);
  border-radius: 0.15em;
  transform: translateY(-0.5px);
  outline: none;
  font-size: 13px;
  margin-top: -2px;
}

.checkbox.custom label input[type="checkbox"]::before {
  content: "";
  width: 20px;
  height: 20px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--laranja);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox.custom label input[type="checkbox"]:checked::before {
  transform: scale(1) translate(1px, -7px) rotate(25deg);
}
.checkbox.custom label .wpcf7-list-item-label {
  margin-left: 10px;
  color: var(--azul);
  font-size: 16px;
}

.form-submit {
  margin-top: 40px;
  position: relative;
}

.form-submit.custom input[type="submit"] {
  width: 100%;
  padding: 18px 30px;
  background-color: var(--laranja);
  color: var(--branco);
  text-align: left;
  border: none;
  outline: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  font-family: 'HelveticaNeueBold';
}

.form-submit.custom svg {
  position: absolute;
  top: calc(50% - 15px);
  bottom: 0;
  right: 40px;
  transform: translateY(-50%);
  color: var(--branco);
  width: 35px;
  height: 35px;
}

@media (max-width: 360px) {
  .form-submit.custom svg {
    right: 10px;
  }
}

/* custom title */

.page-title,
.contact-title {
  color: var(--laranja);
  font-size: 80px;
  font-family: HelveticaNeueLight;
}

.page-title.small {
  font-size: 22px;
  color: var(--azul);
  font-family: HelveticaNeueBold;
}

.page-title.dark,
.contact-title.dark {
  color: var(--azul);
}

.content p {
  margin-bottom: 20px;
  color: var(--azul);
  font-size: 16px;
}

.contact-title,
.page-title {
  margin-bottom: 50px!important;
}

.contact-subtitle {
  color: var(--azul);
  margin: 20px 0 50px 0;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 970px) {
  .page-title,
  .contact-title {
    font-size: 60px;
  }
}

@media (max-width: 750px) {
  .page-title,
  .contact-title {
    font-size: 46px;
  }
}

/* margin and padding */
.margin-y-60 {
  margin: 60px 0;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.padding-x-15 {
  padding: 0 15px;
}

.padding-bottom-0 {
  padding-bottom: 0;
}

/* color */

.darkGray {
  color: var(--cinzaEscuro);
}

.color-orange {
  color: var(--laranja);
}

.color-red {
  color: var(--vermelho) !important;
}

/* Aside Content Title */

.aside-content-title .title {
  color: var(--azul);
  font-weight: bold;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .aside-content-title {
    margin-bottom: 25px;
  }
}

/* Culture Grid */

.culture-grid .grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.culture-grid .grid-box .grid-post {
  width: 100%;
  position: relative;
}

.culture-grid .grid-box .grid-post .grid-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-grid .grid-box .grid-post .grid-post-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  max-width: 250px;
  transition: 333ms ease-in-out;
}

.culture-grid .grid-box .grid-post .post-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.culture-grid .grid-box .grid-post .post-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(150deg, #00223cc7 61%, #cd8c5eb1 100%);
  opacity: 1;
  transition: 333ms ease-in-out;
}

.culture-grid .grid-box .grid-post .post-link:hover::before,
.culture-grid .grid-box .grid-post .post-link:hover .grid-post-logo {
  opacity: 0;
}

@media (min-width: 1200px) {

  .culture-grid .grid-box .grid-post:nth-child(1) {
    height: 100%;
  }

  .culture-grid .grid-box .grid-post:nth-child(2) {
    height: 100%;
  }

  .culture-grid .grid-box .grid-post:nth-child(3) {
    height: 100%;
  }

  .culture-grid .grid-box .grid-post:nth-child(4) {
    height: 100%;
  }

  .culture-grid .grid-box .grid-post:nth-child(5) {
    height: 100%;
  }

  .culture-grid .grid-box .grid-post:nth-child(6) {
    height: 100%;
  }
}

@media (max-width: 1200px) {
  .culture-grid .grid-box .grid-post {
    height: 450px;
  }
}

/* Culture Single Post */

/* hero */
.hero-post {
  position: relative;
}

.hero-post .hero-image-box {
  position: relative;
}

.hero-post .hero-image-box::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-image: linear-gradient(
    120deg,
    #00223cc7 0%,
    #ffffff00 50%,
    #cd8c5e82 100%
  );
  z-index: 1;
}

.hero-post .hero-image {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.hero-post .hero-box {
  background: var(--vermelho);
  padding: 80px 0;
}

.hero-post .hero-box .hero-content {
  color: var(--branco);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-post .hero-box .hero-content .hero-content-title {
  font-family: HelveticaNeueLight;
  font-size: 48px;
}

@media (max-width: 1180px) {
  .hero-post .hero-image {
    height: 70vh;
  }
}

@media (max-width: 992px) {
  .hero-post .hero-box .hero-content .hero-content-image {
    margin-bottom: 50px;
  }

  .hero-post .hero-image {
    height: 60vh;
  }
}

@media (max-width: 767px) {
  .hero-post .hero-box .hero-content .hero-content-title {
    font-size: 36px;
  }
}

/* tesmimonial */

.testimonial {
  background: var(--vermelho);
  color: #ffffffcc;
  font-family: HelveticaNeueLight;
  font-size: 24px;
  position: relative;
}

.testimonial .testimonial-content {
  position: relative;
}

.testimonial .testimonial-content .content-box {
  border-radius: 40px;
  border: 1px solid var(--branco);
  padding: 0 40px 50px 30px;
  position: relative;
}

/* .testimonial .testimonial-content .content-box .half-border {
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--vermelho);
  transform: scale(1.05);
} */

/* .testimonial .testimonial-content .content-box .arrow-bubble {
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 120px;
  height: 90px;
  background: var(--branco);
  position: absolute;
  bottom: -89px;
  left: 15%;
} */

.text-balao{
  padding: 0 20px;
}

.testimonial-img img {
  position: relative;
  width: 110%;
  top: -100px;
  margin-bottom: -80px;
  }

  .espacamento-testemunho{
    padding: 160px 0;
  }

@media (max-width: 650px) {
  /* .testimonial .testimonial-content .content-box .arrow-bubble {
    left: 15%;
    width: 60px;
    height: 40px;
    bottom: -39px;
  } */
}
/* 
.testimonial .testimonial-content .content-box .arrow-bubble:before {
  content: "";
  background-color: var(--vermelho);
  clip-path: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(99%);
  top: 46%;
  left: 49.1%;
}

.testimonial .testimonial-content .content-box .arrow-bubble::after {
  content: "";
  background-color: var(--vermelho);
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
} */

.banner-cultura{
  background-repeat: no-repeat!important;
  background-size: cover!important;
  height: 60vh;
  align-items: center
}

@media (max-width: 650px) {
  .testimonial .testimonial-content .content-box .arrow-bubble:before {
    transform: translate(-50%, -50%) scale(94%);
    top: 50%;
    left: 51.9%;
  }
}

.testimonial .testimonial-bg {
  position: inherit;
}

@media (max-width: 992px) {
  .testimonial .testimonial-bg {
    display: none;
  }
}
.testimonial .testimonial-bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}

.testimonial .testimonial-content p {
  position: relative;
  font-style: italic;
  z-index: 10;
}

.testimonial .testimonial-content p.autor {
  text-align: center;
  font-style: normal;
  margin-top: 40px;
}

/* testimonial grid */

.testimonial-grid {
  font-family: HelveticaNeueLight;
  font-size: 24px;
  position: relative;
}

.testimonial-grid .testimonial-content {
  position: relative;
  align-self: center;
}

.testimonial-grid .testimonial-content .content-box {
  border-radius: 40px;
  border: 1px solid var(--laranja);
  padding: 30px;
  position: relative;
}

@media (max-width: 992px) {
  .testimonial-grid .testimonial-content .content-box {
    margin-top: 50px;
  }

  .testimonial-grid .testimonial-content {
    margin: 0 auto;
  }
}

.testimonial-grid .testimonial-content .content-box .half-border {
  width: 100%;
  height: 40%;
  position: absolute;
  top: -1px;
  left: 0;
  background-color: var(--branco);
  transform: scale(1.05);
}

.testimonial-grid .testimonial-content .content-box .arrow-bubble {
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 120px;
  height: 90px;
  background: var(--laranja);
  position: absolute;
  bottom: -89px;
  right: 25%;
  transform: scaleX(-1);
}

@media (max-width: 650px) {
  .testimonial-grid .testimonial-content .content-box .arrow-bubble {
    right: 15%;
    width: 60px;
    height: 40px;
    bottom: -39px;
  }
}

.testimonial-grid .testimonial-content .content-box .arrow-bubble:before {
  content: "";
  background-color: var(--branco);
  clip-path: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(97%);
  top: 50%;
  left: 50.9%;
}

.testimonial-grid .testimonial-content .content-box .arrow-bubble::after {
  content: "";
  background-color: var(--branco);
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
}

@media (max-width: 650px) {
  .testimonial-grid .testimonial-content .content-box .arrow-bubble:before {
    transform: translate(-50%, -50%) scale(94%);
    top: 50%;
    left: 51.9%;
  }
}

.testimonial-grid .testimonial-bg {
  position: inherit;
}

.testimonial-grid .testimonial-bg img {
  min-height: 400px;
  object-fit: cover;
  width: 100%;
}

.testimonial-grid .testimonial-content p {
  position: relative;
  font-style: italic;
  z-index: 10;
  color: var(--azul);
}

.testimonial-grid .testimonial-content p.autor {
  text-align: left;
  font-style: normal;
  margin-top: 60px;
  font-size: 16px;
  max-width: 250px;
  color: var(--laranja);
}

.testimonial-grid .testimonial-content p.autor span {
  font-weight: 400;
  font-size: 22px;
}

.testimonial-grid .testimonial-content p.autor-descricao {
  font-size: 13px;
  color: var(--laranja);
  font-style: normal;
}
    



/* culture card */
.culture-card .above-text {
  font-family: HelveticaNeueBold;
  font-size: 22px;
  color: var(--laranja);
  margin-bottom: 30px;
}

.culture-card .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 25px;
}

.culture-card .grid .card {
  width: 100%;
  height: 100%;
  background: var(--cinza);
  transition: background 333ms ease-in-out;
}

@media (min-width: 992px) {

  .culture-card .grid .card .card-content {
    max-width: 700px;
    margin: 0 auto;
  }
}

.culture-card .grid .card .card-link {
  display: block;
  padding: 50px;
}

.culture-card .grid .card .cat {
  color: var(--laranja);
  transition: color 333ms ease-in-out;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.culture-card .grid .card .title {
  color: var(--azul);
  font-family: HelveticaNeueBold;
  transition: color 333ms ease-in-out;
  text-transform: capitalize;
}

.culture-card .grid .card .learn-more {
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: 333ms ease-in-out;
}

.culture-card .grid .card .learn-more svg {
  margin-left: 10px;
}

.width-full {
  width: 100%;
}

.culture-card .grid .card:hover .title,
.culture-card .grid .card:hover .cat,
.culture-card .grid .card:hover .learn-more {
  color: var(--branco);
}

.culture-card .grid .card .learn-more:hover {
  color: var(--laranja);
}

.culture-card .grid .hoververmelho:hover {
  background: var(--vermelho);
}

.culture-card .grid .hoverrosa:hover {
  background: #8c2c6a;
}

.culture-card .grid .hoverazul:hover {
  background: #1db0f0;
}

.culture-card .grid .hoveramarelo:hover {
  background: #ff9c00;
}

.culture-card .grid .hoververde:hover {
  background: #77ce1f;
}


/* CARREIRAS */
.carreira-lightbox .container {
  position: relative;
}

.carreira-lightbox .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.carreira-lightbox .grid .post {
  width: 100%;
  min-height: 350px;
  max-height: 350px;
  position: relative;
  cursor: pointer;
}

@media (min-width: 992px) {
  .carreira-lightbox .grid .post:nth-child(3) {
    min-height: 350px;
    max-height: inherit;
    grid-row: span 2;
  }
}

@media (max-width: 992px) {
  .carreira-lightbox .grid {
    grid-template-columns: 1fr 1fr;
  }

  .carreira-lightbox .grid .post:nth-child(3) {
    grid-column: span 2;
    grid-row: 3;
  }
}

@media (max-width: 565px) {
  .carreira-lightbox .grid {
    grid-template-columns: 1fr;
  }

  .carreira-lightbox .grid .post:nth-child(3) {
    grid-column: inherit;
    grid-row: inherit;
  }
}

.carreira-lightbox .grid .post .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carreira-lightbox .grid .post .above-content {
  width: 100%;
  position: absolute;
  background: var(--laranja);
  color: var(--branco);
  padding: 20px;
  padding-right: 50px;
  bottom: 0;
}

.carreira-lightbox .grid .post .above-content .title {
  font-size: 16px;
  text-transform: uppercase;
  font-family: HelveticaNeueBold;
}

.carreira-lightbox .grid .post .above-content .description {
  display: none;
}

/* post Lightbox */

.carreira-lightbox .post-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  animation: showModal 333ms ease-in-out;
  z-index: 100;
}

@media (max-width: 992px) {
  .carreira-lightbox .post-lightbox {
    top: 50%;
    transform: translateY(-25%);
  }
}

.carreira-lightbox .post-lightbox.show {
  display: block;
}

@keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carreira-lightbox .post-lightbox .background {
  position: relative;
}

.carreira-lightbox .post-lightbox .background .half {
  position: relative;
}

@media (min-width: 992px) {
  .carreira-lightbox .post-lightbox .background .half {
    height: 50%;
    padding-right: 0;
  }
  .carreira-lightbox .post-lightbox .background {
    height: 100%;
    padding-right: 0;
  }
}

.carreira-lightbox .post-lightbox .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .carreira-lightbox .post-lightbox .background img {
    max-height: 400px;
  }
}

.carreira-lightbox .post-lightbox .background .above-content {
  width: 100%;
  position: absolute;
  background: var(--laranja);
  color: var(--branco);
  padding: 20px;
  padding-right: 50px;
  bottom: 0;
  text-transform: uppercase;
  font-family: HelveticaNeueBold;
  font-size: 20px;
}

.carreira-lightbox .post-lightbox .background .above-content .title {
  font-size: 16px;
  text-transform: uppercase;
  font-family: HelveticaNeueBold;
}

.carreira-lightbox .post-lightbox .content {
  height: 100%;
  display: flex;
  padding: 0 150px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: var(--branco);
}

@media (max-width: 992px) {
  .carreira-lightbox .post-lightbox .content {
    margin: 0 15px;
    height: auto;
    padding: 50px;
  }
}

.carreira-lightbox .lightbox-shadow {
  position: fixed;
  display: none;
  background: #00223C;
  opacity: 70%;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 5;
}

/* Carreira Grid */

.carreira-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  grid-template-areas:
    "l-lg r-sm"
    "l-lg r-lg"
    "l-sm r-lg";
}

@media (max-width: 700px) {
  .carreira-grid .grid {
    grid-template-columns: 1fr;
    grid-template-areas: inherit;
  }
}

@media (min-width: 700px) {
  .carreira-grid .grid .post:first-child {
    grid-area: l-lg;
  }

  .carreira-grid .grid .post:nth-child(2) {
    grid-area: r-sm;
    max-height: 200px;
  }

  .carreira-grid .grid .post:nth-child(3) {
    grid-area: l-sm;
    max-height: 200px;
  }

  .carreira-grid .grid .post:last-child {
    grid-area: r-lg;
  }
}

.carreira-grid .grid .post {
  position: relative;
  overflow: hidden;
}

.carreira-grid .grid .post .image {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  transition: transform 200ms linear;
}

.carreira-grid .grid .post .post-link:hover .image {
  transform: scale(1.2);
}

.carreira-grid .grid .post .above-content {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--branco);
  font-family: HelveticaNeueBold;
  z-index: 10;
}

.carreira-grid .grid .post .post-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.carreira-grid .grid .post .post-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(120deg, #00223cc9 0%, #cd8c5e63 100%);
  transition: 333ms ease-in-out;
  z-index: 2;
}

/* aside content section */

.aside-content-section .above-text {
  color: var(--laranja);
  font-size: 22px;
  font-family: HelveticaNeueBold;
}

.aside-content-section .above-text.dark {
  color: var(--azul);
  font-family: HelveticaNeueMedium;
}

@media (max-width: 992px) {
  .aside-content-section .aside-content {
    margin-top: 20px;
  }
}

.aside-content-section .content .link {
  font-size: 12px;
  color: var(--azul);
  font-family: HelveticaNeueBold;
  display: flex;
  align-items: center;
  transition: 222ms ease-in-out;
}

.aside-content-section .content .link:hover {
  color: var(--laranja);
}

.aside-content-section .content .link svg {
  margin-left: 10px;
}

.aside-content-section .content p {
  font-size: 14px;
  color: var(--azul);
}

.aside-content-section .content p.line-2 {
  line-height: 2;
}

.aside-content-section .content p.bigger {
  font-size: 42px;
  font-family: HelveticaNeueBold;
  margin-bottom: 0;
}

.aside-content-section .content span.bigger {
  font-size: 26px;
  position: relative;
  display: block;
  font-family: HelveticaNeueBold;
  margin-bottom: 0;
}

.single-post-aside .content iframe {
  width: 100%;
  margin-top: 50px;
}

.banner-carreiras{
  background: linear-gradient(136deg, #FFFFFFCC 0%, #00223C 0%, #00223CCC 61%, #CD8C5ECC 100%) 0% 0%, url('/wp-content/themes/demarest/images/carreiras/banner-carreiras.gif');
  background-size: cover;
	height: 70vh;
	background-position-y: 100%;
}


.titulo-banner-carreiras{
  display: grid;
  grid-template-columns: 2fr 5fr;
  padding: 100px 0;
  gap: 112px;
  height: 100%;
    align-items: center;
}

.titulo-banner-carreiras h1{
  color: #ffffff;
  font-size: 81px;
  font-family: HelveticaNeueLight;
}


.banner-alumni{
  background: linear-gradient(136deg, #FFFFFFCC 0%, #00223C 0%, #00223CCC 61%, #CD8C5ECC 100%) 0% 0%, url('/wp-content/themes/demarest/images/alumni/banner-alumni.gif');
  background-size: cover;
	height: 60vh;
	background-position-y: 100%;
}

.titulo-banner-alumni{
  display: grid;
  grid-template-columns: 2fr 5fr;
  padding: 100px 0;
  gap: 112px;
}

.titulo-banner-alumni h1{
  color: #ffffff;
  font-size: 80px;
  font-family: HelveticaNeueLight;
}



.banner-fale{
  background: linear-gradient(136deg, #FFFFFFCC 0%, #00223C 0%, #00223CCC 61%, #CD8C5ECC 100%) 0% 0%, url('/wp-content/themes/demarest/images/fale-conosco/banner-fale.gif');
  background-size: cover;
  width: 100%;
  height: 80vh;
}

.titulo-banner-fale{
  display: grid;
  grid-template-columns: 2fr 5fr;
  padding: 160px 0;
  gap: 112px;
}

.titulo-banner-fale h1{
  color: #ffffff;
  font-size: 80px;
  font-family: HelveticaNeueLight;
}

.grid .post img{
  object-fit: cover;
  height: 100%;
}

.banner-single-carreira img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.banner-single-carreira{
  place-content: center;
}

.grid .post{
  place-content: center;
}

.banner-cultura{
  background: linear-gradient(136deg, #FFFFFFCC 0%, #00223C 0%, #00223CCC 61%, #CD8C5ECC 100%) 0% 0%, url('/wp-content/themes/demarest/images/cultura/banner-cultura.gif');
  background-size: cover;
  width: 100%;
  height: 80vh;
}

.titulo-banner-cultura{
  display: grid;
  grid-template-columns: 2fr 5fr;
  padding: 240px 0px 0px;
  gap: 112px;
}

.titulo-banner-cultura h1{
  color: #ffffff;
  font-size: 80px;
  font-family: HelveticaNeueLight;
}

.ajuste-box-cultura img{
  object-fit: cover;
  height: 100%;
}

.ajuste-box-cultura {
  height: 100%;
}

.banner-mosaico {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AJUSTE-icones */

.grid-dois {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  justify-items: center;
}

.flex-icons {
  display: flex;
  flex-direction: row;
  padding: 40px 0 0 0;
  justify-content: space-evenly;
}

.grupo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.grupo p {
  text-align: center;
  font-size: 14px;
  color: var(--azul);
}

.pq-demarest {
    color: var(--laranja);
    font-size: 22px;
    font-family: HelveticaNeueBold;
    margin-bottom: 40px;
    padding: 0px 8px;
}

.pq-titulo {
  font-size: 26px;
  color: var(--azul);
  font-family: HelveticaNeueBold;
}

.pq-texto {
  font-size: 17px;
  color: var(--azul);
  line-height: 30px;
}

@media (max-width: 970px) {
  .grid-dois {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0px 8px;
    align-items: start;
    justify-items: start;
  }

  .flex-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 0;
    justify-content: space-evenly;
  }

  .grupo p {
    text-align: center;
    font-size: 16px;
    color: var(--azul);
}
}
.blank-modal span {
  font-weight: 400;
  font-family: 'HelveticaNeueMedium'!important;
}