@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,100;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --base: #1d1d1b;
  --green: #4ab848;
  --green-1: #8cc640;
  --green-2: #4bae32;
  --green-3: #96c11f;
  --light-green: #e2efcf;
  --light-green2: #92d891;
  --black: #000;
  --off-black: #333333;
  --white: #fff;
  --off-white: #efefef;
  --light-grey: #f4f4f4;
  --light-grey2: #dbdbdb;
  --grey: #434b53;
  --grey-2: #c2c2c3;
  --dark-grey: #231f20;
  --brown: #754b27;
  --brown-2: #81532a;
  --orange: #e1700f;
  --red: #ed1c24;
  --dark-blue: #10293d;
  --main-bg: #fff;
  --footer-bg: #f1f1f1;
  --footer-bg-1: var(--green);
  --footer-bg-2: var(--brown);
  --footer-bg-3: var(--green-1);
  --footer-bg-4: #101516;
  --green_25: rgba(74, 184, 72, 0.25);
  --grey_25: rgba(67, 75, 83, 0.25);
  --brown_25: rgba(117, 75, 39, 0.25);
}

pre {
  padding: 10px;
  position: fixed;
  width: 100vw;
  height: 40vh;
  background: rgba(0, 0, 0, 0.741);
  color: #e0e0e0;
  inset: 0;
  border: 2px solid #a80707;
}

pre .var_name {
  font-weight: bold;
  display: inline-block;
  width: 150px;
  text-align: right;
}

/*
.mygrid {
    position: fixed;
    inset: 0;
    z-index: -1;
    height: 100vh;

    .container{
        height: 100%;
    }

    .row{
        height: 100%;
    }
    .col > div {
        height: 100%;
        background: rgba(255, 0, 43, 0.07);
    }

}

.test{
    background-color: black;
}

*/

.jump-to-content {
  display: inline;
  position: absolute !important;
  top: 5px;
  left: 5px;
  z-index: 999;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

html,
body {
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
  line-height: 1;
  color: var(--base);
}

body {
  --progress: 309;
  background-image: var(--bg-img);
  background-repeat: no-repeat;
  background-size: 43.4375%;
  background-position: 220% 0;
  transition: background-position ease 2000ms;
}

body.animated {
  background-position: 100% 0;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

.btn {
  min-width: 100px;
  border-radius: 22px;
  padding: 13px 27px;
  font-size: 18px;
  line-height: 18px;
  transition: all ease 300ms;
}

.btn.full {
  width: 100%;
}

.btn.large {
  width: 200px;
  padding: 15px 27px;
  border-radius: 40px;
  font-size: 24px;
  line-height: 48px;
}

.btn.btn-green1 {
  background-color: var(--green-1);
  color: var(--white);
}

.btn.btn-green1:hover {
  background-color: var(--green);
  text-decoration: none;
}

.btn.btn-green1:active, .btn.btn-green1:focus {
  box-shadow: 0 0 0 1px var(--green_25);
}

.btn.btn-green {
  background-color: var(--green);
  color: var(--white);
}

.btn.btn-green:hover {
  background-color: var(--green-2);
  text-decoration: none;
}

.btn.btn-green:active, .btn.btn-green:focus {
  box-shadow: 0 0 0 1px var(--green_25);
}

.btn.btn-grey {
  background-color: var(--off-white);
  color: var(--off-black);
}

.btn.btn-grey:hover {
  background-color: var(--grey);
  color: var(--off-white);
  text-decoration: none;
}

.btn.btn-grey:active, .btn.btn-grey:focus {
  color: var(--off-white);
  box-shadow: 0 0 0 1px var(--grey_25);
}

.btn.btn-brown {
  background-color: var(--brown);
  color: var(--white);
}

.btn.btn-brown:hover {
  background-color: var(--brown-2);
  text-decoration: none;
}

.btn.btn-brown:active, .btn.btn-brown:focus {
  box-shadow: 0 0 0 1px var(--brown);
}

.h1,
h1 {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--main-color);
}

.h1 span,
h1 span {
  display: block;
  font-weight: 300;
  color: var(--title-color);
}

.h1 + .h1,
.h1 + h1,
h1 + .h1,
h1 + h1 {
  font-weight: 300;
  color: var(--title-color);
}

.h2,
h2 {
  text-transform: uppercase;
  font-size: 18px;
  padding-left: 38px;
  position: relative;
}

.h2::before,
h2::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--title-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.title-holder {
  --main-color: var(--base);
  --title-color: var(--green-1);
}

.title-holder.green {
  --title-color: var(--green);
}

.title-holder.brown {
  --title-color: var(--brown);
}

.title-holder.red {
  --title-color: var(--red);
}

.title-holder.white {
  --main-color: var(--white);
}

.title-holder.black {
  --main-color: var(--green);
  --title-color: var(--base);
}

.title-holder.image-holder {
  display: flex;
  gap: 80px;
}

.title-holder.image-holder img {
  max-height: 115px;
}

.content-soon {
  font-weight: 300;
  font-size: 16px;
  font-style: italic;
  color: var(--grey);
}

table {
  margin: 45px 0;
  caption-side: bottom;
  border-collapse: collapse;
}

table tr > td,
table tr > th {
  text-align: left;
}

table th {
  padding: 15px 14px 14px 14px;
  border-top: 2px solid var(--grey);
  border-bottom: 2px solid var(--grey);
  color: var(--off-black);
  font-weight: bold;
  font-size: 16px;
}

table td {
  padding: 20px 14px 18px 14px;
  border-bottom: 1px solid var(--grey);
  font-weight: 300;
  font-size: 16px;
  color: var(--base);
}

table .fix-w {
  width: 50%;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bo-content {
  padding-top: 30px;
  line-height: 24px;
  --accent-color: var(--base);
}

.bo-content a {
  color: var(--green);
}

.bo-content .as-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--green);
}

