@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-Black.ttf") format("truetype");
   font-weight: black;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-ExtraBold.ttf") format("truetype");
   font-weight: 900;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
   font-weight: 700;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
   font-weight: 600;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("/fonts/Inter/static/Inter_18pt-Light.ttf") format("truetype");
   font-weight: 500;
   font-style: normal;
   font-display: swap;
}
:root {
   --background: #ffffff;
   --foreground: #272324;
}
@theme inline {
   --color-background: var(--background);
   --color-foreground: var(--foreground);
   --font-sans: var(--font-geist-sans);
   --font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
   :root {
      --background: #ffffff !important;
      --foreground: #272324;
   }
}
html {
   background: #fff;
   color: #272324;
}
body {
  font-family: 'Inter';
  background:#fff;
}
* {
   margin: 0;
   padding: 0;
   font-family: "Inter";
   font-weight: 500;
}
.custom-select {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   padding: 10px 0px 10px 0px;
   text-align: center;
   border:none;
   background:transparent;
   font-size: 16px;
   color: #333;
   cursor: pointer;
   width: 50px;
   font-weight: bold;
   outline: none;
   transition: ease-in-out 0.7s;
}
.custom-select:hover {
   color: #474747;
   transition: ease-in-out 0.7s;
}
#menu {
   box-sizing: border-box;
   padding-left: 30px;
}
#menu ul {
   display: flex;
   text-decoration: none;
   list-style-type: none;
   margin-block-start: 0;
   margin-block-end: 0;
   padding-inline-start: 0px;
}
#menu ul a {
  text-decoration: none;
  color: #111827;
  font-size:15px;
  font-family:'Inter';
  font-weight:normal;
}
#menu ul li {
  padding: 15px 1vw;
  font-size:15px;
  font-family:'Inter';
  font-weight:normal;
  background: white;
  position: relative;
  transition: ease-in-out all 0.5s;
  cursor: pointer;
  color:#111827;
}
#menu ul li:hover {
   background: #87c540;
   transition: ease-in-out all 0.5s;
}
#menu ul li img {
   pointer-events: none;
}
#menu ul li ul {
   list-style-type: none;
   display: none;
   flex-direction: column;
   position: absolute;
   top: 49px;
   left: 0;
   transition: ease-in-out all 0.5s;
}
#menu ul li:hover ul {
   display: flex;
   transition: ease-in-out all 0.5s;
   z-index: 1;
}
#menu ul li ul li {
   display: flex;
   gap: 15px;
   background: #87c540;
   cursor: pointer;
}
#menu ul li ul li a img {
   pointer-events: none;
}
#menu ul li ul li:hover {
   background: #fff;
}
#menu ul li ul li img {
   max-width: 20px;
   max-height: 20px;
}
#menuMob {
   box-sizing: border-box;
   padding-left: 30px;
}
#menuMob ul {
   display: flex;
   text-decoration: none;
   list-style-type: none;
   margin-block-start: 0;
   margin-block-end: 0;
   padding-inline-start: 0px;
}
#menuMob ul a {
  text-decoration: none;
  color: #111827;
  font-size:16px;
  font-family:'Inter';
  font-weight:500;
}
#menuMob ul li {
  font-family:'Inter';
  font-size:16px;
  font-weight:normal;
  background: white;
  position: relative;
  transition: ease-in-out all 0.5s;
  cursor: pointer;
  color:#111827;
  border:1px solid #fff;
}
#menuMob ul li:hover {
  background: #c1de9b !important;
  transition: ease-in-out all 0.5s;
}
#menuMob ul li img {
   pointer-events: none;
}
#menuMob ul li div {
   display: flex;
   gap: 10px;
   pointer-events: none;
   align-items: center;
}
#menuMob ul li div img {
   height: fit-content;
}
#menuMob ul li ul {
   list-style-type: none;
   display: none;
   flex-direction: column;
   position: absolute;
   top: 49px;
   left: 0;
   transition: ease-in-out all 0.5s;
}
#menuMob ul li:hover ul {
   display: flex;
   transition: ease-in-out all 0.5s;
   z-index: 1;
}
#menuMob ul li ul li {
   display: flex;
   gap: 15px;
   background: #87c540;
   cursor: pointer;
   padding-left: 15px;
   padding-right: 15px;
}
#menuMob ul li ul li a img {
   pointer-events: none;
}
#menuMob ul li ul li img {
   max-width: 20px;
   max-height: 20px;
}
.menubtProportion {
   display: flex;
   flex-direction: column;
   min-width: 100%;
   min-height: 50px;
   height: fit-content;
   justify-content: center;
   align-items: baseline;
   padding-left: 20px;
   text-align: start;
}
.menubtProportionUlLi {
   display: flex;
   min-width: 100%;
   min-height: 50px;
   height: fit-content;
   justify-content: start;
   align-items: center;
   text-align: start;
   gap: 10px;
}
#search {
   padding: 10px 10px;
   border-radius: 5px;
   border: 1px solid #cdcdcd;
   font-size: 1rem;
   background: #eaeaea;
   padding-right: 23px;
   max-width: 200px;
}
#searchContainer {
   display: flex;
   align-items: center;
   max-width: 10vw;
}
#searchContainer #search {
   max-width: 10vw;
}
.searchIcon {
   position: absolute;
   right: 8px;
   top: 10px;
}
#btMenuCel {
   display: none;
   align-items: center;
}
#setLang {
   display: flex;
   position: relative;
   width: fit-content;
}
#speekInfo {
   display: flex;
   height: fit-content;
   margin-right: 15px;
   cursor: pointer;
   transition: all ease-in-out 0.3s;
}
#speekInfo:hover {
   color: #fff;
   transition: all ease-in 0.3s;
}
#closeMenu {
   display: none;
   width: 40px;
   height: 40px;
   font-size: 1.2rem;
   background: #87c540;
   justify-content: center;
   align-items: center;
   position: absolute;
   right: 10px;
   top: 10px;
   z-index: 1001;
   border-radius: 50%;
   box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#containerLogo {
   width: fit-content;
   minwidth: 200px;
   maxwidth: 300px;
   height: fit-content;
}
#topoMenu {
  width: 100%;
  min-height: 30px;
  background: white;
  margin: 0;
  padding: 20px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  /* position:fixed; */
  position:relative;
  z-index:1000;
}
.tarjaMenu{
  height:80px;
  position:relative;
  width: 100%;
}
.display{
  display:flex !important;
  position: relative;
  transition: all ease-in-out 0.3s;
  z-index:100;
}
.displayNone {
   display: none !important;
}
.pageSelection{
   background:#87c540 !important;
}
@media screen and (min-width: 817px) {
   #menuMob ul li:hover {
      background: #87c540;
      transition: ease-in-out all 0.5s;
   }
   #menuMob ul li {
      display: flex;
      justify-content: center;
      transition: ease-in-out all 0.5s;
   }
   #menuMob ul li ul li:hover {
      background: #fff;
      transition: ease-in-out all 0.5s;
   }
   #menuMob ul li:hover ul {
      display: flex;
      transition: ease-in-out all 0.5s;
      z-index: 1;
   }
}
@media screen and (max-width: 816px) {
   #containerLogo {
      width: 200px;
   }
   #btMenuCel {
      display: flex;
   }
   #closeMenu {
      display: flex;
   }
   #searchContainer {
      min-width: 90px;
   }
   #topoMenu {
      justify-content: space-around;
      padding: 20px 0px;
      border: 0px solid #000;
   }
   #search {
      width: 100%;
   }
   .searchIcon {
      top: 11px;
   }
   #setLang {
      display: none;
      position: absolute;
   }
   #speekInfo {
      display: none;
   }
   #menu {
      display: flex;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 0%;
      z-index: 1000;
      overflow: hidden;
   }
   #menu ul {
      display: block;
      width: 100%;
      padding-left: 0;
   }
   #menu ul li:hover ul {
      display: flex;
      position: relative;
      transition: all ease-in-out 0.3s;
   }
   #menu ul li ul {
      top: 15px;
   }
   #menu ul li ul li {
      width: 100%;
      height: 100%;
      padding-left: 20px;
   }
   #menuMob ul li ul {
      margin-bottom: 20px;
   }
   #menuMob {
      display: flex;
      position: absolute;
      left: 0;
      top: 80px;
      width: 100%;
      height: 0%;
      z-index: 1000;
      overflow: hidden;
   }
   #menuMob ul {
      display: block;
      width: 100%;
      padding-left: 0;
   }
   #menuMob ul li ul {
      top: 15px;
      position: relative;
   }
   #menuMob ul li ul li {
      width: 100%;
      height: 100%;
      padding-left: 20px;
   }
}
#findOutMoreNew {
   clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
   background: var(--back);
   color: var(--color);
   width: fit-content;
   height: fit-content;
   padding: var(--padding);
   display: flex;
   justify-content: var(--justify);
   align-items: center;
   font-family: "Inter";
   font-weight: var(--weight);
   font-size: var(--size);
   cursor: pointer;
   transition: all ease-in-out 0.3s;
   border: none;
   text-decoration: none;
}
#findOutMoreNew:hover {
   background: var(--backHover);
   color: var(--colorHover);
   transition: all ease-in-out 0.3s;
}
.findOutMoreNew {
   clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
   background: var(--back);
   color: var(--color);
   width: fit-content;
   height: fit-content;
   padding: var(--padding);
   display: flex;
   justify-content: var(--justify);
   align-items: center;
   font-family: "Inter";
   font-weight: var(--weight);
   font-size: var(--size);
   cursor: pointer;
   transition: all ease-in-out 0.3s;
   border: none;
   text-decoration: none;
}
.findOutMoreNew:hover {
   background: var(--backHover);
   color: var(--colorHover);
   transition: all ease-in-out 0.3s;
}
.btcontainer {
   width: 20px;
   height: 20px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #cdcdcd;
   margin: 0 15px;
}
.btcontainer img {
   transform: rotate(90deg);
}
.menuContact {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   width: fit-content;
   align-items: center;
   padding: 10px 0;
   background-color: #87c540;
   font-weight: bold;
   width: 230px;
   clip-path: polygon(13% 0%, 100% 0%, 87% 100%, 0% 100%);
   color: black;
   text-transform: uppercase;
   text-decoration: none;
   margin-right: -17px;
   transition: all ease-in .3s;
}

