:root {
  --primary-font: "Montserrat", sans-serif;
  --primary-color: #000000;
  --semi-bold: 700;
  --med-bold: 600;
  --low-bold: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
}

h2 strong {
  color: #3360f6;
}

.wpcf7-not-valid {
  border-bottom: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
  transition: all 0.4s;
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: white;
  text-align: center;
  padding: 1rem;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  border: 0;
  border-radius: 2rem;
  margin-top: 0;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 0 !important;
  color: white !important;
}

.slick-dots li button:before {
  display: none;
}

.slick-prev:before, .slick-next:before {
  display: none;
}

.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

body {
  font-family: var(--primary-font);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  background-color: #001a02;
  padding: 0;
}

a {
  text-decoration: none;
}

a.ab {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 8;
}

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
}

a.btn-laranja {
  width: 192px;
  color: white;
  background: rgb(255, 99, 30);
  background: linear-gradient(42deg, rgb(255, 99, 30) 0%, rgb(255, 206, 46) 100%);
}

a.btn-branco {
  width: 192px;
  color: white;
  background: white;
  color: #3360f6;
}

p {
  margin: 0.75rem 0;
  line-height: 24px;
}

.container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1rem;
  position: relative;
}

@media (min-width: 1440px) {
  .container {
    max-width: 96%;
  }
}
@media (max-width: 1190px) {
  .container {
    max-width: 990px;
  }
}
.container-large {
  max-width: 1400px;
}

@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}

.container-small {
  max-width: 1024px;
}

@media (min-width: 1440px) {
  .container-small {
    max-width: 70%;
  }
}
.container-litle {
  max-width: 770px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

@media (min-width: 1190px) {
  .desk {
    display: block;
  }
}
@media (max-width: 1189px) {
  .desk {
    display: none;
  }
}
@media (min-width: 1190px) {
  .mob {
    display: none !important;
  }
}
@media (max-width: 1189px) {
  .mob {
    display: block;
  }
}
.hamburger {
  position: absolute;
  right: 1rem;
  z-index: 99;
  top: 30px;
}

@media (min-width: 1191px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  width: 25px;
  height: 3px;
  border-radius: 0;
  background-color: #fff;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: #fff;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

.end {
  text-align: end;
}

.center {
  text-align: center;
}

.grid.col-2 {
  grid-template-columns: 1fr 1fr;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: hsla(0, 0%, 0%, 0.4);
  border-bottom: 1px solid #707070;
  z-index: 4;
}

@media (max-width: 1190px) {
  header {
    padding-block: 1rem;
  }
}
header .cc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1190px) {
  header .menu,
  header .menu_mob {
    display: none;
  }
}
header .menu ul,
header .menu_mob ul {
  display: flex;
  font-weight: var(--low-bold);
  gap: 2rem;
  align-items: center;
}

header .menu ul li,
header .menu_mob ul li {
  height: 86px;
  display: flex;
  align-items: center;
  position: relative;
}

header .menu ul li:after,
header .menu_mob ul li:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #308433;
  opacity: 0;
}

header .menu ul li.current_page_item:after, header .menu ul li:hover:after,
header .menu_mob ul li.current_page_item:after,
header .menu_mob ul li:hover:after {
  opacity: 1;
}

header .menu ul a,
header .menu_mob ul a {
  color: #fff7d4;
}

header .menu_mob {
  position: absolute;
  opacity: 0;
  height: 0;
  left: 0;
  background-color: hsla(0, 0%, 0%, 0.7);
  width: 100%;
  top: 88px;
  visibility: hidden;
}

header .menu_mob.active {
  height: 100vh;
  opacity: 1;
  visibility: visible;
  display: block;
}

@media (max-width: 1190px) {
  header .menu_mob ul {
    display: block;
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    padding-top: 4rem;
  }
  header .menu_mob ul li {
    width: -moz-max-content;
    width: max-content;
    height: 40px;
  }
}
@media (max-width: 660px) {
  header .menu_mob ul {
    padding-left: 1rem;
  }
}
header .langs {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1190px) {
  header .langs {
    margin-right: 3rem;
  }
}
#banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-size: 18px;
  height: 700px;
}