.bo-content .as-link:hover, .bo-content .as-link:active, .bo-content .as-link:focus {
  text-decoration: underline;
}

.bo-content ul {
  padding: 0;
}

.bo-content ul li {
  padding-left: 15px;
  position: relative;
  line-height: 1.2;
  padding-bottom: 9px;
}

.bo-content ul li::marker {
  font-size: 0;
  display: none;
}

.bo-content ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.bo-content.green {
  --accent-color: var(--green);
}

.bo-content.brown {
  --accent-color: var(--brown);
}

.bo-content.red {
  --accent-color: var(--red);
}

input[type="checkbox"] {
  appearance: none;
  margin: 0;
  font: inherit;
  display: grid;
  place-content: center;
  border: 1px solid var(--green);
  background-color: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
}

input[type="checkbox"]::before {
  content: "";
  width: 24px;
  height: 24px;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 24px 24px var(--green);
  border-radius: 50%;
  transform: translatex(-0.4px) translateY(-0.4px) scale(0);
}

input[type="checkbox"]:checked::before {
  transform: translatex(-0.4px) translateY(-0.4px) scale(1);
}

input[type="checkbox"][disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
  width: calc(100% - 1px);
  border-radius: 30px;
  border: 1px solid var(--light-green2);
  padding: 24px 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: var(--base);
  transition: all ease 500ms;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  border-color: var(--green);
  color: inherit;
  box-shadow: 0 0 0 1px var(--green_25);
}

input[type="text"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="tel"][disabled],
input[type="number"][disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  background: inherit;
}

