@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap);
@charset "UTF-8";
/*ADMIN*/
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
/*RESET E PADRÃO */
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  font-size: 1.125rem;
  color: #707070;
  background: #f9f9f9;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
}

a {
  text-decoration: none;
  color: #707070;
}

img {
  max-width: 100%;
  display: block;
}

.button-default {
  background: #6d6e71;
  border: none;
  padding: 0.75rem 1rem;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

.adm-loader {
  width: 100%;
  height: 100vh;
  background: #fff url(/images/adm-loader.gif?88acbeac6ce4253a732c1f1c68a8800f) no-repeat center center;
  background-size: 6.25rem 6.25rem;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: none;
  -webkit-animation: fadeIn 500ms ease;
          animation: fadeIn 500ms ease;
}

.adm-loader span {
  width: 300px;
  height: 200px;
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #707070;
  display: none;
  font-weight: bold;
}

@media (min-width: 1025px) {
  .adm-loader {
    background-size: 7.5rem 7.5rem;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn-upload {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
  margin-top: 1.25rem;
}
@media (max-width: 1024px) {
  .btn-upload {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .btn-upload {
    font-size: 0.875rem;
  }
}
.btn-upload:hover {
  background-position: left;
  color: #383838;
}

.btn-upload:hover {
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}

.grecaptcha-badge {
  visibility: hidden;
}

.pulse {
  -webkit-animation-name: pulseAnimation;
          animation-name: pulseAnimation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes pulseAnimation {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.secao-info-w8 {
  margin-top: 8rem;
}

.secao-info-w8 h1 {
  text-align: center;
}

.cont-info-w8 {
  max-width: 90%;
  margin: auto;
}

.cont-info-w8 {
  border: 1px solid rgba(109, 110, 113, 0.2);
  box-shadow: 1px 2px 5px rgba(109, 110, 113, 0.2);
  border-radius: 5px;
  padding: 5%;
}

.form-info-w8 {
  margin-top: 2rem;
}

.form-info-w8 input {
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-info-w8 input[type=file] {
  width: 100%;
}

.form-info-w8 select {
  width: 100%;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-info-w8 textarea {
  clear: both;
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  resize: none;
  color: #6d6e71;
}

@media (min-width: 1025px) {
  .secao-info-w8 {
    margin-left: 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-info-w8 {
    margin-left: 25%;
  }

  .cont-info-w8 {
    max-width: 90%;
    margin: auto;
  }

  .secao-info-w8 h1 {
    text-align: start;
  }
}
.status span {
  position: relative;
  border-radius: 30px;
  padding: 4px 10px 4px 25px;
  font-size: 0.875rem;
}
.status span:after {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
}
.status .caution {
  background: #fde792;
  color: #8c7103;
}
.status .caution:after {
  background: #be9904;
}
.status .processing {
  background: #b3e6fc;
  color: #0678ab;
}
.status .processing:after {
  background: #089bdc;
}
.status .active {
  background: #cff6dd;
  color: #1fa750;
}
.status .active:after {
  background: #23bd5a;
}
.status .stoped {
  background: #f3a1a9;
  color: #85111c;
}
.status .stoped:after {
  background: #b21625;
}

.lead {
  font-size: 1rem !important;
}

.form__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form__checkboxes label {
  display: block;
  font-size: 1.125rem;
}

.form__checkboxes input[type=checkbox] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  margin: 0 0.5rem;
  border-radius: 0;
  padding: 0.5rem;
}

/*RESET E PADRÃO */
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  font-size: 1rem;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  display: block;
}

.info-header-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  padding: 1rem 5%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  right: 0;
  top: 79px;
  height: 60px;
  overflow: hidden;
  z-index: 99999;
}

.notificacao-header-dash svg {
  color: #e6e7e8;
}

@media (min-width: 1025px) {
  .usuario-header-dash h4 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .usuario-header-dash h4 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .usuario-header-dash h4 {
    font-size: 2rem;
  }
}

.menu-header-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgb(2, 0, 36);
  background-color: #545454;
  padding: 1rem;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.logo-header-dash {
  max-width: 70px;
}

.nav-header-dash {
  background-color: #545454;
  position: absolute;
  top: 79px;
  left: 0;
  display: block;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s;
  width: 100%;
}

.nav-header-dash li {
  margin: 4rem 10%;
}

.nav-header-dash li a {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: 0.3s;
}

.nav-header-dash li a:hover {
  text-decoration: underline;
  transition: 0.3s;
}

.nav-header-dash li a img {
  display: inline-block;
  margin-right: 0.25rem;
}

.menu-hamburger-dash span {
  position: relative;
  background: none;
  border: none;
  display: block;
  width: 25px;
  border-top: 3px solid #fff;
  transition: 0.3s;
  cursor: pointer;
  margin-left: 32px;
}

.menu-hamburger-dash span::after,
.menu-hamburger-dash span::before {
  position: relative;
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin-top: 8px;
  transition: 0.3s;
}

.menu-ativo-dash .info-header-dash {
  visibility: hidden;
  height: 0;
}

.menu-ativo-dash .nav-header-dash {
  height: 150vh;
  visibility: visible;
}

.menu-ativo-dash .menu-hamburger-dash span {
  border-top: none;
}

.menu-ativo-dash .menu-hamburger-dash span::before {
  transform: rotate(135deg);
  background: #fff;
}

.menu-ativo-dash .menu-hamburger-dash span::after {
  transform: rotate(-135deg);
  top: -11px;
  background: #fff;
}

.menu-dash {
  display: none;
}

@media (min-width: 1025px) {
  .logo-header-dash {
    max-width: 150px;
    margin: auto;
  }

  .menu-dash {
    display: block;
    position: absolute;
    left: 5%;
    top: 40%;
    display: flex;
  }

  .menu-dash span {
    position: relative;
    background: none;
    border: none;
    display: block;
    width: 25px;
    margin-left: 0.5rem;
    border-top: 3px solid #fff;
    transition: 0.3s;
    cursor: pointer;
  }

  .menu-dash span::after,
.menu-dash span::before {
    position: relative;
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin-top: 8px;
    transition: 0.3s;
  }

  .menu-ativo-desk .menu-dash span {
    border-top: none;
  }

  .menu-ativo-desk .menu-dash span::before {
    transform: rotate(135deg);
  }

  .menu-ativo-desk .menu-dash span::after {
    transform: rotate(-135deg);
    top: -11px;
  }

  .notificacao-header-dash {
    margin-left: 8rem;
  }

  .menu-hamburger-dash {
    display: none;
  }

  .nav-header-dash li {
    margin: 3rem 0;
  }

  .info-header-dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgb(65, 65, 65);
    background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
    padding: 2rem 5%;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    right: 0;
    height: 6.25rem;
    top: 0;
    transition: 0.3s;
    color: #fff;
    overflow: visible;
  }

  .menu-header-dash {
    display: block;
    width: 0;
    transition: 0.3s;
    height: 150vh;
    background-color: #545454;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 0;
  }

  .menu-header-dash nav {
    display: none;
  }

  .menu-ativo-desk .menu-header-dash nav {
    display: block;
  }

  .menu-ativo-desk .menu-header-dash {
    width: 25%;
    padding: 1rem 2rem;
    margin-right: 25%;
  }

  .menu-ativo-desk .info-header-dash {
    width: 75%;
  }

  .nav-header-dash {
    background: transparent;
    position: unset;
    display: block;
    height: unset;
    visibility: unset;
    overflow: auto;
    width: 100%;
    max-height: 400px;
  }

  .nav-header-dash::-webkit-scrollbar {
    width: 10px;
  }

  .nav-header-dash::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .nav-header-dash::-webkit-scrollbar-thumb {
    background: #888;
  }

  .nav-header-dash::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}
@media (min-width: 1280px) {
  .nav-header-dash li a {
    font-size: 1.25rem;
  }
}
@media (min-width: 1800px) {
  .nav-header-dash {
    overflow: unset;
    max-height: unset;
  }
}
.suporte-dash {
  margin: 8rem 0;
}

.rc-anchor-normal {
  width: 230px !important;
}

.rc-anchor-normal-footer {
  display: none !important;
}

@media (min-width: 600px) {
  .rc-anchor-normal-footer {
    display: block;
  }
}
@media (min-width: 1025px) {
  .suporte-dash {
    margin-left: 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .suporte-dash {
    margin-left: 25%;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-1-home-dash {
  margin-top: 6.25rem;
}

.cont-1-home-dash {
  max-width: 90%;
  margin: auto;
}

.itens-1-home-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  padding: 2rem;
}
.itens-1-home-dash::-webkit-scrollbar {
  height: 10px;
}
.itens-1-home-dash::-webkit-scrollbar-track {
  background: #909090;
  border-radius: 10px;
}
.itens-1-home-dash::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 10px;
}

.item-1-home-dash {
  min-width: 100%;
  background: #fff;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin: 0 1rem;
  transition: 0.2s;
}

.item-1-home-dash:hover {
  box-shadow: 10px 10px 60px -19px rgba(0, 0, 0, 0.51);
}

.item-1-home-dash div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  height: 70px;
}

.item-1-home-dash svg {
  color: #e6e7e8;
}

.item-1-home-dash h1 {
  margin-top: 2rem;
  font-size: 2rem;
}

.item-1-home-dash p {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .item-1-home-dash p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .item-1-home-dash p {
    font-size: 0.875rem;
  }
}

.item-1-home-dash a {
  margin-top: 1rem;
  text-decoration: none !important;
  color: #000 !important;
}
@media (max-width: 1024px) {
  .item-1-home-dash a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .item-1-home-dash a {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .secao-1-home-dash {
    margin: 5% 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-1-home-dash {
    margin: 5% 0 0 25%;
  }

  .itens-1-home-dash {
    overflow: hidden;
    justify-content: center;
    width: 100%;
  }

  .item-1-home-dash {
    min-width: 20%;
    padding: 2rem;
    margin: 0 1rem;
  }

  .item-1-home-dash img {
    width: 40px;
  }
}
.cont-2-home-dash {
  max-width: 90%;
  margin: auto;
}

.itens-2-home-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  padding: 2rem 0;
}
.itens-2-home-dash::-webkit-scrollbar {
  height: 10px;
}
.itens-2-home-dash::-webkit-scrollbar-track {
  background: #909090;
  border-radius: 10px;
}
.itens-2-home-dash::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 10px;
}

.item-2-home-dash {
  min-width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin: 0 1rem;
}

.header-item-2-home-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.header-item-2-home-dash h1 {
  font-size: 1.5rem;
}

.header-item-2-home-dash svg {
  color: rgba(255, 255, 255, 0.4);
}

.txt-item-2-home-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-end;
  color: #fff;
  margin-top: 1rem;
}

.txt-item-2-home-dash svg {
  color: #fff;
  font-size: 3rem;
  margin-top: 1rem;
}

.txt-item-2-home-dash h1 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.txt-item-2-home-dash p {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1024px) {
  .txt-item-2-home-dash p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-2-home-dash p {
    font-size: 0.875rem;
  }
}

.resultados-item-2-home-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-end;
}

.item1-2-home-dash {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
}

.item2-2-home-dash {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
}

.item3-2-home-dash {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
}

.item4-2-home-dash {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
}

@media (min-width: 1025px) {
  .secao-2-home-dash {
    margin: 2rem 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-2-home-dash {
    margin: 2rem 0 0 25%;
  }

  .itens-2-home-dash {
    width: 100%;
  }

  .item-2-home-dash {
    min-width: 35%;
    padding: 2rem;
    margin: 0 1rem;
  }

  .item-2-home-dash img {
    width: 40px;
  }
}
.secao-info-blog {
  margin-top: 8rem;
}

.cont-info-blog {
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.cont-info-blog {
  border: 1px solid rgba(109, 110, 113, 0.2);
  box-shadow: 1px 2px 5px rgba(109, 110, 113, 0.2);
  border-radius: 5px;
  padding: 5%;
}

.form-info-blog {
  margin-top: 2rem;
}

.form-info-blog input {
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-info-blog input[type=file] {
  width: 100%;
}

.form-info-blog select {
  width: 100%;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-info-blog textarea {
  clear: both;
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  resize: none;
  color: #6d6e71;
}

@media (min-width: 1025px) {
  .secao-info-blog {
    margin-left: 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-info-blog {
    margin-left: 25%;
  }

  .cont-info-blog {
    max-width: 90%;
    margin: auto;
    text-align: start;
  }

  .form-info-blog input {
    width: 69%;
    float: left;
  }

  .form-info-blog select {
    width: 30%;
    float: right;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-lista {
  margin-top: 176px;
}

.cont-lista {
  max-width: 90%;
  margin: auto;
}

.order-lista {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  margin: 3rem 0;
}

.order-lista h1 {
  font-size: 1.25rem;
  margin-right: 1rem;
}

.item-lista {
  margin: 2rem 0;
}

.item-lista div {
  margin: 1rem 0;
  text-align: center;
}

.titulo-lista {
  text-align: center;
}

.titulo-lista select {
  cursor: pointer;
  display: block;
  text-align: center;
  width: 300px;
  margin: auto;
}

.titulo-lista a {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
  font-size: 1rem;
  margin-top: 1rem;
  display: block;
  width: 300px;
  margin: 1rem auto;
  transition: 0.3s;
  text-decoration: none !important;
  text-transform: uppercase !important;
}
@media (max-width: 1024px) {
  .titulo-lista a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .titulo-lista a {
    font-size: 0.875rem;
  }
}
.titulo-lista a:hover {
  background-position: left;
  color: #383838;
}

.titulo-lista a:hover {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  background: rgb(65, 65, 65);
  background: linear-gradient(309deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
  color: #fff !important;
  transform: scale(1.1);
  transition: 0.3s;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .titulo-lista a:hover {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .titulo-lista a:hover {
    font-size: 0.875rem;
  }
}
.titulo-lista a:hover:hover {
  background-position: left;
  color: #383838;
}

.acoes-item-lista select {
  background-color: #fff;
  color: rgb(65, 65, 65);
  border: 2px solid rgb(65, 65, 65);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.acoes-item-lista select:hover {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
  color: #fff;
  border: 2px solid rgb(65, 65, 65);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.acoes-item-lista option {
  color: #000;
}

.info-lista img {
  width: 9.375rem;
  height: 9.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

.pagination {
  padding: 0 !important;
}

.page-item.active .page-link {
  background-color: #383838 !important;
  border-color: #383838 !important;
}

.page-item .page-link {
  color: #383838;
}

.info-lista {
  overflow: auto;
}

.thumbnail-design {
  margin: 1rem auto;
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
      0 2px 4px -2px var(--tw-shadow-color);
}

@media (min-width: 1025px) {
  .secao-lista {
    margin: 10% 0 10% 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-lista {
    margin: 10% 0 10% 25%;
  }

  .titulo-lista {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .order-lista {
    justify-content: flex-end;
  }

  .info-lista {
    margin-top: 6rem;
    overflow: unset;
  }

  .td-titulo-lanc {
    max-width: 35rem;
  }

  .item-lista {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
  }

  .item-lista div {
    text-align: start;
  }

  .img-item-lista,
.status-item-lista,
.valor-item-lista,
.acoes-item-lista {
    width: 25%;
  }

  .titulo-item-lista {
    width: 50%;
  }

  .titulo-lista a {
    margin-top: 0;
  }

  .img-item-lista img {
    margin: 0;
  }

  .titulo-lista a,
.titulo-lista select {
    width: unset;
    margin: unset;
  }
}
.modal-detalhes {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: red;
  display: none;
}

.table {
  width: 100%;
  box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
}
.table thead th {
  border: none;
  padding: 30px;
  color: #b8b8b8;
}
.table thead tr {
  background: #fff;
  border-bottom: 4px solid #eceffa;
}
.table tbody tr {
  margin-bottom: 10px;
  border-bottom: 4px solid #f8f9fd;
}
.table tbody tr:last-child() {
  border-bottom: 0;
}
.table tbody th,
.table tbody td {
  border: none;
  padding: 1rem;
  background: #fff;
  vertical-align: middle;
}
.table tbody td.status span {
  position: relative;
  border-radius: 30px;
  padding: 4px 10px 4px 25px;
  font-size: 0.875rem;
}
.table tbody td.status span:after {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
}
.table tbody td.status .active {
  background: #cff6dd;
  color: #1fa750;
}
.table tbody td.status .active:after {
  background: #23bd5a;
}
.table tbody td.status .stoped {
  background: #f3a1a9;
  color: #85111c;
}
.table tbody td.status .stoped:after {
  background: #b21625;
}

.titulo-lista {
  margin: 2rem 0;
}

.titulo-lista input {
  border-color: rgba(112, 112, 112, 0.3490196078);
}

.submit-search {
  background-color: #c2c2c2 !important;
  color: #444444;
  width: 42px;
  height: 42px;
  display: inline;
  margin-left: -4px;
  margin-bottom: 1rem;
}

.status__item {
  background: #f2f2f2;
  border: 1px solid rgba(112, 112, 112, 0.3490196078);
  border-radius: 1rem;
  color: #444444;
  padding: 1rem;
  min-width: 170px;
  margin: 1rem 0;
}

.status__item div {
  margin: auto;
  margin-bottom: 1rem;
  background: #c6c6c6;
  border-radius: 50%;
  color: #444444;
  display: inline-block;
  padding: 0.5rem 0.75rem;
}

.status__item p {
  font-size: 14px;
  margin: 0;
}

.status__item span {
  font-size: 20px;
  font-weight: bold;
}

.options {
  position: relative;
}

.button-options {
  background: #414141;
  display: inline-block;
  padding: 0.5rem 1.125rem;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.items-options {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 200px;
  background: #fff;
  z-index: 10;
  padding: 0.5rem;
  border-radius: 1rem;
  display: none;
}

.items-options a {
  display: block;
  color: #414141;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.items-options a:hover {
  background: #ebebeb;
  color: #414141;
}

.info-lista > table > tbody > tr > td:nth-child(3) {
  width: 500px;
}

.info-lista > table > tbody > tr > td:nth-child(6) {
  width: 200px;
}

.info-lista > table > tbody > tr > td:last-child {
  width: 250px;
}

.modal-body p {
  text-align: start;
}

@media (min-width: 1024px) {
  .status__itens {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .status__item {
    background: #f2f2f2;
    border: 1px solid rgba(112, 112, 112, 0.3490196078);
    border-radius: 1rem;
    color: #444444;
    padding: 1rem;
    min-width: 170px;
    margin: 0;
  }

  .status__item span {
    font-size: 24px;
  }

  .submit-search {
    margin-bottom: 0;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-passos {
  margin-top: 10rem;
}

.cont-passos {
  max-width: 90%;
  margin: auto;
}

.itens-passos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  padding: 2rem 0;
}

.itens-passos span {
  font-weight: bold;
  font-size: 2rem;
  color: rgba(109, 110, 113, 0.3);
}

.item-passos {
  min-width: 100%;
  text-align: center;
}

.item-passos h1 {
  font-size: 1.5rem;
  color: rgba(109, 110, 113, 0.3);
}

.item-ativo h1 {
  color: #6d6e71;
}

.progress-bar {
  background: rgb(65, 65, 65);
  background: linear-gradient(90deg, rgb(65, 65, 65) 0%, rgb(99, 99, 99) 100%);
}

@media (min-width: 1025px) {
  .secao-passos {
    margin: 8% 0 0 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-passos {
    margin: 8% 0 0 25%;
  }

  .itens-passos {
    justify-content: center;
  }

  .item-passos {
    min-width: unset;
    margin: 0 1rem;
  }

  .item-passos h1 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1281px) {
  .item-passos h1 {
    font-size: 1.5rem;
  }
}
.secao-info-corretores {
  margin-top: 4rem;
}

.secao-info-admin {
  margin-top: 8rem;
}

.cont-informacoes {
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.cont-informacoes {
  border: 1px solid rgba(109, 110, 113, 0.2);
  box-shadow: 1px 2px 5px rgba(109, 110, 113, 0.2);
  border-radius: 5px;
  padding: 5%;
}

.form-informacoes {
  margin-top: 2rem;
}

.form-informacoes input {
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-informacoes select {
  width: 100%;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.form-informacoes textarea {
  width: 100%;
  background: none;
  border: 1px solid RGBA(109, 110, 113, 0.26);
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  resize: none;
  color: #6d6e71;
}

@media (min-width: 1025px) {
  .secao-informacoes {
    margin-left: 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-informacoes {
    margin-left: 25%;
  }

  .cont-informacoes {
    max-width: 90%;
    margin: auto;
    text-align: start;
  }

  .secao-info-corretores {
    margin-top: 4rem;
  }

  .secao-info-admin {
    margin-top: 8rem;
  }
}
.secao-nav {
  margin: 4rem auto;
  position: relative;
}

.cont-nav {
  max-width: 90%;
  margin: auto;
}

.cont-nav button {
  background: #6d6e71;
  border: none;
  padding: 0.75rem 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
}

.cont-nav a {
  background: #6d6e71;
  border: none;
  padding: 0.75rem 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 0px !important;
  cursor: pointer;
}

.btn-prev-nav {
  position: absolute;
}

.btn-next-nav {
  position: absolute;
  right: 5%;
}

.btn-next-nav button {
  background: #00b7bf;
  transition: 0.3s;
}

.btn-next-nav-atualizar {
  position: absolute;
  right: 5%;
}

.btn-next-nav-atualizar button {
  background: #00b7bf;
  transition: 0.3s;
}

.btn-next-nav-disabled {
  opacity: 0.5;
}

@media (min-width: 1025px) {
  .cont-nav button {
    font-size: 1.25rem;
  }

  .cont-nav a {
    font-size: 1.25rem;
  }

  .btn-prev-nav {
    left: 5%;
    transition: 0.3s;
  }

  .menu-ativo-desk .btn-prev-nav {
    left: 30%;
  }

  .post-inputs {
    display: flex;
  }

  .post-inputs div {
    margin: 0 0.5rem;
  }

  .post-inputs div:first-child {
    width: 75%;
  }

  .post-inputs div:last-child {
    width: 25%;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.cont-midia {
  max-width: 90%;
  margin: auto;
}

.cont-midia-1 {
  max-width: 90%;
  margin: auto;
  margin-top: 10px;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  margin-top: 2rem;
}

.imagem-midia {
  border: 1px solid rgba(109, 110, 113, 0.3);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5%;
  margin-top: 2rem;
  text-align: center;
}

.imagem-midia h1 {
  font-size: 1.5rem;
}

.img-imagem-midia {
  margin: 2rem 0;
}

.img-imagem-midia img {
  margin: auto;
}

.imagem-midia h2 {
  font-size: 1rem;
}

.itens-display-midia {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  margin-top: 2rem;
  padding: 2rem 0;
}

.item-display-midia {
  min-width: 100%;
}

.item-display-midia img {
  max-width: 150px;
  margin: auto;
}

.video-midia {
  border: 1px solid rgba(109, 110, 113, 0.3);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5%;
  margin-top: 2rem;
  text-align: center;
}

.video-midia h1 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.video-midia input {
  width: 100%;
  background: none;
  border: 2px solid #6d6e71;
  background-color: #f6f6f6;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

.btn-loading {
  position: relative;
}

.btn-loading span {
  visibility: hidden;
  opacity: 0;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid transparent;
  border-top-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: loading-button 500ms linear infinite;
          animation: loading-button 500ms linear infinite;
  z-index: 10;
}

.dropzone .dz-preview {
  display: block;
  width: 7.5rem;
  margin: 16px auto;
}

.text-danger {
  display: block;
}

@-webkit-keyframes loading-button {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-button {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
@media (min-width: 432px) {
  .dropzone .dz-preview {
    display: inline-block;
    width: unset;
    margin: 16px;
  }
}
@media (min-width: 1025px) {
  .secao-midia {
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-midia {
    margin-left: 25%;
  }

  .secao-midia-1 {
    margin: 0 0 0 0;
  }

  .imagem-midia {
    text-align: start;
  }

  .imagem-midia h2 {
    text-align: center;
  }

  .itens-display-midia {
    justify-content: center;
  }

  .item-display-midia {
    min-width: unset;
    margin: 0 0.5rem;
  }

  .video-midia h1 {
    text-align: start;
  }

  .dropzone {
    height: 100%;
  }

  .text-danger {
    display: unset;
  }
}
.modal {
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.modal-body span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-top-color: #000;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: loading-button 500ms linear infinite;
          animation: loading-button 500ms linear infinite;
  z-index: 10;
}

/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-detalhes {
  margin-top: 4rem;
}

.cont-detalhes {
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.cont-detalhes {
  border: 1px solid rgba(109, 110, 113, 0.3);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5%;
}

.form-detalhes {
  margin-top: 2rem;
}

.form-detalhes input {
  width: 100%;
  background: none;
  border: 2px solid #6d6e71;
  background-color: #f6f6f6;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 5px;
  color: #6d6e71;
}

@media (min-width: 1025px) {
  .secao-detalhes {
    margin: 4rem 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-detalhes {
    margin: 4rem 0 0 25%;
  }

  .cont-detalhes {
    max-width: 90%;
    margin: auto;
    text-align: start;
  }

  .form-detalhes {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .form-detalhes input {
    width: 95%;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-info {
  margin-top: 4rem;
}

.cont-info {
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.cont-info {
  border: 1px solid rgba(109, 110, 113, 0.3);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5%;
}

.form-info {
  margin-top: 2rem;
}

.form-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.item-form-info {
  margin: 1rem 0;
}

@media (min-width: 1025px) {
  .secao-info {
    margin: 4rem 0;
    transition: 0.3s;
  }

  .menu-ativo-desk .secao-info {
    margin: 4rem 0 0 25%;
  }

  .cont-info {
    max-width: 90%;
    margin: auto;
    text-align: start;
  }
}
/*FRONT*/
/*RESET E PADRÃO */
* {
  box-sizing: border-box;
  font-family: "Gayathri", sans-serif;
}

html {
  overflow: initial;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #707070;
  overflow-x: hidden;
  background: #fff;
}

input,
textarea,
label,
button,
select,
option {
  font-family: "Gayathri", sans-serif;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
}

a {
  text-decoration: none;
  color: #707070;
}

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.swiper-pagination-bullet {
  background: #d2d4d3;
}

.swiper-pagination-bullet-active {
  background: #7d7c81;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

[type=text]:focus,
[type=email]:focus,
[type=url]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=week]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
  outline-offset: 0 !important;
  outline-width: 0 !important;
  --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: transparent !important;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
      var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
      calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.noUi-connect {
  background-color: #272628;
}

.noUi-tooltip {
  display: none;
}

.noUi-active .noUi-tooltip {
  display: block;
}

.loader {
  width: 100%;
  height: 100vh;
  background: #000 url(/img/site/loader.gif) no-repeat center center;
  background-size: 40%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}

.modal-bg-ativo {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(107, 107, 107, 0.8);
}

@media (min-width: 1025px) {
  .loader {
    background-size: 15%;
  }
}
.erro404 {
  text-align: center;
}

.erro404 h3 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .erro404 h3 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .erro404 h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .erro404 h3 {
    font-size: 2rem;
  }
}

.erro404 a {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .erro404 a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .erro404 a {
    font-size: 0.875rem;
  }
}
.erro404 a:hover {
  background-position: left;
  color: #383838;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-text {
  color: #fff;
  margin-top: 1rem;
}

.recaptcha-text a {
  color: #fff;
  transition: 0.3s;
}

.recaptcha-text a:hover {
  color: #707070;
}

[data-anime] {
  opacity: 0;
  transition: 2s;
}

[data-anime=hr] {
  transition: 2.5s;
}

[data-anime=left] {
  transform: translate3d(-50px, 0, 0);
}

[data-anime=right] {
  transform: translate3d(0, 0, 0);
}
@media (min-width: 1025px) {
  [data-anime=right] {
    transform: translate3d(50px, 0, 0);
  }
}

[data-anime=top] {
  transform: translate3d(0, -50px, 0);
}

[data-anime=bottom] {
  transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-anime=hr].animate {
  width: 100%;
}

.cta-whats {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 500;
  display: block;
  cursor: pointer;
  width: 3.125rem;
}

.cel-cta-whats {
  position: fixed;
  bottom: 4rem;
  right: 1.5rem;
  z-index: 500;
  display: none;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s;
}

.cta-whats img {
  margin-left: auto;
}

.cel-cta-whats-ativo {
  display: block;
  visibility: visible;
}

.item-cta-whats img {
  max-width: 15%;
}

.item-cta-whats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-cta-whats {
  margin: 1rem 0;
  gap: 1rem;
}

.item-cta-whats p {
  width: 11rem;
  background: #aeaeae;
  color: #383838;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-right: 0.75rem;
}

@media (min-width: 1025px) {
  .cta-whats {
    bottom: 2rem;
    right: 2rem;
    width: 6.25rem;
  }

  .cel-cta-whats {
    bottom: 6rem;
    right: 2rem;
  }

  .cta-whats img {
    max-width: 100%;
  }

  .item-cta-whats {
    margin-right: 0.75rem;
  }

  .item-cta-whats img {
    max-width: 100%;
  }
}
.secao-hero-w8 {
  height: 50vh;
  background-color: #606060;
  position: relative;
}

.secao-hero-w8 img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.txt-hero-w8 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}

.titulo-hero-w8 {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-hero-w8 h1,
.titulo-hero-w8 h2,
.titulo-hero-w8 h3,
.titulo-hero-w8 h4,
.titulo-hero-w8 h5,
.titulo-hero-w8 h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-hero-w8 h1,
.titulo-hero-w8 h2,
.titulo-hero-w8 h3,
.titulo-hero-w8 h4,
.titulo-hero-w8 h5,
.titulo-hero-w8 h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-hero-w8 h1,
.titulo-hero-w8 h2,
.titulo-hero-w8 h3,
.titulo-hero-w8 h4,
.titulo-hero-w8 h5,
.titulo-hero-w8 h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-hero-w8 h1,
.titulo-hero-w8 h2,
.titulo-hero-w8 h3,
.titulo-hero-w8 h4,
.titulo-hero-w8 h5,
.titulo-hero-w8 h6 {
    font-size: 2rem;
  }
}
.titulo-hero-w8 hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.titulo-hero-w8 h1 {
  color: #fff;
}
@media (min-width: 1025px) {
  .titulo-hero-w8 h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-hero-w8 h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-hero-w8 h1 {
    font-size: 2rem;
  }
}

.titulo-hero-w8 hr {
  width: 100%;
  border-color: #ffffff;
}

@media (min-width: 1025px) {
  .titulo-hero-w8 h1 {
    width: 50%;
  }
}
.secao-content-w8 {
  padding: 5%;
}

.titulo-content-w8 {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-content-w8 h1,
.titulo-content-w8 h2,
.titulo-content-w8 h3,
.titulo-content-w8 h4,
.titulo-content-w8 h5,
.titulo-content-w8 h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-content-w8 h1,
.titulo-content-w8 h2,
.titulo-content-w8 h3,
.titulo-content-w8 h4,
.titulo-content-w8 h5,
.titulo-content-w8 h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-content-w8 h1,
.titulo-content-w8 h2,
.titulo-content-w8 h3,
.titulo-content-w8 h4,
.titulo-content-w8 h5,
.titulo-content-w8 h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-content-w8 h1,
.titulo-content-w8 h2,
.titulo-content-w8 h3,
.titulo-content-w8 h4,
.titulo-content-w8 h5,
.titulo-content-w8 h6 {
    font-size: 2rem;
  }
}
.titulo-content-w8 hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

@media (min-width: 1025px) {
  .titulo-content-w8 h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-content-w8 h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-content-w8 h2 {
    font-size: 2rem;
  }
}

.txt-content-w8 {
  padding: 0 5%;
  margin-top: 2rem;
}

.txt-content-w8 h2,
.txt-content-w8 h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

@media (max-width: 1024px) {
  .txt-content-w8 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-content-w8 {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .titulo-content-w8 h2 {
    width: 25%;
  }

  .txt-content-w8 {
    margin-top: 4rem;
  }
}
#slider {
  height: 10px;
}

#slider .noUi-handle::before,
#slider .noUi-handle::after {
  display: none;
}

#slider .noUi-handle {
  height: 18px;
  width: 18px;
  top: -5px;
  right: -9px;
  border-radius: 9px;
  background: #3b3b3b;
  box-shadow: none;
}

@-webkit-keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}

@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@-webkit-keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-hero-lanc {
  height: 100vh;
  position: relative;
}

.txt-hero-lanc {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}

.txt-hero-lanc h1 {
  color: #fff;
  text-shadow: 10px 5px 5px rgba(112, 112, 112, 0.5);
  margin-bottom: 2rem;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-hero-lanc h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-hero-lanc h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-lanc h1 {
    font-size: 2rem;
  }
}

.txt-hero-lanc a {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .txt-hero-lanc a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-lanc a {
    font-size: 0.875rem;
  }
}
.txt-hero-lanc a:hover {
  background-position: left;
  color: #383838;
}

@media (min-width: 1025px) {
  .txt-hero-lanc {
    padding-top: 100px;
    padding-left: 100px;
    text-align: start;
    max-width: 600px;
  }
}
.secao-1-lanc {
  background-color: #383838;
}

.cont-1-lanc {
  max-width: 90%;
  margin: auto;
  padding: 2rem 0;
}

.img-1-lanc {
  margin: auto;
  max-width: 80%;
}

.img-1-lanc img {
  width: 100%;
}

.txt-1-lanc {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
}

.txt-1-lanc h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-1-lanc h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-1-lanc h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-1-lanc h2 {
    font-size: 2rem;
  }
}

.txt-1-lanc p {
  margin: 1.5rem 0;
}
@media (max-width: 1024px) {
  .txt-1-lanc p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-1-lanc p {
    font-size: 0.875rem;
  }
}

.txt-1-lanc a {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-1-lanc a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-1-lanc a {
    font-size: 0.875rem;
  }
}
.txt-1-lanc a:hover {
  background-position: left;
  color: #fff;
}

@media (min-width: 1025px) {
  .cont-1-lanc {
    max-width: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 5% 0;
  }

  .img-1-lanc,
.txt-1-lanc {
    width: 50%;
  }

  .txt-1-lanc {
    text-align: start;
    margin: 0 5%;
  }

  .txt-1-lanc p {
    margin: 2rem 0;
  }
}
@media (min-width: 1025px) {
  .secao-2-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-2-lanc {
    margin-top: 64px;
  }
}

.cont-2-lanc {
  max-width: 90%;
  margin: auto;
}

.img-2-lanc {
  margin: auto;
  max-width: 80%;
}

.img-2-lanc img {
  width: 100%;
}

.txt-2-lanc {
  margin-top: 2rem;
  text-align: center;
  color: #707070;
}

.titulo-2-lanc {
  display: flex;
  align-items: center;
}
.titulo-2-lanc h1,
.titulo-2-lanc h2,
.titulo-2-lanc h3,
.titulo-2-lanc h4,
.titulo-2-lanc h5,
.titulo-2-lanc h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-2-lanc h1,
.titulo-2-lanc h2,
.titulo-2-lanc h3,
.titulo-2-lanc h4,
.titulo-2-lanc h5,
.titulo-2-lanc h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-2-lanc h1,
.titulo-2-lanc h2,
.titulo-2-lanc h3,
.titulo-2-lanc h4,
.titulo-2-lanc h5,
.titulo-2-lanc h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-2-lanc h1,
.titulo-2-lanc h2,
.titulo-2-lanc h3,
.titulo-2-lanc h4,
.titulo-2-lanc h5,
.titulo-2-lanc h6 {
    font-size: 2rem;
  }
}
.titulo-2-lanc hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.titulo-2-lanc h2 {
  margin: 0;
  font-weight: bold;
}

.titulo-2-lanc hr {
  display: none;
}

.txt-2-lanc p {
  margin: 1.5rem 0;
}
@media (max-width: 1024px) {
  .txt-2-lanc p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-2-lanc p {
    font-size: 0.875rem;
  }
}

.txt-2-lanc a {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-2-lanc a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-2-lanc a {
    font-size: 0.875rem;
  }
}
.txt-2-lanc a:hover {
  background-position: left;
  color: #fff;
}

@media (min-width: 1025px) {
  .cont-2-lanc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: unset;
  }

  .titulo-2-lanc h2 {
    max-width: 420px;
  }

  .titulo-2-lanc hr {
    display: block;
  }

  .img-2-lanc,
.txt-2-lanc {
    width: 50%;
  }

  .txt-2-lanc {
    text-align: start;
    margin-left: 5%;
  }

  .txt-2-lanc p {
    margin: 2rem 0;
    margin-right: 5%;
  }
}
.secao-3-lanc {
  position: relative;
}
@media (min-width: 1025px) {
  .secao-3-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-3-lanc {
    margin-top: 64px;
  }
}

.cont-3-lanc {
  max-width: 90%;
  margin: auto;
}

.itens-3-lanc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 1.5rem;
}

.itens-3-lanc::after {
  content: "→";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 10%;
  color: #000;
  -webkit-animation: seta 0.5s ease-in 0s infinite alternate;
          animation: seta 0.5s ease-in 0s infinite alternate;
}

.item-3-lanc {
  min-width: 100%;
  text-align: center;
}

.img-item-3-lanc {
  height: 75px;
}

.img-item-3-lanc img {
  max-width: 50px;
  margin: auto;
}

.item-3-lanc h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

@media (min-width: 1025px) {
  .itens-3-lanc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 1rem;
  }

  .itens-3-lanc::after {
    content: none;
  }

  .item-3-lanc {
    min-width: unset;
    margin: 0 3rem;
  }

  .item-3-lanc img {
    max-width: 60px;
  }
}
@media (min-width: 1025px) {
  .secao-4-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-4-lanc {
    margin-top: 64px;
  }
}

.cont-4-lanc {
  max-width: 90%;
  margin: auto;
}

.txt-4-lanc {
  text-align: center;
  font-weight: bold;
}

.btns-4-lanc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  padding: 1.5rem 0;
}

.btn-4-lanc {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.3s;
  color: #909090;
  display: block;
  min-width: 100%;
}

.btn-4-ativo {
  text-decoration: underline;
  color: #333;
}

.img-4-lanc {
  margin-top: 2rem;
  display: none;
}

.img-4-ativo {
  display: block;
}

.img-4-lanc img {
  max-width: 80%;
  margin: auto;
}

@media (min-width: 1025px) {
  .txt-4-lanc {
    text-align: start;
  }

  .img-4-lanc img {
    max-width: 50%;
    margin: auto;
  }

  .btns-4-lanc {
    justify-content: flex-start;
  }

  .btn-4-lanc {
    min-width: unset;
    margin: 0 1rem;
  }
}
.secao-5-lanc {
  position: relative;
}
@media (min-width: 1025px) {
  .secao-5-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-5-lanc {
    margin-top: 64px;
  }
}

.titulo-5-lanc {
  display: flex;
  align-items: center;
  margin: 0 0 0 5%;
  font-weight: bold;
}
.titulo-5-lanc h1,
.titulo-5-lanc h2,
.titulo-5-lanc h3,
.titulo-5-lanc h4,
.titulo-5-lanc h5,
.titulo-5-lanc h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-5-lanc h1,
.titulo-5-lanc h2,
.titulo-5-lanc h3,
.titulo-5-lanc h4,
.titulo-5-lanc h5,
.titulo-5-lanc h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-5-lanc h1,
.titulo-5-lanc h2,
.titulo-5-lanc h3,
.titulo-5-lanc h4,
.titulo-5-lanc h5,
.titulo-5-lanc h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-5-lanc h1,
.titulo-5-lanc h2,
.titulo-5-lanc h3,
.titulo-5-lanc h4,
.titulo-5-lanc h5,
.titulo-5-lanc h6 {
    font-size: 2rem;
  }
}
.titulo-5-lanc hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.itens-5-lanc {
  margin-top: 4rem;
}

.item-5-lanc {
  margin: 0 1rem;
}

.item-5-lanc img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.glider-prev-secao5-lanc {
  position: absolute;
  left: 0;
  top: 55%;
  background: none;
  border: none;
  cursor: pointer;
}

.glider-next-secao5-lanc {
  position: absolute;
  right: 0;
  top: 55%;
  background: none;
  border: none;
  cursor: pointer;
}

.glider-prev-secao5-lanc img,
.glider-next-secao5-lanc img {
  max-width: 2.5rem;
}

@media (min-width: 1025px) {
  .secao-6-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-6-lanc {
    margin-top: 64px;
  }
}

.titulo-6-lanc {
  display: flex;
  align-items: center;
  margin: 0 0 0 5%;
  font-weight: bold;
}
.titulo-6-lanc h1,
.titulo-6-lanc h2,
.titulo-6-lanc h3,
.titulo-6-lanc h4,
.titulo-6-lanc h5,
.titulo-6-lanc h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-6-lanc h1,
.titulo-6-lanc h2,
.titulo-6-lanc h3,
.titulo-6-lanc h4,
.titulo-6-lanc h5,
.titulo-6-lanc h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-6-lanc h1,
.titulo-6-lanc h2,
.titulo-6-lanc h3,
.titulo-6-lanc h4,
.titulo-6-lanc h5,
.titulo-6-lanc h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-6-lanc h1,
.titulo-6-lanc h2,
.titulo-6-lanc h3,
.titulo-6-lanc h4,
.titulo-6-lanc h5,
.titulo-6-lanc h6 {
    font-size: 2rem;
  }
}
.titulo-6-lanc hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.video-6-lanc {
  max-width: 90%;
  margin: auto;
  margin-top: 4rem;
  position: relative;
}

.video-6-lanc a img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.play-6-lanc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  max-width: 50px;
  z-index: 10;
}

.video-6-lanc:hover .play-6-lanc {
  z-index: -1;
  opacity: 0;
}

@media (min-width: 1025px) {
  .video-6-lanc {
    max-width: 1200px;
  }

  .play-6-lanc {
    max-width: 200px;
  }
}
@media (min-width: 1025px) {
  .secao-7-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-7-lanc {
    margin-top: 64px;
  }
}

.cont-7-lanc {
  max-width: 90%;
  margin: auto;
  padding: 5% 0;
}

.txt-7-lanc {
  margin-top: 4rem;
  text-align: center;
}

.txt-7-lanc h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-7-lanc h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-7-lanc h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-7-lanc h2 {
    font-size: 2rem;
  }
}

.txt-7-lanc p {
  margin: 1rem 0;
}
@media (max-width: 1024px) {
  .txt-7-lanc p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-7-lanc p {
    font-size: 0.875rem;
  }
}

.form-7-lanc {
  margin-top: 2rem;
  text-align: center;
}

.form-7-lanc input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
}

.form-7-lanc input::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc input:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc input::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  resize: none;
  font-size: 1rem;
}

.form-7-lanc textarea::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc textarea:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc textarea::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-7-lanc button {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  width: 40%;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .form-7-lanc button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .form-7-lanc button {
    font-size: 0.875rem;
  }
}
.form-7-lanc button:hover {
  background-position: left;
  color: #383838;
}

@media (min-width: 1025px) {
  .secao-7-lanc {
    margin-top: -3rem;
  }

  .txt-7-lanc {
    margin-top: 4rem;
  }

  .form-7-lanc input {
    width: 50%;
  }

  .form-7-lanc textarea {
    width: 50%;
  }

  .form-7-lanc button {
    width: 20%;
    margin: 2rem auto;
    display: block;
  }
}
@media (min-width: 1025px) {
  .secao-8-lanc {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-8-lanc {
    margin-top: 64px;
  }
}

.titulo-8-lanc {
  display: flex;
  align-items: center;
  margin: 0 0 0 5%;
  font-weight: bold;
}
.titulo-8-lanc h1,
.titulo-8-lanc h2,
.titulo-8-lanc h3,
.titulo-8-lanc h4,
.titulo-8-lanc h5,
.titulo-8-lanc h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-8-lanc h1,
.titulo-8-lanc h2,
.titulo-8-lanc h3,
.titulo-8-lanc h4,
.titulo-8-lanc h5,
.titulo-8-lanc h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-8-lanc h1,
.titulo-8-lanc h2,
.titulo-8-lanc h3,
.titulo-8-lanc h4,
.titulo-8-lanc h5,
.titulo-8-lanc h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-8-lanc h1,
.titulo-8-lanc h2,
.titulo-8-lanc h3,
.titulo-8-lanc h4,
.titulo-8-lanc h5,
.titulo-8-lanc h6 {
    font-size: 2rem;
  }
}
.titulo-8-lanc hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.itens-8-lanc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  margin: 2rem 5%;
}

.item-8-lanc {
  position: relative;
  min-width: 80%;
  margin: 1rem 2rem;
}

.img-item-8-lanc img {
  width: 100%;
  transition: 0.3s;
}

.txt-item-8-lanc {
  position: absolute;
  bottom: 40px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 15% 5%;
  color: #fff;
}

@media (max-width: 1024px) {
  .txt-item-8-lanc span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-8-lanc span {
    font-size: 0.875rem;
  }
}

.txt-item-8-lanc h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.btn-item-8-lanc {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.btn-item-8-lanc a {
  background: linear-gradient(to left, #383838 50%, #404040 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #f5f5f5;
  font-weight: bold;
  background-size: 200%;
  transition: 0.4s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media (max-width: 1024px) {
  .btn-item-8-lanc a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .btn-item-8-lanc a {
    font-size: 0.875rem;
  }
}
.btn-item-8-lanc a:hover {
  background-position: left;
  color: #f9f9f9;
}

@media (min-width: 481px) {
  .item-8-lanc {
    max-width: 70%;
  }
}
@media (min-width: 1025px) {
  .cont-8-lanc {
    padding: 5% 0;
  }

  .itens-8-lanc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .item-8-lanc {
    min-width: unset;
    max-width: 70%;
    margin: 0 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
  }

  .txt-item-8-lanc {
    visibility: hidden;
    height: 0;
    transition: 0.5s;
    overflow: hidden;
    padding: 0 5%;
  }

  .item-8-lanc:hover .txt-item-8-lanc {
    visibility: visible;
    height: 200px;
    padding: 15% 5%;
  }

  .item-8-lanc:hover .img-item-8-lanc img {
    filter: blur(2px);
  }
}
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-hero-praias {
  position: relative;
  height: 100vh;
}

.txt-hero-praias {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}

.txt-hero-praias h1 {
  color: #fff;
  text-shadow: 10px 5px 5px rgba(112, 112, 112, 0.5);
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-hero-praias h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-hero-praias h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-praias h1 {
    font-size: 2rem;
  }
}

.txt-hero-praias a {
  margin-top: 32px;
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-hero-praias a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-praias a {
    font-size: 0.875rem;
  }
}
.txt-hero-praias a:hover {
  background-position: left;
  color: #383838;
}

@media (min-width: 1025px) {
  .txt-hero-praias {
    padding-top: 100px;
    padding-left: 100px;
    text-align: start;
  }
}
.secao-1-praias {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .secao-1-praias {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-1-praias {
    margin-top: 64px;
  }
}

.cont-1-praias {
  max-width: 90%;
  margin: auto;
}

.img-1-praias img {
  width: 80%;
  margin: auto;
}

.titulo-1-praias {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-1-praias h1,
.titulo-1-praias h2,
.titulo-1-praias h3,
.titulo-1-praias h4,
.titulo-1-praias h5,
.titulo-1-praias h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-1-praias h1,
.titulo-1-praias h2,
.titulo-1-praias h3,
.titulo-1-praias h4,
.titulo-1-praias h5,
.titulo-1-praias h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-1-praias h1,
.titulo-1-praias h2,
.titulo-1-praias h3,
.titulo-1-praias h4,
.titulo-1-praias h5,
.titulo-1-praias h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-1-praias h1,
.titulo-1-praias h2,
.titulo-1-praias h3,
.titulo-1-praias h4,
.titulo-1-praias h5,
.titulo-1-praias h6 {
    font-size: 2rem;
  }
}
.titulo-1-praias hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-1-praias {
  margin-top: 2rem;
}

.txt-1-praias p {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .txt-1-praias p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-1-praias p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .cont-1-praias {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .img-1-praias,
.txt-1-praias {
    width: 50%;
  }

  .img-1-praias img {
    width: 100%;
  }

  .txt-1-praias {
    margin-right: 5%;
  }
}
.secao-2-praias {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .secao-2-praias {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-2-praias {
    margin-top: 64px;
  }
}

.cont-2-praias {
  max-width: 90%;
  margin: auto;
}

.img-2-praias img {
  width: 80%;
  margin: auto;
}

.titulo-2-praias {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-2-praias h1,
.titulo-2-praias h2,
.titulo-2-praias h3,
.titulo-2-praias h4,
.titulo-2-praias h5,
.titulo-2-praias h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-2-praias h1,
.titulo-2-praias h2,
.titulo-2-praias h3,
.titulo-2-praias h4,
.titulo-2-praias h5,
.titulo-2-praias h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-2-praias h1,
.titulo-2-praias h2,
.titulo-2-praias h3,
.titulo-2-praias h4,
.titulo-2-praias h5,
.titulo-2-praias h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-2-praias h1,
.titulo-2-praias h2,
.titulo-2-praias h3,
.titulo-2-praias h4,
.titulo-2-praias h5,
.titulo-2-praias h6 {
    font-size: 2rem;
  }
}
.titulo-2-praias hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-2-praias {
  margin-top: 2rem;
}

.txt-2-praias p {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .txt-2-praias p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-2-praias p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .cont-2-praias {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .img-2-praias,
.txt-2-praias {
    width: 50%;
  }

  .img-2-praias img {
    width: 100%;
  }

  .txt-2-praias {
    margin-left: 5%;
  }
}
.secao-3-praias {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .secao-3-praias {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-3-praias {
    margin-top: 64px;
  }
}

.cont-3-praias {
  max-width: 90%;
  margin: auto;
}

.img-3-praias img {
  width: 80%;
  margin: auto;
}

.titulo-3-praias {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-3-praias h1,
.titulo-3-praias h2,
.titulo-3-praias h3,
.titulo-3-praias h4,
.titulo-3-praias h5,
.titulo-3-praias h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-3-praias h1,
.titulo-3-praias h2,
.titulo-3-praias h3,
.titulo-3-praias h4,
.titulo-3-praias h5,
.titulo-3-praias h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-3-praias h1,
.titulo-3-praias h2,
.titulo-3-praias h3,
.titulo-3-praias h4,
.titulo-3-praias h5,
.titulo-3-praias h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-3-praias h1,
.titulo-3-praias h2,
.titulo-3-praias h3,
.titulo-3-praias h4,
.titulo-3-praias h5,
.titulo-3-praias h6 {
    font-size: 2rem;
  }
}
.titulo-3-praias hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-3-praias {
  margin-top: 2rem;
}

.txt-3-praias p {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .txt-3-praias p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-3-praias p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .cont-3-praias {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .img-3-praias,
.txt-3-praias {
    width: 50%;
  }

  .img-3-praias img {
    width: 100%;
  }

  .txt-3-praias {
    margin-right: 5%;
  }
}
.secao-4-praias {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .secao-4-praias {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-4-praias {
    margin-top: 64px;
  }
}

.cont-4-praias {
  max-width: 90%;
  margin: auto;
}

.img-4-praias img {
  width: 80%;
  margin: auto;
}

.titulo-4-praias {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-4-praias h1,
.titulo-4-praias h2,
.titulo-4-praias h3,
.titulo-4-praias h4,
.titulo-4-praias h5,
.titulo-4-praias h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-4-praias h1,
.titulo-4-praias h2,
.titulo-4-praias h3,
.titulo-4-praias h4,
.titulo-4-praias h5,
.titulo-4-praias h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-4-praias h1,
.titulo-4-praias h2,
.titulo-4-praias h3,
.titulo-4-praias h4,
.titulo-4-praias h5,
.titulo-4-praias h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-4-praias h1,
.titulo-4-praias h2,
.titulo-4-praias h3,
.titulo-4-praias h4,
.titulo-4-praias h5,
.titulo-4-praias h6 {
    font-size: 2rem;
  }
}
.titulo-4-praias hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-4-praias {
  margin-top: 2rem;
}

.txt-4-praias p {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .txt-4-praias p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-4-praias p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .cont-4-praias {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .img-4-praias,
.txt-4-praias {
    width: 50%;
  }

  .img-4-praias img {
    width: 100%;
  }

  .txt-4-praias {
    margin-left: 5%;
  }
}
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-1-cont {
  margin-top: 6.25rem;
  background-size: cover !important;
}

.titulo-1-cont {
  display: flex;
  align-items: center;
  padding: 5% 0;
  padding-left: 5%;
}
.titulo-1-cont h1,
.titulo-1-cont h2,
.titulo-1-cont h3,
.titulo-1-cont h4,
.titulo-1-cont h5,
.titulo-1-cont h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-1-cont h1,
.titulo-1-cont h2,
.titulo-1-cont h3,
.titulo-1-cont h4,
.titulo-1-cont h5,
.titulo-1-cont h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-1-cont h1,
.titulo-1-cont h2,
.titulo-1-cont h3,
.titulo-1-cont h4,
.titulo-1-cont h5,
.titulo-1-cont h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-1-cont h1,
.titulo-1-cont h2,
.titulo-1-cont h3,
.titulo-1-cont h4,
.titulo-1-cont h5,
.titulo-1-cont h6 {
    font-size: 2rem;
  }
}
.titulo-1-cont hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.titulo-1-cont h1 {
  color: #fff;
  font-weight: bold;
}

.cont-1-cont {
  color: #fff;
  max-width: 90%;
  margin: auto;
  padding: 2rem 0;
}

.txt-1-cont {
  text-align: center;
}

.txt-1-cont p {
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .txt-1-cont p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-1-cont p {
    font-size: 0.875rem;
  }
}

.txt-1-cont h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-1-cont h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-1-cont h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-1-cont h2 {
    font-size: 2rem;
  }
}

.form-1-cont {
  margin: 2rem 0;
  color: #909090;
}

.form-1-cont input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
}

.form-1-cont label {
  display: block;
  color: #fff;
}

.form-1-cont input[type=checkbox] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  margin: 0 0.5rem;
  border-radius: 0;
  padding: 0.5rem;
}

.form-1-cont input::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont input:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont input::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  resize: none;
  font-size: 1rem;
}

.form-1-cont textarea::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont textarea:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont textarea::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-1-cont button {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  width: 40%;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .form-1-cont button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .form-1-cont button {
    font-size: 0.875rem;
  }
}
.form-1-cont button:hover {
  background-position: left;
  color: #fff;
}

.item-1-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.item-1-cont p {
  margin-top: 0;
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  .item-1-cont p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .item-1-cont p {
    font-size: 0.875rem;
  }
}

.item-1-cont a {
  position: relative;
  font-weight: bold;
  color: #fff;
}
.item-1-cont a:hover::after {
  width: 100%;
}
.item-1-cont a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.item-1-cont a::after {
  background-color: #fff;
}

@media (min-width: 1025px) {
  .cont-1-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    padding: 5% 5%;
  }

  .txt-1-cont,
.contato-1-cont {
    width: 40%;
  }

  .txt-1-cont {
    text-align: start;
  }

  .form-1-cont {
    margin: 0;
  }

  .txt-1-cont h2 {
    margin-top: 10rem;
    max-width: 80%;
  }

  .item-1-cont p {
    margin-top: 0;
    margin-left: 1rem;
  }

  .local-1-cont {
    margin-top: 5rem;
  }
}
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
.secao-hero-todos {
  position: relative;
  height: 80vh;
}

.cont-hero-todos {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5%;
  z-index: 2;
}

.txt-hero-todos {
  text-align: center;
}

.txt-hero-todos a {
  margin-top: 32px;
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-hero-todos a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-todos a {
    font-size: 0.875rem;
  }
}
.txt-hero-todos a:hover {
  background-position: left;
  color: #383838;
}

/*SEARCHBOX*/
.cont-busca-todos {
  width: 100%;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.625rem;
  padding: 5%;
  box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.1607843137);
}

.cont-busca-todos select {
  margin-top: 1.25rem;
  text-align: center;
  width: 100%;
  display: block;
  height: 2.5rem;
  background-color: #fffdfd;
  border-radius: 10px;
  border-color: #fffdfd;
  outline: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 1024px) {
  .cont-busca-todos select {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-todos select {
    font-size: 0.875rem;
  }
}

.cont-busca-todos input {
  width: 100%;
  height: 2.5rem;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  color: #bcbcbc;
  border: 0px;
  margin-top: 1.25rem;
  outline: none;
  background: #fff url("/img/site/search-icon.png");
  background-position: 0.5rem 0.3125rem;
  background-repeat: no-repeat;
  padding: 0;
}
@media (max-width: 1024px) {
  .cont-busca-todos input {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-todos input {
    font-size: 0.875rem;
  }
}

.cont-busca-todos button {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 1.25rem;
  width: 100%;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .cont-busca-todos button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-todos button {
    font-size: 0.875rem;
  }
}
.cont-busca-todos button:hover {
  background-position: left;
  color: #383838;
}

.txt-busca-todos h2 {
  font-size: 1.75rem;
  font-weight: bold;
}

.txt-busca-todos h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

@media (min-width: 600px) {
  .cont-busca-todos select {
    width: 30%;
    display: unset;
  }
}
@media (min-width: 1025px) {
  .secao-busca {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -5.625rem;
    position: relative;
  }

  .cont-busca-todos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    text-align: left;
    border-radius: 10px;
    padding: 5%;
  }

  .cont-busca-todos select {
    width: 25%;
  }

  .cont-busca-todos button {
    background: linear-gradient(to left, #383838 50%, #fff 50%) right;
    display: inline-block;
    padding: 16px 16px;
    color: #fff;
    font-weight: bold;
    background-size: 200%;
    transition: 0.5s;
    border-radius: 10px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    width: 6.25rem;
    cursor: pointer;
  }
}
@media (min-width: 1025px) and (max-width: 1024px) {
  .cont-busca-todos button {
    font-size: 1rem;
  }
}
@media (min-width: 1025px) and (max-width: 480px) {
  .cont-busca-todos button {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .cont-busca-todos button:hover {
    background-position: left;
    color: #383838;
  }
}
@media (min-width: 1025px) {
  .cont-busca-todos input {
    width: 50%;
    background-position: 0.5rem 0.3125rem;
    cursor: pointer;
  }
}
@media (min-width: 1025px) {
  .cont-busca-todos input:focus::-moz-placeholder {
    color: transparent;
  }
  .cont-busca-todos input:focus:-ms-input-placeholder {
    color: transparent;
  }
  .cont-busca-todos input:focus::placeholder {
    color: transparent;
  }
}
@media (min-width: 1025px) {
  .txt-busca-todos {
    margin-right: 5%;
  }
}
@media (min-width: 1025px) {
  .txt-busca-todos h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1025px) {
  .txt-busca-todos h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .inputs-busca-todos {
    width: 80%;
  }
}
@media (min-width: 1361px) {
  .cont-busca-todos select {
    width: 30%;
  }

  .cont-busca-todos button {
    width: 12.5rem;
  }

  .cont-busca-todos input {
    width: 60%;
    height: 2.5rem;
  }

  .cont-hero-todos {
    padding: 0 10%;
  }
}
.secao-1-todos {
  position: relative;
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .secao-1-todos {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-1-todos {
    margin-top: 64px;
  }
}

.titulo-1-todos h1 {
  margin: 1rem 0;
  margin-right: 1rem;
  font-weight: bold;
  width: 37.5rem;
}

.txt-1-todos {
  margin: 4rem 5%;
  margin-right: 1rem;
}

.txt-1-todos p {
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .txt-1-todos p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-1-todos p {
    font-size: 0.875rem;
  }
}

.txt-1-todos p span {
  font-weight: bold;
}

.txt-1-todos a {
  display: inline-block;
  color: #383838;
  font-weight: bold;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 1rem 3rem;
  border: 1px solid #383838;
  background-image: url("/img/site/filtros-todos.png");
  background-position: 7rem 1.25rem;
  background-repeat: no-repeat;
  background-size: 15%;
}

.titulo-1-todos {
  display: flex;
  align-items: center;
}
.titulo-1-todos h1,
.titulo-1-todos h2,
.titulo-1-todos h3,
.titulo-1-todos h4,
.titulo-1-todos h5,
.titulo-1-todos h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-1-todos h1,
.titulo-1-todos h2,
.titulo-1-todos h3,
.titulo-1-todos h4,
.titulo-1-todos h5,
.titulo-1-todos h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-1-todos h1,
.titulo-1-todos h2,
.titulo-1-todos h3,
.titulo-1-todos h4,
.titulo-1-todos h5,
.titulo-1-todos h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-1-todos h1,
.titulo-1-todos h2,
.titulo-1-todos h3,
.titulo-1-todos h4,
.titulo-1-todos h5,
.titulo-1-todos h6 {
    font-size: 2rem;
  }
}
.titulo-1-todos hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.itens-1-todos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.item-1-todos {
  position: relative;
  border-radius: 1rem;
  margin: 1rem;
  border: 1px solid #707070;
  width: 18.75rem;
}

.img-item-1-todos {
  position: relative;
}

.img-item-1-todos img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.txt-img-item-1-todos {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.txt-img-item-1-todos div {
  transform: translateY(150%);
}

.txt-img-item-1-todos div a {
  color: #fff;
}

.img-item-1-todos:hover .txt-img-item-1-todos {
  height: 100%;
  visibility: visible;
}

.cta-item-1-todos {
  position: absolute;
  right: 1rem;
  text-align: center;
}

.cta-item-1-todos p {
  background-color: #303030;
  border-radius: 1rem;
  padding: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-top: -34px;
}

.cta-item-1-todos span {
  background-color: #616161;
  border-radius: 1rem;
  padding: 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.txt-item-1-todos {
  padding: 1rem;
  text-align: start;
}
@media (max-width: 1024px) {
  .txt-item-1-todos {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-1-todos {
    font-size: 0.875rem;
  }
}

.txt-item-1-todos h2 {
  font-weight: bold;
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.btn-item-1-todos a {
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  left: 0;
  padding: 0.5rem 0;
  border-top: 1px solid #707070;
}

.btn-item-1-todos a:hover {
  transition: 0.3s;
  background: #383838;
  color: #ffffff;
  border-bottom-left-radius: 15px 15px;
  border-bottom-right-radius: 15px 15px;
}

.info-item-1-todos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  margin-left: 5%;
  margin-right: 5%;
}

.info-item-1-todos div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 5%;
}

.info-item-1-todos div img {
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .info-item-1-todos div p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .info-item-1-todos div p {
    font-size: 0.875rem;
  }
}

.loadmore-todos {
  margin-top: 4rem;
}

.loadmore-todos {
  text-align: end;
}

.loadmore-todos .pagination li {
  display: inline;
  margin: 0 -3px;
}

.loadmore-todos .page-link {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0.375rem 0.75rem;
}

.loadmore-todos .page-item.active .page-link {
  color: #fff !important;
}

.loadmore-todos .page-item.active .page-link:hover {
  background-color: #383838 !important;
}

.loadmore-todos .page-link:hover {
  background-color: #f5f5f5 !important;
}

@media (min-width: 1025px) {
  .secao-1-todos {
    margin-bottom: 8rem;
  }

  .txt-img-item-1-todos div {
    transform: translateY(200%);
  }

  .item-1-todos {
    width: 400px;
    height: 550px;
  }
}
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
@keyframes seta {
  from {
    right: 10%;
  }
  to {
    right: calc(10% - 10px);
  }
}
@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/*
Exemplo de estrutura html: 

<div class="holder">
  <img />
  <div class="content">
    <h1>Este conteúdo ficará invisivel</h1>
  </div>
</div>
*/
/*
Exemplo:
.holder::hover .content {
  @include hover-animacao-hover;
}
*/
/*SEARCHBOX*/
.secao-busca {
  max-width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -5.625rem;
  position: relative;
}

.cont-busca-home {
  width: 100%;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.625rem;
  padding: 5%;
  box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.1607843137);
}

.cont-busca-home h5,
.cont-busca-home h3 {
  color: #707070;
}

.cont-busca-home select {
  margin-top: 1.25rem;
  text-align: center;
  width: 100%;
  height: 2.5rem;
  background-color: #fffdfd;
  border-radius: 10px;
  border-color: #fffdfd;
  outline: none;
  cursor: pointer;
  padding: 0;
  display: block;
}
@media (max-width: 1024px) {
  .cont-busca-home select {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-home select {
    font-size: 0.875rem;
  }
}

.cont-busca-home input {
  width: 100%;
  height: 2.5rem;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  color: #bcbcbc;
  border: 0px;
  margin-top: 0.5rem;
  outline: none;
  background: #fff url("/img/site/search-icon.png");
  background-position: 1.5rem 0.3125rem;
  background-repeat: no-repeat;
  padding: 0;
}
@media (max-width: 1024px) {
  .cont-busca-home input {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-home input {
    font-size: 0.875rem;
  }
}

.cont-busca-home button {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .cont-busca-home button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cont-busca-home button {
    font-size: 0.875rem;
  }
}
.cont-busca-home button:hover {
  background-position: left;
  color: #383838;
}

.txt-busca-home h2 {
  font-size: 1.75rem;
  font-weight: bold;
}

.txt-busca-home h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

@media (min-width: 600px) {
  .cont-busca-home select {
    display: unset;
    width: 30%;
  }
}
@media (min-width: 1025px) {
  .secao-busca {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -5.625rem;
    position: relative;
  }

  .cont-busca-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    text-align: left;
    border-radius: 10px;
    padding: 5%;
  }

  .cont-busca-home select {
    width: 25%;
  }

  .cont-busca-home button {
    background: linear-gradient(to left, #383838 50%, #fff 50%) right;
    display: inline-block;
    padding: 16px 16px;
    color: #fff;
    font-weight: bold;
    background-size: 200%;
    transition: 0.5s;
    border-radius: 10px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    width: 6.25rem;
    cursor: pointer;
  }
}
@media (min-width: 1025px) and (max-width: 1024px) {
  .cont-busca-home button {
    font-size: 1rem;
  }
}
@media (min-width: 1025px) and (max-width: 480px) {
  .cont-busca-home button {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .cont-busca-home button:hover {
    background-position: left;
    color: #383838;
  }
}
@media (min-width: 1025px) {
  .cont-busca-home input {
    width: 50%;
    background-position: 0.5rem 0.3125rem;
    cursor: pointer;
  }
}
@media (min-width: 1025px) {
  .cont-busca-home input:focus::-moz-placeholder {
    color: transparent;
  }
  .cont-busca-home input:focus:-ms-input-placeholder {
    color: transparent;
  }
  .cont-busca-home input:focus::placeholder {
    color: transparent;
  }
}
@media (min-width: 1025px) {
  .txt-busca-home {
    margin-right: 5%;
  }
}
@media (min-width: 1025px) {
  .txt-busca-home h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1025px) {
  .txt-busca-home h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .inputs-busca-home {
    width: 80%;
  }
}
@media (min-width: 1361px) {
  .cont-busca-home {
    width: 90%;
  }

  .cont-busca-home select {
    width: 30%;
  }

  .cont-busca-home button {
    width: 12.5rem;
  }

  .cont-busca-home input {
    width: 60%;
    height: 2.5rem;
  }
}
.secao-1-home {
  position: relative;
}
@media (min-width: 1025px) {
  .secao-1-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-1-home {
    margin-top: 64px;
  }
}

.titulo-1-home h2 {
  margin: 2rem 5%;
  margin-right: 1rem;
  font-weight: bold;
}

.titulo-1-home {
  display: flex;
  align-items: center;
}
.titulo-1-home h1,
.titulo-1-home h2,
.titulo-1-home h3,
.titulo-1-home h4,
.titulo-1-home h5,
.titulo-1-home h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-1-home h1,
.titulo-1-home h2,
.titulo-1-home h3,
.titulo-1-home h4,
.titulo-1-home h5,
.titulo-1-home h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-1-home h1,
.titulo-1-home h2,
.titulo-1-home h3,
.titulo-1-home h4,
.titulo-1-home h5,
.titulo-1-home h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-1-home h1,
.titulo-1-home h2,
.titulo-1-home h3,
.titulo-1-home h4,
.titulo-1-home h5,
.titulo-1-home h6 {
    font-size: 2rem;
  }
}
.titulo-1-home hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.item-1-home {
  position: relative;
  border-radius: 1rem;
  width: 100%;
  margin: 0 1rem;
  border: 1px solid #707070;
}

.img-item-1-home {
  position: relative;
}

.img-item-1-home img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.txt-img-item-1-home {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.txt-img-item-1-home div {
  transform: translateY(150%);
}

.txt-img-item-1-home div a {
  color: #fff;
}

.img-item-1-home:hover .txt-img-item-1-home {
  height: 100%;
  visibility: visible;
}

.cta-item-1-home {
  position: absolute;
  right: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: -34px;
}

.cta-item-1-home p {
  background-color: #303030;
  border-radius: 1rem;
  padding: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.cta-item-1-home span {
  background-color: #616161;
  border-radius: 1rem;
  padding: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.txt-item-1-home {
  padding: 1rem 1rem 0 1rem;
  text-align: start;
}
@media (max-width: 1024px) {
  .txt-item-1-home {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-1-home {
    font-size: 0.875rem;
  }
}

.txt-item-1-home h3 {
  font-weight: bold;
  font-size: 1.125rem;
  margin: 0.25rem 0;
}

.btn-item-1-home a {
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  left: 0;
  padding: 0.5rem 0;
  border-top: 1px solid #707070;
}

.btn-item-1-home a:hover {
  transition: 0.3s;
  background: #383838;
  color: #ffffff;
  border-bottom-left-radius: 15px 15px;
  border-bottom-right-radius: 15px 15px;
}

.info-item-1-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  margin-left: 5%;
  margin-right: 5%;
}

.info-item-1-home div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 5%;
}

.info-item-1-home div img {
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .info-item-1-home div p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .info-item-1-home div p {
    font-size: 0.875rem;
  }
}

.glider-prev-secao1-home img,
.glider-next-secao1-home img {
  max-width: 2.25rem;
}

.glider-prev-secao1-home {
  position: absolute;
  left: 0;
  top: 60%;
  background: none;
  border: none;
  cursor: pointer;
}

.glider-next-secao1-home {
  position: absolute;
  right: 0;
  top: 60%;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .titulo-1-home h2 {
    margin: 4rem 5%;
    margin-right: 1rem;
  }

  .glider-prev-secao1-home {
    position: absolute;
    left: 0;
    top: 60%;
    background: none;
    border: none;
    cursor: pointer;
  }

  .glider-next-secao1-home {
    position: absolute;
    right: 0;
    top: 60%;
    background: none;
    border: none;
    cursor: pointer;
  }

  .glider-prev-secao1-home img,
.glider-next-secao1-home img {
    max-width: 2.5rem;
  }

  .glider-prev-secao1-home,
.glider-next-secao1-home {
    display: block;
  }
}
.secao-2-home {
  position: relative;
  background-color: #383838;
  color: #383838;
}
@media (min-width: 1025px) {
  .secao-2-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-2-home {
    margin-top: 64px;
  }
}

.cont-2-home {
  padding: 2rem 0;
}

.txt-2-home {
  text-align: center;
  color: #fff;
  padding: 0 5%;
}

.txt-2-home h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-2-home h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-2-home h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-2-home h2 {
    font-size: 2rem;
  }
}

.txt-2-home p {
  margin: 1rem 0;
}
@media (max-width: 1024px) {
  .txt-2-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-2-home p {
    font-size: 0.875rem;
  }
}

.txt-2-home a {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-2-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-2-home a {
    font-size: 0.875rem;
  }
}
.txt-2-home a:hover {
  background-position: left;
  color: #fff;
}

@media (min-width: 1025px) {
  .lancamentos-2-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .lancamentos-2-home {
    margin-top: 64px;
  }
}

.titulo-2-home {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-left: 5%;
  font-weight: bold;
}
.titulo-2-home h1,
.titulo-2-home h2,
.titulo-2-home h3,
.titulo-2-home h4,
.titulo-2-home h5,
.titulo-2-home h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-2-home h1,
.titulo-2-home h2,
.titulo-2-home h3,
.titulo-2-home h4,
.titulo-2-home h5,
.titulo-2-home h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-2-home h1,
.titulo-2-home h2,
.titulo-2-home h3,
.titulo-2-home h4,
.titulo-2-home h5,
.titulo-2-home h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-2-home h1,
.titulo-2-home h2,
.titulo-2-home h3,
.titulo-2-home h4,
.titulo-2-home h5,
.titulo-2-home h6 {
    font-size: 2rem;
  }
}
.titulo-2-home hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.titulo-2-home h3,
.titulo-2-home hr {
  color: #fff;
  border-color: #fff;
  font-size: 1.5rem;
}

.itens-2-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  margin: 0 5%;
}

.itens-2-home::after {
  content: "→";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 10%;
  color: #fff;
  -webkit-animation: seta 0.5s ease-in 0s infinite alternate;
          animation: seta 0.5s ease-in 0s infinite alternate;
}

.item-2-home {
  position: relative;
  min-width: 18.75rem;
  min-height: 28.125rem;
  margin: 1rem 2rem;
}

.img-item-2-home img {
  width: 18.75rem;
  height: 28.125rem;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.txt-item-2-home {
  position: absolute;
  bottom: 40px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 15% 5%;
  color: #fff;
}

@media (max-width: 1024px) {
  .txt-item-2-home span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-2-home span {
    font-size: 0.875rem;
  }
}

.txt-item-2-home h2 {
  font-size: 1.5rem;
}

.btn-item-2-home {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.btn-item-2-home span {
  background: linear-gradient(to left, #383838 50%, #404040 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #f5f5f5;
  font-weight: bold;
  background-size: 200%;
  transition: 0.4s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media (max-width: 1024px) {
  .btn-item-2-home span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .btn-item-2-home span {
    font-size: 0.875rem;
  }
}
.btn-item-2-home span:hover {
  background-position: left;
  color: #f9f9f9;
}

@media (min-width: 1025px) {
  .cont-2-home {
    padding: 5% 0;
  }

  .itens-2-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: auto;
    padding-bottom: 1rem;
  }
  .itens-2-home::-webkit-scrollbar {
    height: 10px;
  }
  .itens-2-home::-webkit-scrollbar-track {
    background: #909090;
    border-radius: 10px;
  }
  .itens-2-home::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 10px;
  }

  .itens-2-home::after {
    display: none;
  }

  .item-2-home {
    min-width: unset;
    margin: 0 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
  }

  .txt-item-2-home {
    visibility: hidden;
    height: 0;
    transition: 0.5s;
    overflow: hidden;
    padding: 0 5%;
  }

  .item-2-home {
    min-width: 31.25rem;
    min-height: 43.75rem;
  }

  .img-item-2-home img {
    width: 31.25rem;
    height: 43.75rem;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s;
  }

  .item-2-home:hover .txt-item-2-home {
    visibility: visible;
    height: 12.5rem;
    padding: 15% 5%;
  }

  .item-2-home:hover .img-item-2-home img {
    filter: blur(2px);
  }

  .titulo-2-home h3,
.titulo-2-home hr {
    font-size: 2rem;
  }
}
@media (min-width: 1025px) {
  .secao-3-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-3-home {
    margin-top: 64px;
  }
}

.cont-3-home {
  max-width: 90%;
  margin: auto;
}

.img-3-home {
  max-width: 80%;
  margin: auto;
  border-radius: 0.5rem;
}

.txt-3-home {
  margin-top: 2rem;
}

.titulo-3-home {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-3-home h1,
.titulo-3-home h2,
.titulo-3-home h3,
.titulo-3-home h4,
.titulo-3-home h5,
.titulo-3-home h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-3-home h1,
.titulo-3-home h2,
.titulo-3-home h3,
.titulo-3-home h4,
.titulo-3-home h5,
.titulo-3-home h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-3-home h1,
.titulo-3-home h2,
.titulo-3-home h3,
.titulo-3-home h4,
.titulo-3-home h5,
.titulo-3-home h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-3-home h1,
.titulo-3-home h2,
.titulo-3-home h3,
.titulo-3-home h4,
.titulo-3-home h5,
.titulo-3-home h6 {
    font-size: 2rem;
  }
}
.titulo-3-home hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-3-home p {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .txt-3-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-3-home p {
    font-size: 0.875rem;
  }
}

.local-3-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.local-3-home p {
  margin-top: 0;
  margin-left: 0.5rem;
}

.local-3-home a {
  position: relative;
  font-weight: bold;
}
.local-3-home a:hover::after {
  width: 100%;
}
.local-3-home a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.btn-3-home {
  text-align: center;
  margin-top: 2rem;
}

.btn-3-home a {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #383838;
}
@media (max-width: 1024px) {
  .btn-3-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .btn-3-home a {
    font-size: 0.875rem;
  }
}
.btn-3-home a:hover {
  background-position: left;
  color: #fff;
}

@media (min-width: 1025px) {
  .cont-3-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .img-3-home,
.txt-3-home {
    width: 50%;
  }

  .img-3-home img {
    margin-left: auto;
    width: 670px;
    height: 750px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .txt-3-home {
    margin-right: 5%;
  }

  .txt-3-home h2 {
    margin-bottom: 2rem;
  }

  .local-3-home {
    margin: 2rem 0;
  }

  .local-3-home p {
    margin-top: 0;
    margin-left: 1rem;
  }

  .btn-3-home {
    text-align: start;
    margin-top: 2rem;
  }
}
@media (min-width: 1025px) {
  .secao-4-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-4-home {
    margin-top: 64px;
  }
}

.cont-4-home {
  max-width: 90%;
  margin: auto;
}

.img-4-home {
  max-width: 80%;
  margin: auto;
  border-radius: 0.5rem;
}

.txt-4-home {
  margin-top: 2rem;
}

.titulo-4-home {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-4-home h1,
.titulo-4-home h2,
.titulo-4-home h3,
.titulo-4-home h4,
.titulo-4-home h5,
.titulo-4-home h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-4-home h1,
.titulo-4-home h2,
.titulo-4-home h3,
.titulo-4-home h4,
.titulo-4-home h5,
.titulo-4-home h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-4-home h1,
.titulo-4-home h2,
.titulo-4-home h3,
.titulo-4-home h4,
.titulo-4-home h5,
.titulo-4-home h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-4-home h1,
.titulo-4-home h2,
.titulo-4-home h3,
.titulo-4-home h4,
.titulo-4-home h5,
.titulo-4-home h6 {
    font-size: 2rem;
  }
}
.titulo-4-home hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-4-home p {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .txt-4-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-4-home p {
    font-size: 0.875rem;
  }
}

.local-4-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.local-4-home p {
  margin-top: 0;
  margin-left: 0.5rem;
}

.local-4-home a {
  position: relative;
  font-weight: bold;
}
.local-4-home a:hover::after {
  width: 100%;
}
.local-4-home a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.btn-4-home {
  text-align: center;
  margin-top: 2rem;
}

.btn-4-home a {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #383838;
}
@media (max-width: 1024px) {
  .btn-4-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .btn-4-home a {
    font-size: 0.875rem;
  }
}
.btn-4-home a:hover {
  background-position: left;
  color: #fff;
}

@media (min-width: 1025px) {
  .cont-4-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .txt-4-home {
    margin-left: 5%;
  }

  .img-4-home,
.txt-4-home {
    width: 50%;
  }

  .img-4-home img {
    width: 670px;
    height: 750px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .txt-4-home {
    margin-right: 5%;
  }

  .txt-4-home h2 {
    margin-bottom: 2rem;
  }

  .local-4-home {
    margin: 2rem 0;
  }

  .local-4-home p {
    margin-top: 0;
    margin-left: 1rem;
  }

  .btn-4-home {
    text-align: start;
    margin-top: 2rem;
  }
}
.secao-5-home {
  background-size: cover !important;
}
@media (min-width: 1025px) {
  .secao-5-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-5-home {
    margin-top: 64px;
  }
}

.cont-5-home {
  color: #fff;
  max-width: 90%;
  margin: auto;
  padding: 2rem 0;
}

.txt-5-home {
  text-align: center;
}

.txt-5-home p {
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .txt-5-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-5-home p {
    font-size: 0.875rem;
  }
}

.txt-5-home h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-5-home h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-5-home h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-5-home h2 {
    font-size: 2rem;
  }
}

.form-5-home {
  margin: 2rem 0;
  color: #909090;
}

.form-5-home input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
}

.form-5-home label {
  display: block;
  color: #fff;
}

.form-5-home input[type=checkbox] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  margin: 0 0.5rem;
  border-radius: 0;
  padding: 0.5rem;
}

.form-5-home input::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home input:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home input::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  resize: none;
  font-size: 1rem;
}

.form-5-home textarea::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home textarea:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home textarea::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.form-5-home button {
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  width: 40%;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .form-5-home button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .form-5-home button {
    font-size: 0.875rem;
  }
}
.form-5-home button:hover {
  background-position: left;
  color: #fff;
}

.item-5-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.item-5-home p {
  margin-top: 0;
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  .item-5-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .item-5-home p {
    font-size: 0.875rem;
  }
}

.item-5-home a {
  position: relative;
  font-weight: bold;
  color: #fff;
}
.item-5-home a:hover::after {
  width: 100%;
}
.item-5-home a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.item-5-home a::after {
  background-color: #fff;
}

@media (min-width: 1025px) {
  .cont-5-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    padding: 5% 5%;
  }

  .txt-5-home,
.contato-5-home {
    width: 40%;
  }

  .txt-5-home {
    text-align: start;
  }

  .form-5-home {
    margin: 0;
  }

  .txt-5-home h2 {
    margin-top: 10rem;
    max-width: 80%;
  }

  .item-5-home p {
    margin-top: 0;
    margin-left: 1rem;
  }

  .local-5-home {
    margin-top: 5rem;
  }
}
@media (min-width: 1025px) {
  .secao-6-home {
    margin-top: 128px;
  }
}
@media (max-width: 1024px) {
  .secao-6-home {
    margin-top: 64px;
  }
}

.cont-6-home {
  max-width: 90%;
  margin: auto;
}

.titulo-6-home {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.titulo-6-home h1,
.titulo-6-home h2,
.titulo-6-home h3,
.titulo-6-home h4,
.titulo-6-home h5,
.titulo-6-home h6 {
  color: #707070;
  margin-right: 1rem;
}
@media (min-width: 1025px) {
  .titulo-6-home h1,
.titulo-6-home h2,
.titulo-6-home h3,
.titulo-6-home h4,
.titulo-6-home h5,
.titulo-6-home h6 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .titulo-6-home h1,
.titulo-6-home h2,
.titulo-6-home h3,
.titulo-6-home h4,
.titulo-6-home h5,
.titulo-6-home h6 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .titulo-6-home h1,
.titulo-6-home h2,
.titulo-6-home h3,
.titulo-6-home h4,
.titulo-6-home h5,
.titulo-6-home h6 {
    font-size: 2rem;
  }
}
.titulo-6-home hr {
  border: 1px solid #707070;
  width: 0;
  opacity: 1;
}

.txt-6-home p {
  margin: 1rem 0;
}
@media (max-width: 1024px) {
  .txt-6-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-6-home p {
    font-size: 0.875rem;
  }
}

.itens-6-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  margin: 2rem 0;
  padding: 1rem 0;
}

.item-6-home {
  min-width: 80%;
  position: relative;
  margin: 1rem 2rem;
}

.img-resp-item-6-home img {
  width: 100%;
}

.img-item-6-home {
  display: none;
}

.img-item-6-home img {
  width: 100%;
}

.txt-item-6-home {
  position: absolute;
  bottom: 2px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  border-radius: 16px;
  color: #fff;
  padding: 1rem 5%;
  width: 100%;
}

@media (max-width: 1024px) {
  .txt-item-6-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-6-home p {
    font-size: 0.875rem;
  }
}

.txt-item-6-home h3 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
}

.txt-item-6-home a {
  color: #fff;
  font-weight: bold;
  position: relative;
}
@media (max-width: 1024px) {
  .txt-item-6-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-item-6-home a {
    font-size: 0.875rem;
  }
}
.txt-item-6-home a:hover::after {
  width: 100%;
}
.txt-item-6-home a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.txt-item-6-home a::after {
  background-color: #fff;
}

@media (min-width: 1025px) {
  .itens-6-home {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "first second fourth" "first  third fifth";
    max-width: 90%;
    margin: 2rem auto;
  }

  .item-6-home {
    position: relative;
    margin: 0.5rem;
    max-width: 100%;
  }

  .itens-6-home div:nth-child(1) {
    grid-area: first;
  }

  .itens-6-home div:nth-child(2) {
    grid-area: second;
  }

  .itens-6-home div:nth-child(3) {
    grid-area: third;
  }

  .itens-6-home div:nth-child(4) {
    grid-area: fourth;
  }

  .itens-6-home div:nth-child(5) {
    grid-area: fifth;
  }

  .img-resp-item-6-home {
    display: none;
  }

  .img-item-6-home {
    display: block;
  }
}
.secao-7-home {
  padding: 8rem 0;
  position: relative;
  background-size: cover !important;
}

.txt-7-home {
  color: #fff;
  text-align: center;
  max-width: 80%;
  margin: auto;
}

.txt-7-home h2 {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-7-home h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-7-home h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-7-home h2 {
    font-size: 2rem;
  }
}

.txt-7-home p {
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  .txt-7-home p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-7-home p {
    font-size: 0.875rem;
  }
}

.txt-7-home a {
  cursor: pointer;
  background: linear-gradient(to left, #fff 50%, #383838 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #383838;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-7-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-7-home a {
    font-size: 0.875rem;
  }
}
.txt-7-home a:hover {
  background-position: left;
  color: #fff;
}

.modal-7-home {
  position: absolute;
  top: 10%;
  background-color: #fff;
  width: 90%;
  z-index: 51;
  margin-left: 5%;
  padding: 5%;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
  transition: 0.3s;
}

.modal-ativo-7-home {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.modal-sucesso-7-home {
  display: none;
}

.form-7-home {
  margin-top: 1.5rem;
}

.formulario-7-home h3 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: start;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.formulario-7-home input {
  width: 90%;
  margin: 0.5rem auto;
  border-color: #707070;
  border-radius: 0.5rem;
  display: block;
  padding-left: 2.5rem;
}

.formulario-7-home button {
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  margin: 1rem 0;
}
@media (max-width: 1024px) {
  .formulario-7-home button {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .formulario-7-home button {
    font-size: 0.875rem;
  }
}
.formulario-7-home button:hover {
  background-position: left;
  color: #383838;
}

.formulario-7-home span {
  cursor: pointer;
  color: #a9a9a9;
  font-weight: bold;
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: 3px solid #a9a9a9;
  border-radius: 50%;
  padding: 0.125rem 0.5rem;
}

.input-user-7-home {
  background: url(/img/site/input-user.png);
  background-position: 0.5rem 8px;
  background-repeat: no-repeat;
}

.input-email-7-home {
  background-image: url(/img/site/input-email.png);
  background-position: 0.5rem 8px;
  background-repeat: no-repeat;
}

.input-whatsapp-7-home {
  background-image: url(/img/site/input-whatsapp.png);
  background-position: 0.5rem 8px;
  background-repeat: no-repeat;
}

.modal-sucesso-7-home img {
  max-width: 120px;
  margin: auto;
}

.modal-sucesso-7-home h3 {
  margin-bottom: 0.5rem;
}

.modal-sucesso-7-home p {
  margin-bottom: 1rem;
}

.modal-sucesso-7-home span {
  cursor: pointer;
  color: #a9a9a9;
  font-weight: bold;
  position: relative;
  border: 3px solid #a9a9a9;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
}

@media (min-width: 1025px) {
  .modal-7-home {
    position: absolute;
    top: 1rem;
    background-color: #fff;
    width: 70%;
    margin-left: 15%;
    padding: 2rem 5%;
  }

  .modal-7-home h3 {
    font-size: 2.5rem;
    max-width: 50rem;
    text-align: center;
    margin: auto;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
}
.whatsappWindow {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 90%;
  overflow-y: scroll;
  border-radius: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 100rem) {
  .whatsappWindow {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    overflow-y: hidden;
    border-radius: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.whatsappWindow::-webkit-scrollbar {
  width: 10px;
}

.whatsappWindow::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1rem;
}

.whatsappWindow::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}

.whatsappWindow__container {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.whatsappWindow__header {
  background: #5e5b5b;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: -20px;
  z-index: 10;
  position: relative;
}

.whatsappWindow__form {
  padding: 2rem;
  background: #fff;
}

.whatsappWindow__text {
  font-size: 14px;
  margin: 1rem 0;
}

.whatsappWindow__form input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  background: #f8f8f8;
}

.whatsappWindow__form label {
  margin: 0.5rem 0;
  display: block;
}

.whatsappWindow__form input[type=checkbox] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  margin: 0 0.5rem;
  border-radius: 0;
  padding: 0.5rem;
}

.whatsappWindow__form input::-moz-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.whatsappWindow__form input:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.whatsappWindow__form input::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  color: #909090;
}

.whatsappWindow__form button {
  background: #25d366;
  padding: 1rem;
  width: 100%;
  color: #fff;
}

.loading {
  position: relative;
  color: transparent !important;
}

.loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (min-width: 1024px) {
  .whatsappWindow {
    width: 20%;
    min-width: 350px;
  }
}
.secao-footer {
  background: #d3d3d3;
  padding: 2rem 0;
}

.cont-footer {
  color: #fff;
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.cont-footer div {
  margin: 4rem 0;
}

.cont-footer ul li {
  margin: 1rem 0;
}
.cont-footer ul li a {
  text-decoration: none;
  color: #383838;
  position: relative;
}
.cont-footer ul li a::after {
  content: "";
  position: absolute;
  background: #707070;
  height: 1px;
  width: 0;
  transition: 0.3s;
  left: 0;
  top: 100%;
}
.cont-footer ul li a:hover::after {
  width: 100%;
}

.logo-footer img {
  max-width: 150px;
  margin: auto;
}

.redes-footer a svg {
  font-size: 1.75rem;
  margin: 0 0.5rem;
  color: #707070;
}

.redes-footer a svg:hover {
  color: #707070;
  transition: 0.3s;
  transform: scale(1.1);
}

@media (min-width: 1025px) {
  .cont-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
  }

  .nav-footer nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-footer nav ul li {
    margin: 0 0.5rem;
  }

  .nav-footer nav ul li a {
    transition: 0.3s;
  }

  .nav-footer nav ul li a:hover {
    color: #303030;
  }
}
.secao-super-footer {
  background: #383838;
}

.cont-super-footer {
  color: #fff;
  max-width: 90%;
  margin: auto;
}

.cont-super-footer div {
  padding: 1rem 0;
}

.politica-super-footer a {
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 1rem 0;
  position: relative;
}
.politica-super-footer a:hover::after {
  width: 100%;
}
.politica-super-footer a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #404040;
  transition: 0.3s;
}

.politica-super-footer a::after {
  background-color: #fff;
}

@media (min-width: 1025px) {
  .cont-super-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .w8-info-super-footer,
.w8-super-footer {
    width: 40%;
  }

  .politica-super-footer a {
    display: unset;
    margin: 0 1rem;
  }

  .w8-super-footer {
    text-align: end;
  }
}
.secao-hero-home {
  height: 100vh;
  position: relative;
  background-attachment: unset;
}

.txt-hero-home {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 5%;
  color: #fff;
  z-index: 2;
}

.txt-hero-home h1 {
  color: #fff;
  text-shadow: 10px 5px 5px rgba(112, 112, 112, 0.5);
  font-weight: bold;
}
@media (min-width: 1025px) {
  .txt-hero-home h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .txt-hero-home h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-home h1 {
    font-size: 2rem;
  }
}

.txt-hero-home a {
  margin-top: 32px;
  background: linear-gradient(to left, #383838 50%, #fff 50%) right;
  display: inline-block;
  padding: 16px 16px;
  color: #fff;
  font-weight: bold;
  background-size: 200%;
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .txt-hero-home a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .txt-hero-home a {
    font-size: 0.875rem;
  }
}
.txt-hero-home a:hover {
  background-position: left;
  color: #383838;
}

@media (min-width: 1025px) {
  .txt-hero-home {
    text-align: start;
    padding: 0 10%;
  }

  .txt-hero-home h1 {
    max-width: 500px;
  }
}
.cookies-container {
  color: #222;
  position: fixed;
  width: 100%;
  bottom: 2rem;
  z-index: 900;
}

.cookies-pref input {
  margin-right: 0.5rem;
}

.cookies-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background: white;
  max-width: 520px;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  display: block;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  -webkit-animation: slideUp 0.5s forwards;
          animation: slideUp 0.5s forwards;
}

@-webkit-keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}
.cookies-pref label {
  margin-right: 1rem;
}

.cookies-save {
  grid-column: 2;
  grid-row: 1/3;
  background: #383838;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-family: 1rem;
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 500px) {
  .cookies-content {
    display: grid;
  }

  .cookies-save {
    margin-top: 0;
  }
}
/*
! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px auto -webkit-focus-ring-color;
}

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
@media (min-width: 1601px) {

  .container {
    max-width: 1601px;
  }
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.top-0 {
  top: 0px;
}
.right-8 {
  right: 2rem;
}
.left-0 {
  left: 0px;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.top-full {
  top: 100%;
}
.top-1\/2 {
  top: 50%;
}
.-bottom-8 {
  bottom: -2rem;
}
.bottom-0 {
  bottom: 0px;
}
.top-4 {
  top: 1rem;
}
.left-4 {
  left: 1rem;
}
.bottom-full {
  bottom: 100%;
}
.left-2 {
  left: 0.5rem;
}
.-bottom-4 {
  bottom: -1rem;
}
.-top-2 {
  top: -0.5rem;
}
.-right-2 {
  right: -0.5rem;
}
.top-32 {
  top: 8rem;
}
.bottom-4 {
  bottom: 1rem;
}
.z-0 {
  z-index: 0;
}
.z-50 {
  z-index: 50;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-\[60\] {
  z-index: 60;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.m-auto {
  margin: auto;
}
.m-4 {
  margin: 1rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.-ml-px {
  margin-left: -1px;
}
.mb-16 {
  margin-bottom: 4rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.ml-\[\.5rem\] {
  margin-left: .5rem;
}
.-mr-\[\.5rem\] {
  margin-right: -.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.-mt-20 {
  margin-top: -5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.ml-12 {
  margin-left: 3rem;
}
.-mt-px {
  margin-top: -1px;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-0 {
  margin-top: 0px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-4 {
  height: 1rem;
}
.h-12 {
  height: 3rem;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[600px\] {
  height: 600px;
}
.h-\[350px\] {
  height: 350px;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-64 {
  height: 16rem;
}
.h-20 {
  height: 5rem;
}
.h-\[50vh\] {
  height: 50vh;
}
.h-8 {
  height: 2rem;
}
.h-16 {
  height: 4rem;
}
.h-60 {
  height: 15rem;
}
.max-h-\[300px\] {
  max-height: 300px;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-\[500px\] {
  min-height: 500px;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[50vh\] {
  min-height: 50vh;
}
.w-5 {
  width: 1.25rem;
}
.w-full {
  width: 100%;
}
.w-48 {
  width: 12rem;
}
.w-6 {
  width: 1.5rem;
}
.w-4 {
  width: 1rem;
}
.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.w-\[600px\] {
  width: 600px;
}
.w-20 {
  width: 5rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.w-60 {
  width: 15rem;
}
.w-64 {
  width: 16rem;
}
.min-w-\[1500px\] {
  min-width: 1500px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[15\%\] {
  max-width: 15%;
}
.max-w-\[25px\] {
  max-width: 25px;
}
.max-w-\[20px\] {
  max-width: 20px;
}
.max-w-\[15px\] {
  max-width: 15px;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.max-w-\[80\%\] {
  max-width: 80%;
}
.max-w-\[250px\] {
  max-width: 250px;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-\[60\%\] {
  max-width: 60%;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.origin-top-left {
  transform-origin: top left;
}
.origin-top {
  transform-origin: top;
}
.origin-top-right {
  transform-origin: top right;
}
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.list-inside {
  list-style-position: inside;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.content-center {
  align-content: center;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.justify-self-center {
  justify-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}
.rounded-r-sm {
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-\[1px\] {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-none {
  border-style: none;
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.border-\[\#272628\] {
  --tw-border-opacity: 1;
  border-color: rgb(39 38 40 / var(--tw-border-opacity));
}
.border-\[\#7D7C81\] {
  --tw-border-opacity: 1;
  border-color: rgb(125 124 129 / var(--tw-border-opacity));
}
.border-\[\#D2D4D3\] {
  --tw-border-opacity: 1;
  border-color: rgb(210 212 211 / var(--tw-border-opacity));
}
.border-cyan-100 {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / var(--tw-border-opacity));
}
.border-\[\#27262B\] {
  --tw-border-opacity: 1;
  border-color: rgb(39 38 43 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-pink-100 {
  --tw-border-opacity: 1;
  border-color: rgb(252 231 243 / var(--tw-border-opacity));
}
.border-\[\#70707056\] {
  border-color: #70707056;
}
.border-indigo-400 {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-stone-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.bg-\[\#27262B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 38 43 / var(--tw-bg-opacity));
}
.bg-\[\#F2F2F2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity));
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-\[\#D2D4D3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(210 212 211 / var(--tw-bg-opacity));
}
.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-\[\#272628\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 38 40 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-\[\#7D7C81\] {
  --tw-bg-opacity: 1;
  background-color: rgb(125 124 129 / var(--tw-bg-opacity));
}
.bg-cyan-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity));
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-\[\#f2f2f2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity));
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-pink-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 242 248 / var(--tw-bg-opacity));
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity));
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-current {
  fill: currentColor;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-8 {
  padding: 2rem;
}
.p-4 {
  padding: 1rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.px-\[5\%\] {
  padding-left: 5%;
  padding-right: 5%;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-\[10\%\] {
  padding-left: 10%;
  padding-right: 10%;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pr-16 {
  padding-right: 4rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.font-sans {
  font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.uppercase {
  text-transform: uppercase;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-\[\#F2F2F2\] {
  --tw-text-opacity: 1;
  color: rgb(242 242 242 / var(--tw-text-opacity));
}
.text-\[\#272628\] {
  --tw-text-opacity: 1;
  color: rgb(39 38 40 / var(--tw-text-opacity));
}
.text-\[\#7D7C81\] {
  --tw-text-opacity: 1;
  color: rgb(125 124 129 / var(--tw-text-opacity));
}
.text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-cyan-500 {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity));
}
.text-\[\#D2D4D3\] {
  --tw-text-opacity: 1;
  color: rgb(210 212 211 / var(--tw-text-opacity));
}
.text-\[\#27262B\] {
  --tw-text-opacity: 1;
  color: rgb(39 38 43 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity));
}
.underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
}
.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-75 {
  transition-duration: 75ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.only\:-mx-6:only-child {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.hover\:border-white:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.hover\:bg-stone-700\/80:hover {
  background-color: rgb(68 64 60 / 0.8);
}
.hover\:bg-stone-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity));
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#7D7C81\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(125 124 129 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#27262B\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(39 38 43 / var(--tw-bg-opacity));
}
.hover\:bg-transparent:hover {
  background-color: transparent;
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.hover\:bg-emerald-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity));
}
.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.hover\:text-gray-400:hover {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:text-\[\#272628\]:hover {
  --tw-text-opacity: 1;
  color: rgb(39 38 40 / var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.hover\:text-white\/90:hover {
  color: rgb(255 255 255 / 0.9);
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.hover\:text-gray-800:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.hover\:text-emerald-600:hover {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity));
}
.hover\:opacity-\[0\.5\]:hover {
  opacity: 0.5;
}
.focus\:z-10:focus {
  z-index: 10;
}
.focus\:border-blue-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity));
}
.focus\:border-gray-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity));
}
.focus\:border-indigo-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity));
}
.focus\:border-indigo-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity));
}
.focus\:border-gray-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.focus\:bg-gray-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.focus\:bg-indigo-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity));
}
.focus\:bg-gray-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.focus\:bg-emerald-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity));
}
.focus\:text-gray-700:focus {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.focus\:text-indigo-800:focus {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity));
}
.focus\:text-gray-800:focus {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.focus\:text-emerald-700:focus {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-indigo-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity));
}
.focus\:ring-opacity-50:focus {
  --tw-ring-opacity: 0.5;
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.active\:bg-gray-100:active {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.active\:bg-gray-900:active {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
.active\:text-gray-700:active {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.active\:text-gray-500:active {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:text-emerald-300:disabled {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity));
}
.disabled\:opacity-25:disabled {
  opacity: 0.25;
}
.disabled\:shadow-none:disabled {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.disabled\:hover\:bg-transparent:hover:disabled {
  background-color: transparent;
}
.peer:checked ~ .peer-checked\:border-\[\#D2D4D3\] {
  --tw-border-opacity: 1;
  border-color: rgb(210 212 211 / var(--tw-border-opacity));
}
.peer:checked ~ .peer-checked\:bg-\[\#D2D4D3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(210 212 211 / var(--tw-bg-opacity));
}
.peer:checked ~ .peer-checked\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (prefers-color-scheme: dark) {

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
  }
}
@media (min-width: 640px) {

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:max-w-none {
    max-width: none;
  }

  .sm\:flex-1 {
    flex: 1 1 0%;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }
}
@media (min-width: 768px) {

  .md\:grid {
    display: grid;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:max-w-\[20\%\] {
    max-width: 20%;
  }

  .md\:max-w-\[550px\] {
    max-width: 550px;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:p-8 {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {

  .lg\:static {
    position: static;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .lg\:top-1\/2 {
    top: 50%;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:m-0 {
    margin: 0px;
  }

  .lg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .lg\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mr-2 {
    margin-right: 0.5rem;
  }

  .lg\:-mt-32 {
    margin-top: -8rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[50vh\] {
    height: 50vh;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-\[30vh\] {
    height: 30vh;
  }

  .lg\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-96 {
    width: 24rem;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:max-w-md {
    max-width: 28rem;
  }

  .lg\:max-w-\[30\%\] {
    max-width: 30%;
  }

  .lg\:max-w-2xl {
    max-width: 42rem;
  }

  .lg\:max-w-\[70\%\] {
    max-width: 70%;
  }

  .lg\:max-w-\[30px\] {
    max-width: 30px;
  }

  .lg\:max-w-\[300px\] {
    max-width: 300px;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }

  .lg\:max-w-\[550px\] {
    max-width: 550px;
  }

  .lg\:translate-y-\[-50\%\] {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:rounded {
    border-radius: 0.25rem;
  }

  .lg\:border {
    border-width: 1px;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0px;
  }

  .lg\:border-r {
    border-right-width: 1px;
  }

  .lg\:border-transparent {
    border-color: transparent;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:px-\[10\%\] {
    padding-left: 10%;
    padding-right: 10%;
  }

  .lg\:pr-16 {
    padding-right: 4rem;
  }

  .lg\:pt-16 {
    padding-top: 4rem;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:backdrop-blur-none {
    --tw-backdrop-blur: blur(0);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }

  .lg\:hover\:border-white:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
}
@media (min-width: 1280px) {

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1536px) {

  .\32xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .\32xl\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .\32xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .\32xl\:flex-row {
    flex-direction: row;
  }

  .\32xl\:p-16 {
    padding: 4rem;
  }
}
@media (min-width: 1601px) {

  .\33xl\:overflow-x-hidden {
    overflow-x: hidden;
  }
}