#banner h2 {
  font-size: 48px;
  color: #fff7d4;
  font-weight: var(--semi-bold);
}

#banner .slick-dots {
  bottom: 6rem;
}

#banner .slick-dots button {
  border: 1px solid #fff7d4;
  background-color: transparent;
  border-radius: 2rem;
  width: 12px;
  height: 12px;
  transition: all 0.4s ease;
}

#banner .slick-dots li.slick-active button {
  background-color: #fff7d4;
}

.banner-slides .slide {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 700px;
  display: flex !important;
  align-items: center;
}

.banner-content {
  color: #fff;
}

.banner-button {
  color: #fff7d4;
  letter-spacing: 2px;
  font-weight: var(--semi-bold);
  text-transform: uppercase;
  border: 1.5px solid #fff7d4;
  border-radius: 2rem;
  padding: 1rem;
  display: inline-block;
  margin-top: 1rem;
  font-size: 14px;
}

.banner-button:hover {
  background-color: #fff7d4;
  color: #000;
}

#barra {
  margin-top: -5rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

#barra .grid {
  background: white;
  border-radius: 10rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-inline: 2rem;
  min-height: 162px;
  align-items: center;
}

@media (max-width: 770px) {
  #barra .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  #barra .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 100px;
    padding-block: 1rem;
  }
}
#barra .grid .box {
  color: #002503;
  font-size: 12px;
  text-align: center;
}

#barra .grid .box .val {
  color: #002503;
  font-size: 50px;
  font-weight: var(--semi-bold);
}

@media (max-width: 1190px) {
  #barra .grid .box .val {
    font-size: 33px;
  }
}
#serivcos {
  background-color: #001a02;
  min-height: 500px;
  margin-top: -6rem;
  padding-bottom: 10rem;
}

#serivcos .box_servico {
  padding-top: 10rem;
  background: url(../imgs/grade.png) no-repeat center;
}

#serivcos .box_servico h2 {
  color: white;
  font-size: 32px;
  font-weight: var(--semi-bold);
  text-align: center;
}

#serivcos .box_servico .lista {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 500px) {
  #serivcos .box_servico .lista {
    grid-template-columns: 1fr;
  }
}
#serivcos .box_servico .lista .box {
  color: white;
  height: 264px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-block: 2rem;
  padding-inline: 2rem;
  border-radius: 13px;
  background-size: cover;
  position: relative;
}

#serivcos .box_servico .lista .box .tt p {
  display: none;
}

#serivcos .box_servico .lista .box:last-child .text {
  background: rgba(56, 88, 233, 0.52);
}

#serivcos .box_servico .lista .box .text {
  opacity: 0;
  transition: all 0.4s ease;
  position: absolute;
  background: rgba(48, 132, 50, 0.75);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 2rem;
  border-radius: 12px;
}

#serivcos .box_servico .lista .box img {
  margin-bottom: 14px;
}

#serivcos .box_servico .lista .box h2 {
  font-size: 24px;
  text-align: start;
}

#serivcos .box_servico .lista .box a {
  color: white;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: var(--semi-bold);
}

#serivcos .box_servico .lista .box a svg {
  margin-left: 1rem;
  transition: all 0.4s ease;
}

#serivcos .box_servico .lista .box:hover svg {
  margin-left: 2rem;
}

#serivcos .box_servico .lista .box:hover .text {
  opacity: 1;
}

#serivcos .barra_manuais {
  margin-top: 4rem;
}

@media (max-width: 770px) {
  #serivcos .barra_manuais {
    margin-top: 0;
  }
}
#serivcos .barra_manuais .box {
  background-color: white;
  border-radius: 10rem;
  padding-inline: 4rem;
  min-height: 121px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

@media (max-width: 770px) {
  #serivcos .barra_manuais .box {
    display: block;
    padding-block: 1rem;
  }
}
#serivcos .barra_manuais .box h2 {
  color: #002503;
  font-size: 32px;
  font-weight: var(--semi-bold);
}