input[type="text"][readonly],
input[type="email"][readonly],
input[type="password"][readonly],
input[type="tel"][readonly],
input[type="number"][readonly] {
  background-color: var(--light-grey2);
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder {
  color: var(--light-green2);
  font-weight: 500;
  font-size: 18px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder {
  color: var(--light-green2);
  font-weight: 500;
  font-size: 18px;
}

label {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--black);
  padding: 0 10px;
  margin-bottom: 10px;
}

label span {
  color: var(--green);
}

.form-holder {
  padding-top: 30px;
  color: var(--base);
  font-size: 18px;
}

.form-holder .form-info {
  margin-bottom: 40px;
}

.form-holder .form-info span {
  color: var(--green);
}

.form-holder .form-group {
  margin-bottom: 40px;
}

.form-holder .radio-form-group > div {
  display: flex;
  padding-top: 25px;
}

.form-holder .radio-form-group input {
  flex-shrink: 0;
}

.form-holder .radio-form-group label {
  font-weight: 500;
  padding: 5px 15px 0;
}

.form-holder .radio-form-group label span {
  color: var(--green-3);
}

.form-holder .radio-form-group.mini-checkbox > div {
  display: inherit;
  padding: 0;
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 0;
  position: relative;
  top: 4px;
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label {
  display: inline;
  font-size: 18px;
  font-weight: 400;
  color: var(--base);
  padding: 5px 10px 0;
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label p {
  display: inherit;
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label a {
  color: var(--green);
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label a:hover, .form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label a:active, .form-holder .radio-form-group.mini-checkbox input[type="checkbox"] + label a:focus {
  text-decoration: underline;
}

.form-holder .radio-form-group.mini-checkbox input[type="checkbox"]::before {
  --size: 12px;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 0;
  position: absolute;
  left: calc(50% - calc(var(--size) / 2));
  top: calc(50% - calc(var(--size) / 2));
}

.form-holder .form-result {
  font-size: 24px;
  font-weight: 500;
  padding-top: 10px;
  margin-bottom: 40px;
}

.form-holder .form-result .success {
  color: var(--green);
}

.form-holder .form-result .error {
  color: var(--red);
}

.form-holder .form-result .warning {
  color: var(--orange);
}

.input-validation {
  font-weight: 300;
  color: var(--red);
  padding: 10px;
  font-size: 16px;
  display: block;
}

.oc-flash-message {
  font-weight: 300;
}

.oc-flash-message a.flash-close {
  top: 5px;
}

header {
  padding-top: 50px;
  margin-bottom: 80px;
}

header .logo-holder {
  display: flex;
  align-items: center;
}

header .logo {
  width: 100%;
  max-width: 308px;
}

header .slogan-holder {
  padding-top: 30px;
}

header .slogan-holder .main-slogan {
  color: var(--green-2);
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 13px;
}

header .slogan-holder .secound-slogan {
  font-size: 60px;
  max-width: 50%;
  line-height: 48px;
}

header .slogan-holder .secound-slogan span {
  color: var(--green-3);
}

header.city-header {
  margin-bottom: 70px;
}

header.city-header .entity-logo {
  width: 100%;
  margin-bottom: 60px;
}

header.city-header .slogan-holder {
  padding-top: 16px;
}

header.city-header .slogan-holder .main-slogan {
  font-size: 90px;
}

header.city-header .slogan-holder .secound-slogan {
  font-size: 48px;
  max-width: 90%;
}

header.city-header .image-holder {
  display: flex;
  justify-content: center;
}

header.city-header .image-holder img {
  max-width: 400px;
  width: 100%;
  align-self: end;
}

header.city-header .image-slogan-holder {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

header.city-header .image-slogan-holder .image-holder {
  flex-grow: 1;
}

header.city-header .image-slogan-holder .slogan-holder {
  width: 43%;
}

footer {
  margin-top: 27px;
  padding-top: 10px;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--footer-bg-1), var(--footer-bg-1)), linear-gradient(to right, var(--footer-bg-2), var(--footer-bg-2)), linear-gradient(to right, var(--footer-bg-3), var(--footer-bg-3)), linear-gradient(to right, var(--footer-bg-4), var(--footer-bg-4));
  background-position: 0 0,
 25vw 0,
 50vw 0,
 75vw 0;
  background-size: 25vw 10px,
 25vw 10px,
 25vw 10px,
 25vw 10px;
}

footer .footer-top {
  background-color: var(--footer-bg);
  padding: 40px 0;
}

footer .footer-top .entities {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: flex-end;
  justify-content: space-between;
}

footer .footer-top .entities li:nth-of-type(3) img, footer .footer-top .entities li:nth-of-type(4) img {
  width: 157px;
}

footer .footer-top .entities li:last-of-type img {
  width: 118px;
}

footer .footer-top .entities li img {
  width: 141px;
  height: auto;
}

footer .footer-top .links {
  font-size: 18px;
  line-height: 30px;
  padding-left: 0;
  list-style: none;
}

footer .footer-top .links li::before {
  content: "- ";
}

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

footer .footer-bottom .copyright {
  font-size: 18px;
  color: var(--black);
}

footer .footer-bottom .developed-by img {
  height: 14px;
}

.go-up-wrapper {
  width: fit-content;
  margin-left: auto;
  position: sticky;
  bottom: 5%;
  z-index: 99;
}

#go-up-btn {
  --size: 55px;
  position: relative;
  width: var(--size);
  height: var(--size);
  right: 95px;
  padding: 13px;
  min-width: unset;
  opacity: 1;
  transition: all ease 300ms;
}

#go-up-btn:not(.on) {
  opacity: 0;
}

#go-up-btn svg {
  width: var(--size);
  height: var(--size);
  color: var(--green-1);
  border-radius: 50%;
  transform: rotate(90deg);
  position: absolute;
  top: -1px;
  left: -1px;
}

#go-up-btn svg path {
  stroke: var(--green-1);
  stroke-width: 14px;
  box-sizing: border-box;
  fill: transparent;
  transition: stroke-dashoffset 10ms linear 0s;
  stroke-dasharray: 309;
  stroke-dashoffset: var(--progress);
}

