:root {
  --white: white;
  --black: black;
}

.grid-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

/* Pop-up CIDI COOKIES */

/* Pode adicionar em css/cidi.webflow.css */
#cookie-popup {
  position: fixed;
  z-index: 99999;
  left: 8rem;
  bottom: 80px;
   top: auto;
  right: auto;
  background: none; /* sem fundo escuro */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none; /* impede clique fora do popup */
}
#cookie-popup[style*="display: flex"] {
  pointer-events: auto; /* permite clique quando visível */
}
#cookie-popup-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  width: 420px;
  min-width: unset;
  max-width: unset;
  box-shadow: 0 16px 464px 0 #0007; /* sombra leve */
  position: relative;
}
#cookie-popup-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 2px 16px 0 #0001;
  position: relative;
}
.cookie-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 16px;
}
.cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 20px;
  accent-color: #ff902f;
  cursor: pointer;
}
.cookie-switch.disabled input[type="checkbox"] {
  accent-color: #ff7700;
  cursor: not-allowed;
}
.cookie-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
  align-items: center;

}
.cookie-popup-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-left: 50px;
}
.cookie-popup-accept {
  width: 100%;
}

#cookie-popup button {
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 15px;
  width: 150px;
}
#cookie-reject {
  background: #eee;
  color: #ff7700;
}
#cookie-save {
  background: #eee;
  color: #ff7700;
  border: 2px solid #ff7700;
}
#cookie-accept {
  background: #ff7700;
  color: #fff;
}
#cookie-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #ff7700;
  cursor: pointer;;
}

/* Switch customizado para o pop-up de cookies */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 4px #0001;
}
.switch input:checked + .slider {
  background-color: #ff902f;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}
.switch input:disabled + .slider {
  background-color: #ff7700;
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsividade do pop-up de cookies */
@media (max-width: 600px) {
  #cookie-popup-content {
    width: 55vw;
    min-width: unset;
    max-width: 98vw;
    padding: 18px 6vw 18px 6vw;
    font-size: 15px;
  }
  .cookie-popup-row {
    margin-left: 0;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .cookie-popup-actions {
    gap: 8px;
  }
  #cookie-popup button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 10px 0;
  }
  .cookie-switch {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .switch {
    margin-top: 4px;
  }
  #cookie-close {
    right: -38% !important;
    top: 0px !important;
    font-size: 28px !important;
  }
}
@media (max-width: 400px) {
  #cookie-popup {
    left: 0;
    right: 0;
    bottom: 0;
    top: 30%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  #cookie-popup-content {
    padding: 10px 2vw 10px 2vw;
    font-size: 13px;
    width: 70vw;
  }
  #cookie-close{
    right: -37% !important;
    height: 10px;
    width: 10px;
  }
  #cookie-popup button {
    font-size: 14px;
    padding: 8px 0;
  }
}

/* Fim do Pop-up CIDI COOKIES */