.menuContact:hover{
   background:#c1de9b;
   transition: all ease-in .3s;
}

@media screen and (max-width: 1010px) {
   #speekInfo {
      display: none;
   }
}
#col1Footer p {
   margin-top: 15px;
   font-size: 16px;
   font-family: "Inter";
}
#col2Footer p,
#col3Footer p,
#col4Footer p {
   margin-top: 15px;
   font-size: 16px;
   font-family: "Inter";
}
#col1Footer p a,
#col2Footer p a,
#col3Footer p a,
#col4Footer p a {
   text-decoration: none;
   color: #999;
   font-size: 14px;
}
#col1Footer p a:hover,
#col2Footer p a:hover,
#col3Footer p a:hover,
#col4Footer p a:hover {
   text-decoration: none;
   color: #fff;
}
#col2F {
   width: 150px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
#col3F {
   width: 150px;
   align-items: center;
}
#col1F {
   display: flex;
   align-items: center;
}
#row3 div {
   font-family: "Inter";
   font-size: 13px;
   display: flex;
   justify-content: center;
   align-items: center;
}
#row3 div a {
   text-decoration: none;
   color: white;
}
#row3 div a:hover {
   color: #87c540;
}
.footerMobDiv {
   width: 100%;
   text-align: center;
}
.footerMobLinks a {
   color: white;
   text-decoration: none;
}
.footerMobLinks a:hover {
   color: #87c540;
}
.footerMobCred {
   width: 300px;
   font-size: 14px;
   font-weight: 600;
   font-family: "Inter";
   text-align: center;
}
.footerMobDiv a {
   color: white;
   text-decoration: none;
}
#cookiesDivGeral * {
   box-sizing: content-box;
}
#cookiesDivGeral {
   width: 100%;
   background: black;
   padding: 30px 60px;
   box-sizing: border-box;
   display: flex;
   gap: 60px;
   position: fixed;
   bottom: 0;
   left: 0;
   z-index: 1000;
}
#cookiesDivGeral #cookiesText {
   color: white;
   max-width: 70vw;
   font-family: "Inter";
   font-size: "14px";
   font-weight: 600;
}
#cookiesAcc {
   display: flex;
   gap: 20px;
}
#cookiesDivGeral #cookiesNotAccepted {
   color: white;
   padding: 10px 30px;
   border: 1px solid white;
   background: black;
   border-radius: 5px;
   width: 80px;
   text-align: center;
   cursor: pointer;
   transition: all ease-in-out 0.3s;
}
#cookiesDivGeral #cookiesNotAccepted:hover {
   color: black;
   padding: 10px 30px;
   border: 1px solid white;
   background: white;
   border-radius: 5px;
   width: 80px;
   text-align: center;
   transition: all ease-in-out 0.3s;
}
#cookiesDivGeral #cookiesAccepted {
  color: black;
  padding: 10px 30px;
  border: 1px solid white;
  background: white;
  border-radius: 5px;
  width: 80px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  font-family: "Inter";
  font-weight: 600;
}
#cookiesDivGeral #cookiesAccepted:hover {
   color: white;
   padding: 10px 30px;
   border: 1px solid white;
   background: black;
   border-radius: 5px;
   width: 80px;
   text-align: center;
   transition: all ease-in-out 0.3s;
}
.hide {
   display: none !important;
}
.footerDesk{
   display:block;
   flex-direction:column;
   background: #272324;
   color: #fff;
   width: 100%;
   height: fit-content;
   padding: 50px 30px 30px 30px;
   box-sizing: border-box;
}
.footerMob{
   display:none;
   background: #272324;
   color: #fff;
   width: 100%;
   height: fit-content;
   padding: 50px 20px;
   boxSizing: border-box;
   flexDirection: column;
   justifyContent: center;
   alignItems: center;
   gap: 30px;
}
@media screen and (max-width: 800px) {
   #cookiesAcc {
      flex-direction: column;
   }
   #cookiesDivGeral {
      gap: 20px;
      padding: 30px;
   }
   .footerDesk{
      display:none;
   }
   .footerMob{
      display:flex;
   }
}
#menuFooter {
   display: none;
   flex-direction: column;
   position: relative;
   height: 0px;
   width: 100%;
   overflow: hidden;
   box-sizing: border-box;
}
#menuFooter ul {
   width: 100%;
   height: fit-content;
   text-decoration: none;
   list-style-type: none;
}
#menuFooter ul a {
   text-decoration: none;
   color: black;
}
#menuFooter ul li {
   background: white;
   padding: 30px 30px;
   color: black;
}
#menuFooter ul li ul {
   display: none;
}
#menuFooter ul li:hover {
   background: black;
   color: white;
}
#menuFooter ul li a {
   text-decoration: none;
   color: black;
   width: 100%;
}
#menuFooter ul li:hover ul {
   display: block;
}
#closeMenuFooter {
   display: flex;
   width: 40px;
   height: 40px;
   font-size: 1.2rem;
   background: #87c540;
   justify-content: center;
   align-items: center;
   position: absolute;
   right: 10px;
   top: 10px;
   z-index: 1001;
   border-radius: 50%;
   box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.action-button {
   clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
   background: #87c540;
   color: #000;
   width: fit-content;
   height: fit-content;
   padding: 10px 25px 10px 40px;
   display: flex;
   justify-content: end;
   align-items: center;
   font-family: Inter;
   font-weight: 500;
   font-size: 13px;
   cursor: pointer;
   transition: all 0.3s ease-in-out;
   border: none;
}
.action-button:hover {
   background: white;
   color: #000;
   transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 850px) {
   #menuFooter ul li ul {
      margin-top: 20px;
   }
}
.footer2backImage {
   color: #474747;
   width: 100%;
   height: fit-content;
   padding: 30px 30px 30px 30px;
   box-sizing: border-box;
   min-height: 510px;
   background: url("/img/back-footer-blog.jpg");
   background-position: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.footer2row1{
  font-size:52px;
  font-family:'Inter';
  font-weight:bold;
  letter-spacing:0.2px;
  line-height:48px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.footer2row2{
  font-size:35px;
  font-family:'Inter';
  font-weight:bold;
  letter-spacing:0.2px;
  line-height:48px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.footer2row3 {
   margin-top: 40px;
   display: flex;
   gap: 10px;
   justify-content: center;
   align-items: center;
}
.footer2Submit{
  width:160px;
  height:56px;
  border-radius:8px;
  border:1px solid #fff;
  background:transparent;
  color:#474747;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:18px;
  font-family:'Inter';
  font-weight:bold;
  transition:all ease-in-out .3s;
}
.footer2Submit:hover {
   color: #000;
   border: 1px solid #000;
   transition: all ease-in-out 0.3s;
}
.footer2input {
   max-width: 320px;
   height: 56px;
   border-radius: 8px;
   border: 0px solid #fff;
   padding: 20px;
   box-sizing: border-box;
}
.footer2Links,
.footer2Links a {
   color: #000;
}
.footer2menuGeneral {
   max-width: 1000px;
   height: fit-content;
   display: flex;
   justify-content: center;
   margin: 0px auto;
   margin-top: 120px;
}
.footer2row3f {
   max-width: 90%;
   height: fit-content;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: auto;
   margin-top: 40px;
   margin-bottom: 20px;
   padding-bottom: 50px;
   color: #000;
}
.footer2PolContainer {
   display: flex;
   gap: 20px;
}
.footer2divisor {
   display: none;
   border: 1px solid rgba(179, 179, 179, 0.7);
   width: 100%;
}
.footer2arrowUp {
   position: absolute;
   bottom: 0;
   right: 5px;
   display: none;
}
.footer2formbtLoading {
   display: none;
   z-index: 10;
   justify-content: center;
   align-items: center;
   gap: 10px;
   margin: 0 20px;
}
@media screen and (max-width: 850px) {
   .footer2row1 {
      font-size: 24px;
      line-height: 130%;
      letter-spacing: 0.2px;
   }
   .footer2row2 {
      font-size: 24px;
      text-align: center;
      line-height: 130%;
      letter-spacing: 0.2px;
   }
   .footer2row3 {
      flex-direction: column;
      gap: 30px;
   }
   .footer2backImage {
      min-height: 460px;
      padding-top: 0;
   }
   .footer2menuGeneral {
      margin-top: 60px;
   }
   .footer2row3f {
      flex-direction: column;
      position: relative;
   }
   .footer2PolContainer {
      flex-direction: column;
      gap: 30px;
      margin: 40px 0 20px 0;
   }
   .footer2divisor {
      display: flex;
      margin-bottom: 30px;
   }
   .footer2cred {
      width: 250px;
      text-align: center;
   }
   .footer2arrowUp {
      display: flex;
   }
}

.section8Column2Mob {
  /* background:red; */
  min-height: 100%;
  width: 100%;
  padding: 60px 30px;
  box-sizing: border-box;
  z-index: 201;
}
.section8Column2InputMob {
  width: 100%;
  border-radius: 7px;
  border: 3px solid #cdcdcd;
  padding: 15px;
  box-sizing: border-box;
  /* font-family: 'Roboto'; */
  font-family: 'Inter';
  font-size: 14px;
  box-shadow: 1px 1px 1px #cdcdcdaa;
}

.divItemLang:hover{
   /* background:#c1de9b; */
   transition:all ease-in .3s;
}