#go-up-btn::before {
  content: '';
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  border: 2px solid var(--dark-blue);
  z-index: -1;
}

#go-up-btn img {
  width: 100%;
  height: 100%;
}

.modal-backdrop {
  --bs-backdrop-bg: var(--grey);
  --bs-backdrop-opacity: .9;
}

.cookie-consent-dialog-overlay {
  background: rgba(67, 75, 83, 0.9);
}

.cookie-consent-banner {
  max-width: 800px;
  height: auto;
  border-radius: 24px;
  padding: 40px 35px;
  text-align: left;
  font: 16px 'Kanit', sans-serif;
  line-height: 28px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.2px;
  top: 30px;
  bottom: unset;
  left: calc(50% - 800px/2);
}

.cookie-consent-banner + div {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(67, 75, 83, 0.9);
  z-index: 9999;
  width: 100vw;
  height: 100vh;
}

.cookie-consent-banner a {
  color: var(--green-1);
}

.cookie-consent-banner-content {
  max-width: unset;
}

.cookie-consent-banner-content > h3,
.cookie-consent-dialog-title > h3 {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: var(--black) !important;
  margin-bottom: 38px;
}

.cookie-consent-banner-buttons {
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-top: 35px;
  margin-bottom: 0;
}

.cookie-consent-dialog-buttons {
  justify-content: flex-start;
}

.cookie-consent-dialog-accept-selected-button,
.cookie-consent-dialog-accept-all-button,
.cookie-consent-banner-setting-button,
.cookie-consent-banner-accept-button {
  display: inline-block;
  text-align: center;
  align-self: unset;
  margin: 0;
  min-width: 100px;
  border-radius: 22px;
  padding: 13px 27px;
  font-size: 18px;
  line-height: 18px;
  transition: all ease 300ms;
  font-weight: 400;
}

.cookie-consent-dialog-accept-selected-button,
.cookie-consent-banner-setting-button {
  margin-left: 25px;
  background-color: var(--off-white) !important;
  color: var(--off-black) !important;
}

.cookie-consent-dialog-accept-selected-button:hover,
.cookie-consent-banner-setting-button:hover {
  background-color: var(--grey) !important;
  color: var(--off-white) !important;
  text-decoration: none;
}

.cookie-consent-dialog-accept-selected-button:active, .cookie-consent-dialog-accept-selected-button:focus,
.cookie-consent-banner-setting-button:active,
.cookie-consent-banner-setting-button:focus {
  color: var(--off-white) !important;
  box-shadow: 0 0 0 1px var(--grey_25);
}