/* Pop-up de Aviso Importante */
#aviso-popup {
  position: fixed;
  z-index: 100000;
  top: 35px;
  right: 35px;
  left: auto;
  bottom: auto;
  background: none; /* remove o fundo escuro */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: auto;
  height: auto;
  pointer-events: auto; /* impede clique fora do popup */
}
#aviso-popup-content {
  background: #db7501;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  max-width: 380px;
  width: 95vw;
  position: relative;
  box-shadow: 0 8px 48px #0008;
  text-align: center;
  pointer-events: auto; /* permite clique dentro do popup */
}
#aviso-popup button#aviso-close:hover {
  color: #ff0;
}
@media (max-width: 600px) {
  #aviso-popup {
    top: 10px;
    right: 18.5%;
  }
  #aviso-popup-content {
    padding: 18px 8px 18px 8px;
    font-size: 16px;
    max-width: 98vw;
  }
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container-policies {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 15px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ff8213;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-heading-center {
  background-color: #f5f7fa;
  background-image: url('../images/capa-correta.png');
  background-position: 50%;
  background-size: cover;
  border-bottom: 1px solid #e4ebf3;
  min-height: 600px;
  max-height: 600px;
  padding: 80px 30px;
  position: relative;
}

.header-invisible{
  position: absolute;
  visibility: hidden;
}

.sectionvideocidi{
  display: flex;
  justify-content: center;
  align-items: center;
}

.videocidimaquina{
  border: 5px solid #ff8213;
  width: 1240px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper-policies{
  justify-content: center;
  align-items: center;
  display: flex;
  height: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  height: 480px;
}

.hero-split-policies{
  background-color: #fff0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 46%;
  display: flex;
}

.hero-split {
  background-color: #fff0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 600px;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  width: auto;
  min-width: 350px;
  margin-bottom: 24px;
  font-family: Montserrat, sans-serif;
}

.shadow-two {
  background-color: #fff0;
  height: 580px;
}

.paragraph {
  color: #fff;
  width: 800px;
  margin-top: 126px;
  margin-left: 10rem;
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  line-height: 100px;
}

.container-2 {
  max-width: 1500px;
}

.text-span {
  font-weight: 700;
}


.hero-heading-right {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  margin-top: -6px;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.heading {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  padding: 30px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-top: 25px;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 60px;
  max-width: 50%;
  height: 60px;
  margin-right: 16px;
}

/* Política de Privacidade - Abertura */

.heading-privacy{
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Fechamento */
.container-4 {
  max-width: 1400px;
}

.cell {
  justify-content: space-between;
  align-items: flex-start;
}

.button {
  letter-spacing: 2px;
  background-color: #ff8213;
  margin-top: 50px;
  padding: 12px 25px;
  font-size: 12px;
}

.cell-2 {
  justify-content: center;
  align-items: center;
}

.heading-2 {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.image {
  max-width: 90%;
}

.text-span-2 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.paragraph-2 {
  width: 505px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.hero-heading-right-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 40px 30px;
  position: relative;
}

.container-5 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px-2 {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.container-6 {
  max-width: 1200px;
}

.max-1400 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.faq-tile {
  margin-bottom: 20px;
}

.faq-question-div {
  color: #614916;
  cursor: pointer;
  background-color: #ebebeb;
  justify-content: space-between;
  padding: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  transition: all .2s;
  display: flex;
}

.carousel-container-2{
  display: flex;
  flex-direction: row;
  background-color: #f7f7f7;
}

.faixa-laranja{
  background-color: #f17a12;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  margin-top: 5rem;
  position: relative;
  right: 20%;
  padding: 1rem;
  padding-left: 2.8rem;
  width: 128%;
  margin-bottom: 2rem;
}

.faixa-laranja h2{
  margin-bottom: 0rem;
  font-size: 78px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.descricao-maquina{
  margin-left: 6rem;
}

.descricao-maquina h3{
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #383838;
}

.subdescricao{
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
  margin-left: 6rem;
  padding-right: 2rem;
}

.subdescricao-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #444444;
}

.faq-question-div:hover {
  color: #fff;
  background-color: #ff8213;
}

.faq-question-div:active {
  background-color: #ec794f;
}

.up-down-arrow {
  font-size: 20px;
  font-weight: 400;
  height: 18px;
  max-height: 18px;
}

.faq-answer-div {
  background-color: #f5f5f5;
  overflow: hidden;
  width: auto;
}

.faq-answer-padding {
  padding: 30px;
}

.body-copy {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 25px;
}

.heading-3 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.container-7 {
  max-width: 1200px;
  margin-bottom: 35px;
}

.hero-without-image {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 30px 30px;
  position: relative;
}

.container-8 {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.button-primary-3.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

.container-9 {
  max-width: 1200px;
}

.cell-3 {
  justify-content: flex-start;
  align-items: center;
}

.bold-text-4 {
  color: #000;
  font-weight: 500;
}

.paragraph-9 {
  color: #000;
  text-align: left;
  margin-top: 7px;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  top: 7px;
}

.faq-answer-inner {
  background-color: #fff;
  border-radius: 0;
  padding: 0 20px 20px;
  overflow: visible;
}

.minus {
  background-color: #fff;
  border-radius: 20px;
  width: 38%;
  height: 2px;
  position: absolute;
}

.p-m-wrap {
  color: #ff8213;
  background-color: #ff8213;
  background-image: linear-gradient(#0000, #0000);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-left: 60px;
  display: flex;
  position: relative;
}

.bold-text {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.faq-answer {
  height: auto;
  overflow: hidden;
}

.faq-question {
  color: #940002;
  background-color: #ebebeb;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 550px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.h3 {
  color: #ff8213;
  text-align: left;
  width: 1000px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.div-block-8 {
  width: 350px;
}

.plus {
  background-color: #fff;
  border-radius: 20px;
  width: 2px;
  height: 38%;
  position: absolute;
}

.faq-item {
  background-color: #0000;
  border: 1px #212121;
  border-radius: 0;
  width: 550px;
  box-shadow: 0 10px 20px #0000000d;
}

.faq-wrap {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  width: 550px;
  display: grid;
}

.bold-text-2 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.cell-4 {
  justify-content: flex-end;
  align-items: center;
}

.footer-subscribe {
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

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

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.footer-wrapper-three {
  grid-column-gap: 80px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  height: auto;
  margin-top: -5rem;
}

.footer-block-three {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: 0;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #1a1b1f;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #1a1b1fbf;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: -40px;
  margin-bottom: 40px;
}

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

.footer-copyright {
  color: #3a4554;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.image-2 {
  position: relative;
  left: -0px;
}

.hero-heading-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-10 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two-3 {
  box-shadow: 0 4px 24px #96a3b514;
}

.hero-stack {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  width: 100%;
  height: auto;
  min-height: 700px;
  padding: 40px 30px;
  position: relative;
}

.container-11 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 130%;
  margin-top: 50px;
  margin-left: -90px;
}

.paragraph-10 {
  text-align: left;
}

.cell-5, .cell-6, .cell-7 {
  justify-content: center;
  align-items: flex-start;
}

.quick-stack {
  grid-column-gap: 173px;
  grid-row-gap: 80px;
}

.quick-stack-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: -55px;
  margin-left: -19px;
  padding-left: 0;
  padding-right: 0;
}

.heading-4 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.link {
  color: #ff8213;
  width: 100px;
}

.cell-8, .cell-9 {
  justify-content: center;
  align-items: center;
}

.quick-stack-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  position: relative;
  left: -20px;
}

.link-2 {
  color: #ff8213;
}

.container-12 {
  height: auto;
  margin-top: 50px;
}

.paragraph-11 {
  margin-top: 62px;
  font-family: Montserrat, sans-serif;
  line-height: 24px;
}

.text-block, .text-block-2 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.text-block-3, .text-block-4, .text-block-5, .text-block-6 {
  color: #000;
  font-weight: 500;
}

.columns-3 {
  width: 1200px;
  margin-bottom: 120px;
}

.container-27 {
  max-width: 1200px;
  height: 400px;
}

.bold-text-6 {
  color: #333;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 300;
  display: block;
}

.boldname {
  font-size: 24px;
}

.boldname.namecontact {
  color: #333;
  text-transform: none;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.textcontent {
  color: #ebebeb;
}

.textcontent.contactus {
  color: #c7c7c7;
  text-transform: capitalize;
  font-size: 18px;
}

.code-embed {
  text-align: center;
}

.container-26 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.address-nbold {
  color: #333;
  font-size: 18px;
  font-weight: 300;
}

.column {
  top: 64px;
}

.hero-without-image-7 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  height: 550px;
  padding: 80px 30px;
  position: relative;
}

.dec {
  text-transform: none;
  font-family: Montserrat, sans-serif;
}

.container-30 {
  max-width: 1200px;
}

.columns-4 {
  justify-content: center;
  align-items: flex-start;
  width: 950px;
  height: 500px;
  margin-bottom: 120px;
  display: block;
}

.bold-text-7 {
  color: #333;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 300;
  display: block;
}

.quick-stack-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: -62px;
}

.heading-5, .heading-6 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.paragraph-12, .paragraph-13 {
  font-family: Montserrat, sans-serif;
}

.hero-heading-left-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-32 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-4 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-4 {
  margin-bottom: 24px;
}

.button-primary-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-4:active {
  background-color: #43464d;
}

.shadow-two-4 {
  box-shadow: 0 4px 24px #96a3b514;
}

.quick-stack-5 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}


@media screen and (min-width: 1280px) {
  .paragraph-9 {
    text-align: left;
  }

  .p-m-wrap {
    background-color: #ff8213;
  }

  .h3 {
    color: #ff8213;
  }
}

@media screen and (max-width: 1650px){
  .imagem-capa-carousel{
    max-width: 600px !important;
    max-height: 600px !important;
    min-height: 600px !important;
    min-width: 600px !important;
  }
}

@media screen and (max-width: 1450px){
  .faixa-laranja h2{
    font-size: 60px;
  }

  .descricao-maquina h3{
    font-size: 35px;
  }

  .subdescricao-text{
    font-size: 20px;
  }
}

@media screen and (max-width: 1260px) {
  .imagem-capa-carousel{
    max-width: 500px !important;
    max-height: 600px !important;
    min-height: 600px !important;
    min-width: 500px !important;
  }
  .faixa-laranja{
    margin-bottom: 4rem;
  }
  .faixa-laranja h2{
    font-size: 50px;
  }

  .descricao-maquina h3{
    font-size: 30px;
  }

  .subdescricao-text{
    font-size: 18px;
  }

  .videocidimaquina{
    width: 850px;
  }
}

@media screen and (min-width: 1440px) {
  .container, .container-4 {
    max-width: 1200px;
  }

  .cell-3 {
    justify-content: flex-start;
    align-items: center;
  }

  .p-m-wrap {
    background-color: #ff8213;
  }

  .bold-text {
    color: #000;
  }

  .h3 {
    color: #000;
    font-weight: 700;
  }

  .bold-text-2 {
    color: #000;
  }

  .bold-text-5 {
    color: #940002;
  }
}

@media screen and (max-width: 1070px){
  .imagem-capa-carousel{
    max-width: 470px !important;
    max-height: 600px !important;
    min-height: 600px !important;
    min-width: 470px !important;
  }
  .subdescricao{
    flex-direction: column;
    gap: 0;
  }
  .faixa-laranja{
    right: 38%;
    width: 150%;
  }
  .descricao-maquina, .subdescricao{
    margin-left: 2rem;
  }
  .subdescricao{
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .hero-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 400px 250px;
    align-items: normal;
    justify-items: center;
    height: auto;
  }

  .hero-image{
    max-width: 100%;
    margin-left: 0;
  }

  .hero-split-policies{
    max-width: 100%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .paragraph{
    margin-left: 5rem;
  }
  .container-4{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .grid-section{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .grid-text{
    grid-row: 2;
    margin-left: 5rem;
  }
  .grid-image{
    grid-row: 1;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .faixa-laranja{
    margin-bottom: 4rem;
  }

  .faixa-laranja h2{
    font-size: 40px;
  }

  .descricao-maquina h3{
    font-size: 25px;
  }

  .subdescricao-text{
    font-size: 18px;
  }

  .container-31, .hero-wrapper-two{
    display: flex;
    justify-items: flex-start;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-heading-right{
    padding: 40px 30px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    gap: 0.7rem;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .hero-heading-center {
    background-position: 80%;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-3 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }

  .container-5 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-8 {
    max-width: 728px;
  }

  .footer-divider-two{
    margin-top: 60px;
  }

  .paragraph-9 {
    text-align: center;
    width: 835px;
    font-size: 16px;
  }

  .faq-answer-inner, .faq-answer {
    width: 875px;
  }

  .faq-question {
    width: 850px;
    max-width: 850px;
  }

  .h3 {
    width: 860px;
  }

  .faq-item {
    width: 875px;
    max-width: 875px;
  }

  .cell-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-social-block-three {
    margin-top: -50px;
  }

  .container-10 {
    max-width: 728px;
  }

  .hero-wrapper-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-3 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-stack {
    height: 1150px;
  }

  .container-11 {
    max-width: 728px;
  }

  .columns-3 {
    width: 730px;
  }

  .container-27 {
    max-width: 730px;
  }

  .container-29 {
    text-align: center;
  }

  .textcontent.contactus {
    text-align: center;
    max-width: 730px;
  }

  .code-embed {
    max-width: 730px;
    margin-top: 0;
  }

  .column-2 {
    margin-top: 139px;
  }

  .container-26 {
    max-width: 728px;
  }

  .hero-without-image-7 {
    height: 1000px;
  }

  .columns-4 {
    width: 730px;
  }

  .container-31 {
    text-align: center;
  }

  .column-3 {
    margin-top: 139px;
  }

  .paragraph-12, .paragraph-13 {
    text-align: left;
  }

  .container-32 {
    max-width: 728px;
  }

  .hero-wrapper-4 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-4 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .videocidimaquina{
    width: 450px;
    height: auto;
  }
}

@media screen and (max-width: 833px) {
  .paragraph{
    width: auto;
  }
  .footer-block-three{
    width: -webkit-fill-available;
  }
  .faixa-laranja h2{
    font-size: 30px;
  }

  .descricao-maquina h3{
    font-size: 20px;
  }
  .descricao-maquina{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .subdescricao{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .subdescricao-text{
    font-size: 14px;
  }
}

@media screen and (max-width: 865px){
  .imagem-capa-carousel{
    object-fit: cover; 
    object-position: right center;
  }

  .faixa-laranja{
    right: 60%;
    width: 160%;
  }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container {
    max-width: 100%;
  }

  .paragraph{
    margin-top: 80px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .faixa-laranja{
    right: 70%;
    width: 170%;
  }

  .descricao-maquina h3, .subdescricao-text{
    text-align: center;
  }

  .imagem-capa-carousel {
    max-width: 400px !important;
    max-height: 500px !important;
    min-height: 500px !important;
    min-width: 400px !important;
}

.faixa-laranja{
  margin-bottom: 2rem;
}

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero-heading-center, .hero-heading-right, .features-list, .hero-heading-right-2 {
    padding: 60px 15px;
  }

  .faq-answer-padding {
    padding: 20px;
  }

  .hero-without-image {
    padding: 60px 15px;
  }

  .hero-wrapper-two {
    justify-content: flex-end;
    align-items: center;
  }

  .paragraph-9 {
    text-align: center;
    width: 500px;
    font-size: 14px;
  }

  .faq-answer-inner {
    width: 728px;
  }

  .faq-question {
    max-width: 728px;
  }

  .h3 {
    width: 640px;
  }

  .faq-item {
    width: 700px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    width: 620px;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-link-three {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .footer-social-block-three {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 10px;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .image-2 {
    left: 0;
  }

  .hero-heading-left {
    padding: 60px 15px;
  }

  .hero-stack {
    height: 1200px;
    padding: 60px 15px;
  }

  .columns-3 {
    width: 700px;
  }

  .container-27 {
    max-width: 700px;
  }

  .container-29 {
    width: 700px;
    max-width: 700px;
  }

  .textcontent.contactus {
    width: 700px;
  }

  .code-embed {
    width: auto;
    margin-top: 77px;
  }

  .column-2 {
    margin-top: 132px;
  }

  .hero-without-image-7 {
    padding: 60px 15px;
  }

  .columns-4 {
    width: auto;
  }

  .container-31 {
    width: auto;
  }

  .column-3 {
    margin-top: 132px;
  }

  .hero-heading-left-2 {
    padding: 60px 15px;
  }

  .cell-10, .cell-11, .cell-12 {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 650px){
  .carousel-container-2{
    background-color: #fff;
    flex-direction: column;
  }
  .faixa-laranja{
    justify-content: center;
    width: 100%;
    margin-top: 0;
    position: static;
    padding-left: 16px;
  }

  .imagem-capa-carousel {
    max-width: 100% !important;
    max-height: 400px !important;
    min-height: 400px !important;
    min-width: 100% !important;
  }

  .subdescricao{
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  
  .container-imagem-capa{
    display: flex;
    justify-content: center;
  }

  .carousel-control-next{
    color: #000 !important;
  }
}

@media screen and (max-width: 631px) {
  .w-layout-layout{
    padding: 0px;
    width: auto;
  }
  .container-4{
    width: auto;
  }
  .grid-text{
    margin-left: 0px;
  }
  .footer-block-three{
    width: auto;
  }
  .hero-split{
    width: auto;
  }

  .paragraph {
    color: #ff8213;
    font-size: 50px;
    line-height: 60px;
    margin-top: 150px;
  }

  .text-span-3 {
    color: var(--white);
    font-size: 40px;
  }
}

@media screen and (max-width: 510px) {
  .grid-section{
    grid-template-rows: 200px 1fr;
  }

  .container {
    width: 350px;
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }
  .hero-heading-right{
    padding: 0px;
  }
  .heading{
    margin-top: -2rem;
  }
  .hero-wrapper{
    grid-template-rows: 380px 180px;
  }
  .shadow-two{
    height: auto;
    margin-top: -0px;
  }

  .button-primary {
    text-align: center;
    width: 350px;
  }

  .hero-heading-center {
    background-position: 85%;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .hero-split {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: -82px;
    width: auto;
  }

  .margin-bottom-24px {
    width: 350px;
  }

  .container-2 {
    max-width: 350px;
  }

  .text-span {
    color: #ff8213;
  }

  .heading {
    text-align: center;
    width: 350px;
  }

  .heading-polices{
    width: 100%;
    margin-top: 2rem;
  }

  .form-dpo{
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .container-3 {
    max-width: none;
  }

  .features-right {
    grid-column-gap: 39px;
    grid-row-gap: 39px;
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin-bottom: 30px;
  }

  .features-image {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .container-4 {
    width: 350px;
  }

  .cell {
    justify-content: space-between;
    align-items: center;
  }

  .cell-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }

  .heading-2 {
    text-align: center;
    width: 350px;
    font-size: 28px;
  }

  .text-span-2 {
    text-align: center;
    width: 350px;
    max-width: 350px;
  }

  .paragraph-2 {
    text-align: center;
    width: 350px;
    margin-top: 30px;
  }

  .container-5 {
    max-width: none;
  }

  .max-1400 {
    max-width: 350px;
  }

  .faq-tile, .container-7 {
    width: 350px;
  }

  .container-8 {
    width: 350px;
    max-width: none;
  }

  .hero-wrapper-two {
    width: 350px;
  }

  .button-primary-3.footer-form-button {
    position: relative;
    right: 0;
  }

  .container-9 {
    width: 350px;
  }

  .paragraph{
    margin-left: 0rem;
  }

  .paragraph-9 {
    text-align: left;
    width: 300px;
    font-size: 16px;
  }

  .faq-answer-inner {
    width: 350px;
  }

  .p-m-wrap {
    background-color: #ff8213;
    margin-left: 40px;
  }

  .faq-answer {
    width: 350px;
  }

  .faq-question {
    width: 350px;
    min-width: 350px;
  }

  .h3, .div-block-8 {
    width: 350px;
  }

  .faq-item {
    width: 350px;
    max-width: 350px;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    width: 350px;
    margin-left: 0;
  }

  .cell-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faixa-laranja h2{
    text-align: center;
  }
  
  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .footer-wrapper-three {
    width: 350px;
  }

  .footer-block-three {
    justify-content: center;
    align-items: center;
    width: 350px;
    max-width: 350px;
  }

  .footer-link-three {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .footer-social-block-three {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 320px;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-2 {
    left: 0;
  }

  .container-10 {
    max-width: none;
  }

  .container-11 {
    width: 350px;
    max-width: none;
  }

  .hero-image.shadow-two {
    width: 350px;
  }

  .quick-stack-2 {
    margin-left: 62px;
  }

  .heading-4, .container-12, .columns-3 {
    width: 350px;
  }

  .container-27 {
    max-width: 350px;
  }

  .container-29 {
    width: 350px;
  }

  .boldname.namecontact {
    width: 300px;
    font-weight: 700;
  }

  .textcontent.contactus {
    width: 350px;
  }

  .code-embed {
    text-align: center;
    width: 350px;
    padding-left: 0;
  }

  .column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-26 {
    max-width: none;
  }

  .column {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-4, .container-31 {
    width: 350px;
  }

  .column-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-12, .paragraph-13 {
    text-align: left;
  }

  .container-32 {
    max-width: none;
  }

  .quick-stack-5 {
    width: 350px;
  }

  .text-span-4 {
    text-align: left;
  }
}

@media screen and (max-width: 450px){
  .videocidimaquina{
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 435px){
  .paragraph{
    font-size: 40px;
    margin-left: 2rem;
  }
}

@media screen and (max-width: 365px) {
  .container{
    width: auto;
  }
  .navbar-wrapper{
    width: 290px;
    justify-content: normal;
    gap: 1rem;
  }
  .shadow-two{
  width: 310px;
  }
  .mulher, .cell-3, .quick-stack-5, .container-9, .footer-wrapper-three, .container-8, .hero-image, .hero-wrapper-two, .container-11, .container-12, .heading-4, .cell-10, .quick-stack-4, .w-row, .container-31{
    width: 300px
  }
  .hero-without-image{
    padding: 60px 5px;
  }
  .heading{
    width: 310px;
    min-width: 310px;
  }
  .margin-bottom-24px{
    width: 310px;
    min-width: 310px;
  }
  .button-primary{
    width: 310px;
    min-width: 310px;
  }
  .hero-split{
    width: 310px;
    min-width: 310px;
  }
  .container-4, .grid-section, .grid-image, .grid-text, .heading-2, .features-block-two, .paragraph-2, .heading-3, .container-7, .faq-tile{
    width: 310px;
  }
  .footer-block-three, .footer-social-block-three, .button-modal{
    width: 270px;
    min-width: 270px;
  }
  .w-iframe, iframe{
    width: 280px;
    min-width: 280px;
  }
  .container-6{
    padding: 0px 5px;
  }
  .hero-heading-center, .hero-heading-right, .features-list, .hero-heading-right-2{
    padding: 60px 0px;
  }
}

#w-node-ddf07bca-6db9-1f88-82ba-156a26531eb3-afb325c8, #w-node-_75d282f5-2919-c041-105c-520524a44d0f-afb325c8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_311e1894-fe42-9232-6d4d-826a210ea82a-16ed0229 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_75d282f5-2919-c041-105c-520524a44d0f-afb325c8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 643px) {
  #w-node-ddf07bca-6db9-1f88-82ba-156a26531eb3-afb325c8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-ddf07bca-6db9-1f88-82ba-156a26531eb5-afb325c8 {
    order: -9999;
  }

  #w-node-_75d282f5-2919-c041-105c-520524a44d0f-afb325c8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}