@media (max-width: 770px) {
  #serivcos .barra_manuais .box h2 {
    font-size: 28px;
    text-align: center;
  }
}
#serivcos .barra_manuais .box span {
  display: block;
  color: #fff7d4;
  background-color: #002503;
  letter-spacing: 2px;
  font-weight: var(--semi-bold);
  text-transform: uppercase;
  border: 1.5px solid #002503;
  border-radius: 2rem;
  padding: 1rem;
  display: inline-block;
  margin-top: 1rem;
  font-size: 14px;
}

@media (max-width: 770px) {
  #serivcos .barra_manuais .box span {
    width: 100%;
    text-align: center;
  }
}
#serivcos .barra_manuais .box span:hover {
  background-color: white;
  color: #000;
}

#serivcos .barra_manuais .box:hover span {
  background-color: white;
  color: #000;
}

footer {
  background-color: #fff7d4;
  min-height: 400px;
  position: relative;
}

footer #form {
  position: absolute;
  top: 0;
  padding: 4rem 2rem;
  min-height: 327px;
  border-radius: 8px;
  background-color: white;
  z-index: 2;
  margin-top: -7rem;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 2rem;
  box-shadow: 0px 10px 8px -4px rgba(0, 0, 0, 0.29);
  left: 50%;
  transform: translate(-50%);
  width: 95%;
}

@media (max-width: 770px) {
  footer #form {
    grid-template-columns: 1fr;
  }
}
footer #form .flex {
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 770px) {
  footer #form .flex {
    flex-direction: column;
  }
}
footer #form .text {
  color: #4a4a4a;
}

footer #form .text h2 {
  color: #308432;
  font-size: 24px;
  font-weight: var(--semi-bold);
}

footer #form label {
  font-size: 14px;
}

footer #form label .wpcf7-list-item-label {
  margin-left: 1rem;
  font-weight: 400;
}

footer #form input {
  padding-left: 1rem;
  border: 0;
  font-weight: 400;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.15);
  font-size: 14px;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 1rem;
}

footer #form input::-moz-placeholder {
  color: #000000;
}

footer #form input::placeholder {
  color: #000000;
}

footer #form input[type=submit] {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff7d4;
  letter-spacing: 2px;
  font-weight: var(--semi-bold);
  background: #002503 url(../imgs/arrow.svg) no-repeat 92%;
  border-radius: 2rem;
  padding: 1rem;
  width: -moz-max-content;
  width: max-content;
  padding-inline-end: 3rem;
  transition: all 0.4s ease;
  margin-top: 1rem;
  margin-bottom: 0;
}

footer #form input[type=submit]:hover {
  transform: scale(1.02);
}

footer #form [type=checkbox]:checked,
footer #form [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}

footer #form [type=checkbox]:checked + label,
footer #form [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

footer #form [type=checkbox]:checked + span:before,
footer #form [type=checkbox]:not(:checked) + span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 1px solid #dddddd;
  border-radius: 100%;
  background: transparent;
}

footer #form [type=checkbox]:checked + span:after,
footer #form [type=checkbox]:not(:checked) + span:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #308432;
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

footer #form [type=checkbox]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
}

footer #form [type=checkbox]:checked + span:before {
  opacity: 1;
  transform: scale(1);
}

footer .bb {
  padding-top: 17rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 770px) {
  footer .bb {
    flex-direction: column;
    padding-top: 38rem;
    gap: 1rem;
  }
}
footer .bb .endereco {
  background: url(../imgs/pin.svg) left 6px no-repeat;
  padding-left: 1rem;
  color: #002503;
}

@media (max-width: 770px) {
  footer .bb .endereco {
    margin-bottom: 1rem;
  }
}
footer .bb .endereco p {
  margin: 0;
}

footer .bb .contatos a {
  color: #002503 !important;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 770px) {
  footer .bb .contatos a {
    margin-bottom: 1rem;
    display: block;
  }
}
footer .bb .contatos .tel {
  background: url(../imgs/telefone.svg) left no-repeat;
  padding-left: 1rem;
}

footer .bb .contatos .mail {
  background: url(../imgs/mail.svg) left no-repeat;
  padding-left: 20px;
}