.cookie-consent-dialog-accept-all-button,
.cookie-consent-banner-accept-button {
  background-color: var(--green) !important;
  color: var(--white) !important;
}

.cookie-consent-dialog-accept-all-button:hover,
.cookie-consent-banner-accept-button:hover {
  background-color: var(--green-2) !important;
  text-decoration: none;
}

.cookie-consent-dialog-accept-all-button:active, .cookie-consent-dialog-accept-all-button:focus,
.cookie-consent-banner-accept-button:active,
.cookie-consent-banner-accept-button:focus {
  box-shadow: 0 0 0 1px var(--green_25);
}

.cookie-consent-dialog-accept-selected-button {
  margin-left: 0;
}

.cookie-consent-dialog-accept-all-button {
  margin-left: 25px;
}

.cookie-consent-dialog {
  max-width: 750px;
  height: auto;
  border-radius: 24px;
  padding: 40px 35px;
  text-align: left;
  font: 16px 'Kanit', sans-serif;
  line-height: 28px;
  font-weight: 300;
  color: var(--black) !important;
  letter-spacing: 0.2px;
  margin: 110px auto;
  border: none;
}

.cookie-consent-dialog hr {
  border-color: var(--ligth-grey5);
  border-width: 1px 0 0 0;
  width: 100%;
}

.cookie-consent-dialog-consent input[type="checkbox"] {
  transform: scale(1);
}

p.cookie-consent-dialog-consent-title {
  margin-bottom: 12px;
  color: var(--base) !important;
  font-weight: 500;
  font-size: 22px;
}

p.cookie-consent-dialog-consent-description {
  color: var(--black) !important;
}

.cookie-consent-dialog-title + p {
  display: none;
}

.cookie-consent-dialog-title > a {
  color: var(--base) !important;
}

body:not(.mobile) #request-bags:hover .menu-items a {
  right: 61px;
}

#request-bags {
  position: fixed;
  top: 56vh;
  right: 0;
  cursor: pointer;
  z-index: 999;
}

#request-bags.on .menu-items a {
  right: 61px;
}

#request-bags .menu {
  z-index: 1;
  width: 93px;
  background-color: var(--green);
  border-radius: 21px 0 0 21px;
  padding: 15px 0 15px 15px;
  position: absolute;
  right: 0;
  height: 100%;
}

#request-bags .menu img {
  height: 48px;
  width: auto;
  filter: invert(1);
  margin-bottom: 3px;
}

#request-bags .menu span {
  text-transform: uppercase;
  color: var(--white);
  font-size: 14px;
}

#request-bags .menu-items {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: right;
  right: 0;
  top: 0;
  align-items: flex-end;
}

#request-bags .menu-items a {
  background-color: var(--green-1);
  color: var(--white);
  white-space: nowrap;
  flex-grow: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  padding-right: 40px;
  margin-bottom: 1px;
  border-radius: 20px 0 0 20px;
  position: relative;
  right: -100%;
  transition: all ease 400ms;
}

#request-bags .menu-items a:last-child {
  margin-bottom: 0;
}

#request-bags .menu-items a:nth-child(1) {
  transition-delay: 50ms;
}

#request-bags .menu-items a:nth-child(2) {
  transition-delay: 200ms;
}

#request-bags .menu-items a:nth-child(3) {
  transition-delay: 100ms;
}

#request-bags .menu-items a:nth-child(4) {
  transition-delay: 50ms;
}

#intro {
  margin-bottom: 100px;
}

#intro .title-holder .h2 {
  margin-top: 35px;
}

#intro .enter-entity {
  margin-top: 40px;
}

#intro .enter-entity img {
  width: 100%;
  height: 100px;
  margin-bottom: 30px;
  max-width: 193px;
}

#how-it-works {
  background-color: var(--light-grey);
  margin-bottom: 100px;
}

#how-it-works .container {
  padding-top: 105px;
  padding-bottom: 95px;
  position: relative;
}

#how-it-works .container::before {
  --bs-gutter-x: 1.5rem;
  content: "";
  position: absolute;
  top: 10px;
  bottom: 13px;
  right: calc(41.66666667% + calc(var(--bs-gutter-x) * .5));
  width: 880px;
  background-image: url("../img/imagem.svg");
  background-repeat: no-repeat;
  opacity: 15%;
  background-size: contain;
  z-index: 0;
}

#how-it-works .row {
  z-index: 1;
  position: relative;
}

#how-it-works .how-it-works-content {
  display: flex;
  align-items: center;
}

#how-it-works .how-it-works-content .title-holder {
  flex-shrink: 0;
  margin-right: 45px;
}

#how-it-works .how-it-works-content .content-holder p {
  line-height: 24px;
  color: var(--base);
}

#sacos-verdes {
  margin-bottom: 115px;
}

#sacos-verdes .title-holder {
  margin-bottom: 10px;
}

#sacos-verdes .step {
  padding-top: 67px;
  text-align: center;
}

#sacos-verdes .step img {
  width: 200px;
  margin-bottom: 20px;
}

#sacos-verdes .step p {
  font-size: 30px;
  color: var(--base);
}

#dos {
  padding: 75px 0 80px;
  background-color: var(--light-green);
  margin-bottom: 90px;
}

#donts {
  margin-bottom: 110px;
}

#dos .item,
#donts .item {
  padding-top: 50px;
  text-align: center;
}

#dos .item img,
#donts .item img {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 15px;
}

#dos .item p,
#donts .item p {
  font-weight: 500;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 5px;
}

#dos .item p + p,
#donts .item p + p {
  font-weight: 300;
  font-size: 16px;
  color: var(--dark-grey);
}

#numbers {
  margin-bottom: 170px;
  --img-bg: url("../img/temp_2.png");
}

#numbers .banner {
  background-image: var(--img-bg);
  border-radius: 120px;
  height: 245px;
  position: relative;
  z-index: -2;
}

#numbers .banner::before {
  content: "";
  inset: 0;
  background: var(--black);
  opacity: 60%;
  position: absolute;
  z-index: -1;
  border-radius: 120px;
}

#numbers .title-holder {
  height: 100%;
  display: flex;
  align-items: center;
}

#numbers .title-holder .h1,
#numbers .title-holder h1 {
  padding-top: 8px;
}

#numbers .numbers-wrapper {
  display: flex;
  justify-content: space-between;
}

#numbers .numbers-wrapper .number-holder {
  padding-top: 45px;
}

#numbers .numbers-wrapper .number-holder img {
  filter: invert(1);
  height: 81px;
}

#numbers .numbers-wrapper .number-holder .text {
  color: var(--green-1);
  font-size: 20px;
  margin: 14px 0;
}

#numbers .counter {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 38px;
}

#numbers .counter .number {
  display: flex;
  height: 38px;
  font-size: 40px;
  line-height: 38px;
  justify-content: flex-start;
}

#numbers .counter .number .digit {
  width: 27px;
  position: relative;
  overflow: hidden;
}

#numbers .counter .number .digit .digit-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: -1%;
  top: 0%;
  translate: 0% 0%;
  transition: translate 3000ms cubic-bezier(0.1, 0.67, 0, 1);
  text-align: center;
}

#faqs {
  margin-bottom: 68px;
}

#faqs #faqsAccordion {
  margin-top: 26px;
}

#faqs #faqsAccordion .accordion-item {
  border-bottom: 1px solid var(--grey-2);
}

#faqs #faqsAccordion .accordion-item:first-child {
  border-top: 1px solid var(--grey-2);
}

#faqs #faqsAccordion .accordion-item .accordion-button {
  padding: 12px 40px 16px 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--green-1);
  background: transparent;
  box-shadow: none;
  position: relative;
}

#faqs #faqsAccordion .accordion-item .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 72px;
  line-height: 16px;
  font-weight: 100;
  color: var(--black);
  width: 35px;
  height: 32px;
  position: absolute;
  top: 14px;
  right: 2px;
  transform-origin: center;
}