footer .line {
  height: 1px;
  background-color: white;
  width: 100%;
  border-top: 1px solid hsla(49, 50%, 58%, 0.3);
  margin-block-start: 4rem;
}

footer .outros {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3rem;
  font-weight: 400;
}

footer .outros div:last-child {
  text-align: end;
}

#interna {
  height: 300px;
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
}

#interna h2 {
  font-size: 40px;
  font-weight: var(--semi-bold);
  color: #fff7d4;
}

#quem {
  color: white;
  padding: 4rem 0;
}

#quem h2 {
  font-size: 32px;
  margin-bottom: 1.75rem;
}

#quem .grid {
  grid-template-columns: 45% 1fr;
  gap: 4rem;
}

@media (max-width: 770px) {
  #quem .grid {
    grid-template-columns: 1fr;
  }
}
#quem .text p {
  line-height: 28px;
}

#quem .img {
  position: relative;
}

#quem .img a {
  position: absolute;
  text-align: center;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#quem .img a img {
  width: 147px;
}

#quem .img img {
  border-radius: 14px;
  width: 100%;
}

@media (max-width: 770px) {
  #quem .img img {
    width: 70%;
    display: block;
    margin-inline: auto;
  }
}
@media (max-width: 440px) {
  #quem .img img {
    width: 100%;
  }
}
#quem.serv {
  position: relative;
}

#quem.serv .grid {
  grid-template-columns: 397px 1fr;
}

@media (max-width: 440px) {
  #quem.serv .grid {
    grid-template-columns: 1fr;
  }
}
#quem.serv .img {
  position: absolute;
  right: 0;
  z-index: 2;
  top: 6rem;
}

@media (max-width: 440px) {
  #quem.serv .img {
    position: relative;
    top: initial;
  }
}
#quem.serv .img a img {
  width: 147px;
}

#quem.serv .img img {
  width: 646px;
}

@media (max-width: 440px) {
  #quem.serv .img img {
    width: 100%;
  }
}
#ot {
  background: white;
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 440px) {
  #ot {
    padding: 0;
  }
}
#ot h2 {
  font-size: 32px;
  color: #002503;
  width: 40%;
  margin-bottom: 2rem;
  font-weight: var(--semi-bold);
}

@media (max-width: 440px) {
  #ot h2 {
    width: 100%;
  }
}
#ot .tabs {
  display: flex;
  border: 1px solid hsla(0, 0%, 44%, 0.3);
  border-radius: 8px 8px 0 0;
  height: 61px;
  align-items: center;
}

@media (max-width: 770px) {
  #ot .tabs {
    flex-direction: column;
    height: auto;
  }
}
#ot .tabs .tab {
  padding: 10px 0;
  height: 61px;
  cursor: pointer;
  align-items: center;
  display: flex;
  position: relative;
  color: #002503;
  width: 50%;
  justify-content: center;
  border-right: 1px solid hsla(0, 0%, 44%, 0.3);
  font-weight: var(--med-bold);
}

@media (max-width: 770px) {
  #ot .tabs .tab {
    width: 100%;
    height: auto;
  }
}
#ot .tabs .tab:first-child.active, #ot .tabs .tab:first-child:hover {
  border-radius: 8px 0 0 0;
}

#ot .tabs .tab:last-child {
  border-right: 0;
}

#ot .tabs .tab:last-child.active, #ot .tabs .tab:last-child:hover {
  border-radius: 0 8px 0 0;
}

#ot .tabs .tab.active, #ot .tabs .tab:hover {
  color: #fff7d4;
  background-color: #002503;
}

.tab-content {
  display: none;
  padding-top: 2rem;
  padding-inline: 2rem;
  border: 1px solid hsla(0, 0%, 44%, 0.3);
  border-radius: 0 0 8px 8px;
  border-top: 0;
}

.tab-content.active {
  display: block;
}

#socios {
  background: white;
  padding: 5rem;
  margin-bottom: 10rem;
}

@media (max-width: 770px) {
  #socios {
    padding: 0;
    padding-block: 2rem;
  }
}
#socios h2 {
  font-size: 32px;
  color: #002503;
}