#faqs #faqsAccordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "-";
}

#faqs #faqsAccordion .accordion-item .accordion-body {
  padding: 5px 70px 30px 1px;
  font-size: 16px;
  color: var(--base);
  line-height: 22px;
}

#gandes-produtores {
  margin-bottom: 85px;
}

#gandes-produtores .title-holder {
  margin-bottom: 10px;
}

#compostagem {
  margin-bottom: 115px;
  padding: 75px 0 80px;
  background-color: var(--off-white);
}

#compostagem .title-holder {
  padding-bottom: 10px;
}

#compostagem .steps {
  display: flex;
  gap: 20px;
  padding: 30px 0 55px;
}

#compostagem .list-title {
  padding-bottom: 0px;
}

#compostagem .list-title .h1 {
  color: var(--title-color);
}

#compostagem .dos ul,
#compostagem .donts ul {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
}

#project-logos {
  padding-top: 30px;
  margin-bottom: 85px;
}

#project-logos .project-logos-holder {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
}

#project-logos .project-logos-holder .logo-wrapper {
  max-width: 150px;
  text-align: center;
}

#project-logos .project-logos-holder .logo-wrapper img {
  max-width: 100%;
}

#project-logos .project-logos-holder .logo-wrapper p {
  margin-top: 13px;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.city-info {
  margin-bottom: 90px;
}

.go-to-account {
  margin-bottom: 80px;
}

#content {
  padding: 80px 0 90px;
}

#account {
  margin-bottom: 100px;
}

#account .title-holder .h2 {
  margin-top: 35px;
}

#account .user-info {
  font-size: 24px;
  color: var(--black);
  font-weight: 300;
  line-height: 30px;
}

#account .user-info .label {
  color: var(--green);
  font-weight: 700;
  padding-right: 10px;
}

#account .user-info .address-holder {
  display: flex;
}

#account .user-info .address-holder > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#account .form-buttons {
  display: flex;
  justify-content: space-between;
}

#account .numbers-wrapper {
  display: flex;
  justify-content: space-between;
}

#account .numbers-wrapper .number-holder {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

#account .numbers-wrapper .number-holder img {
  height: 100px;
}

#account .numbers-wrapper .number-holder .text {
  font-size: 24px;
  margin: 14px 0;
}

#account .counter {
  color: var(--green);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 38px;
  margin-top: -7px;
}

#account .counter .number {
  display: flex;
  height: 38px;
  font-size: 40px;
  line-height: 38px;
  justify-content: flex-start;
}

#account .counter .number .digit {
  width: 27px;
  position: relative;
  overflow: hidden;
}

#account .counter .number .digit .digit-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: -1%;
  top: 0%;
  translate: 0% 0%;
  transition: translate 3000ms cubic-bezier(0.1, 0.67, 0, 1);
  text-align: center;
}

@media (max-width: 1500px) {
  header .slogan-holder .main-slogan {
    font-size: 5vw;
  }
  header .slogan-holder .secound-slogan {
    font-size: 3.7vw;
  }
}

@media (max-width: 1399px) {
  header .slogan-holder .secound-slogan {
    max-width: 53%;
  }
  header.city-header .image-slogan-holder .slogan-holder {
    width: 50%;
  }
}

@media (max-width: 1199px) {
  footer .footer-top .links {
    padding-top: 20px;
  }
  #numbers .numbers-wrapper {
    padding-right: 35px;
  }
}

@media (max-width: 991px) {
  body {
    background-size: 60%;
  }
  header .slogan-holder .main-slogan {
    font-size: 10vmin;
  }
  header .slogan-holder .secound-slogan {
    max-width: 100%;
    font-size: 7vmin;
    line-height: 6vmin;
  }
  header.city-header .slogan-holder .main-slogan {
    font-size: 15vmin;
  }
  header.city-header .slogan-holder .secound-slogan {
    max-width: 100%;
    font-size: 7vmin;
    line-height: 6vmin;
  }
  header.city-header .image-slogan-holder {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -20%;
  }
  header.city-header .image-slogan-holder .slogan-holder {
    width: 100%;
  }
  #go-up-btn {
    right: 20px;
  }
  #how-it-works .how-it-works-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  #how-it-works .how-it-works-content .title-holder {
    padding-bottom: 45px;
  }
  footer .footer-top .entities {
    flex-wrap: wrap;
  }
  footer .footer-top .entities li {
    margin-top: 20px;
  }
  #numbers .title-holder {
    justify-content: center;
  }
  #numbers .title-holder .h1,
  #numbers .title-holder h1 {
    padding-top: 20px;
  }
  #numbers .banner {
    height: auto;
  }
  #numbers .numbers-wrapper {
    padding: 0 20px 20px;
    justify-content: center;
  }
  #numbers .numbers-wrapper .number-holder {
    flex-basis: 33.33%;
    text-align: center;
  }
  #numbers .counter .number {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .cookie-consent-banner {
    left: 10px;
    width: calc(100% - 20px);
  }
  .cookie-consent-dialog {
    width: calc(100% - 40px);
    margin: 70px auto;
  }
}

@media (max-width: 767px) {
  header .slogan-holder .secound-slogan {
    padding-right: 50px;
  }
  header.city-header .image-holder {
    justify-content: flex-start;
    width: 100%;
  }
  header.city-header .image-holder img {
    width: 50%;
  }
  footer .footer-top .entities li {
    flex-basis: 50%;
  }
  .h1, h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .title-holder.image-holder {
    gap: 20px;
  }
  .title-holder.image-holder .title-wrapper {
    flex-basis: 80%;
  }
  .title-holder.image-holder .image-wrapper {
    position: relative;
  }
  .title-holder.image-holder .image-wrapper img {
    position: absolute;
    top: -10px;
    left: 0px;
  }
  #numbers .title-holder .h1,
  #numbers .title-holder h1 {
    padding-top: 80px;
  }
  #numbers .numbers-wrapper {
    flex-direction: column;
    padding-bottom: 60px;
  }
  #account .numbers-wrapper {
    margin: 45px 0 20px;
  }
}

@media (max-width: 576px) {
  header .slogan-holder .secound-slogan,
  header.city-info .slogan-holder .secound-slogan {
    font-size: 10vmin;
    line-height: 9vmin;
  }
  header .slogan-holder .main-slogan,
  header.city-info .slogan-holder .main-slogan {
    font-size: 18vmin;
  }
  .title-holder.image-holder {
    flex-wrap: wrap;
  }
  .title-holder.image-holder .title-wrapper {
    flex-basis: unset;
  }
  .title-holder.image-holder .image-wrapper {
    position: unset;
    width: 100%;
    text-align: center;
  }
  .title-holder.image-holder .image-wrapper img {
    position: unset;
  }
  #compostagem .steps img {
    width: calc(calc(100% - 40px) / 3);
  }
  #compostagem .dos ul,
  #compostagem .donts ul {
    -moz-column-count: unset;
    -moz-column-gap: unset;
    -webkit-column-count: unset;
    -webkit-column-gap: unset;
    column-count: unset;
    column-gap: unset;
  }
  #request-bags {
    top: 220px !important;
    right: -18px;
  }
  #request-bags .menu {
    padding: 15px 15px 15px 15px;
  }
  #request-bags .menu span {
    font-size: 12px;
  }
  #manage-cookies .modal-footer {
    flex-direction: column;
  }
  #manage-cookies .modal-footer .btn + .btn {
    margin-left: 0;
    margin-top: 22px;
  }
  #project-logos .project-logos-holder {
    flex-direction: column;
    gap: 40px;
  }
  #project-logos .project-logos-holder .logo-wrapper {
    max-width: 100%;
  }
  .cookie-consent-banner-buttons {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .cookie-consent-dialog-accept-selected-button, .cookie-consent-banner-setting-button {
    margin-left: 0;
  }
  .cookie-consent-dialog-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 375px) {
  #request-bags {
    top: 175px;
  }
}