#socios .acc {
  margin: 1.75rem auto;
  position: relative;
  z-index: 2;
}

#socios .acc__card {
  position: relative;
  margin: 1rem 0;
}

#socios .acc__title {
  color: #002503;
  cursor: pointer;
  font-size: 18px;
  display: block;
  padding: 1em 0;
  position: relative;
  text-align: left;
  font-weight: var(--semi-bold);
  border-top: 1px solid hsla(0, 0%, 44%, 0.3);
}

#socios .acc__title::after {
  width: 20px;
  height: 12px;
  position: absolute;
  right: 1rem;
  content: "+";
  background: url(../imgs/arrown_d.svg) no-repeat;
  font-weight: 700;
  font-size: 22px;
  top: 17px;
  transition: all 0.2s ease-in-out;
}

#socios .acc__title.active::after {
  transition: all 0.2s ease-in-out;
  content: "-";
}

#socios .acc__panel {
  color: #231f20;
  display: none;
  margin: 0;
  padding: 0.75rem 0;
  text-align: left;
  font-weight: 400;
}

#socios .acc__panel .grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 2rem;
  padding-inline-end: 4rem;
}

#socios .acc__panel .grid.sem-imagem {
  grid-template-columns: 1fr;
}

@media (max-width: 770px) {
  #socios .acc__panel .grid {
    grid-template-columns: 1fr;
  }
}
#socios .acc__panel .grid img {
  width: 210px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#socios .acc__panel a {
  color: #231f20;
  text-decoration: underline;
  font-weight: var(--med-bold);
}

#faq {
  color: white;
  margin-bottom: 10rem;
  margin-top: 5rem;
}

#faq h2 {
  font-size: 32px;
  font-weight: var(--semi-bold);
}

#faq .acc {
  margin: 1.75rem auto;
  position: relative;
  z-index: 2;
}

#faq .acc__card {
  position: relative;
  margin: 1rem 0;
}

#faq .acc__title {
  color: #fff7d4;
  cursor: pointer;
  font-size: 18px;
  display: block;
  padding: 1em 0;
  position: relative;
  text-align: left;
  font-weight: var(--semi-bold);
  border-top: 1px solid hsla(0, 0%, 44%, 0.3);
}

@media (max-width: 770px) {
  #faq .acc__title {
    font-weight: var(--low-bold);
    font-size: 1rem;
    line-height: 28px;
    padding-right: 3rem;
  }
}
#faq .acc__title::after {
  width: 20px;
  height: 12px;
  position: absolute;
  right: 1rem;
  content: "+";
  background: url(../imgs/arrown_d.svg) no-repeat;
  font-weight: 700;
  font-size: 22px;
  top: 17px;
  transition: all 0.2s ease-in-out;
}

#faq .acc__title.active::after {
  transition: all 0.2s ease-in-out;
  content: "-";
}

#faq .acc__panel {
  display: none;
  margin: 0;
  padding: 0.75rem 0;
  text-align: left;
  font-weight: 400;
}

#faq .acc__panel .grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 2rem;
  padding-inline-end: 4rem;
}

#faq .acc__panel .grid img {
  width: 210px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#faq .acc__panel a {
  color: #231f20;
  text-decoration: underline;
  font-weight: var(--med-bold);
}

#interna.politica {
  padding-bottom: 5rem;
}

#politica .box {
  border-radius: 8px;
  background-color: white;
  padding: 4rem;
  color: #002503;
  margin-top: -4rem;
}

@media (max-width: 770px) {
  #politica .box {
    padding: 1rem;
  }
}
#politica .lista {
  margin-top: 3rem;
}

#politica .lista .b {
  border-top: 1px solid #dddac8;
  padding: 2rem 0;
  padding-left: 2rem;
  display: flex;
  justify-content: space-between;
  font-weight: var(--low-bold);
}

@media (max-width: 770px) {
  #politica .lista .b {
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
  }
}
#politica .lista .b a {
  font-weight: var(--semi-bold);
  text-decoration: underline;
  color: #308432;
}

#politica {
  padding-bottom: 12rem;
} /*# sourceMappingURL=scssmultipla.css.map */