.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 10%;
  max-width: 10%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 10%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 20%;
  max-width: 20%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 20%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 30%;
  max-width: 30%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 30%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 40%;
  max-width: 40%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 40%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 50%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 60%;
  max-width: 60%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 60%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 70%;
  max-width: 70%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 70%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 80%;
  max-width: 80%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 80%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 90%;
  max-width: 90%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 90%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 10%;
    max-width: 10%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 10%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 20%;
    max-width: 20%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 20%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 30%;
    max-width: 30%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 30%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 40%;
    max-width: 40%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 40%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 50%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 60%;
    max-width: 60%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 60%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 70%;
    max-width: 70%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 70%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 80%;
    max-width: 80%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 80%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 90%;
    max-width: 90%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 90%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 10%;
    max-width: 10%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 10%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 20%;
    max-width: 20%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 20%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 30%;
    max-width: 30%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 30%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 40%;
    max-width: 40%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 40%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 50%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 60%;
    max-width: 60%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 60%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 70%;
    max-width: 70%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 70%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 80%;
    max-width: 80%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 80%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 90%;
    max-width: 90%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 90%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 10%;
    max-width: 10%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 10%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 20%;
    max-width: 20%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 20%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 30%;
    max-width: 30%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 30%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 40%;
    max-width: 40%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 40%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 50%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 60%;
    max-width: 60%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 60%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 70%;
    max-width: 70%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 70%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 80%;
    max-width: 80%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 80%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 90%;
    max-width: 90%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 90%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 10%;
    max-width: 10%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 10%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 20%;
    max-width: 20%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 20%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 30%;
    max-width: 30%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 30%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 40%;
    max-width: 40%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 40%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 50%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 60%;
    max-width: 60%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 60%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 70%;
    max-width: 70%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 70%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 80%;
    max-width: 80%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 80%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 90%;
    max-width: 90%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 90%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
html {
  font-family: "Inter";
  font-size: 16px;
  color: #373533;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bree Serif";
  color: #5E62D1;
  font-weight: lighter;
}

.text-size--heading-1 {
  font-size: 80px;
}

.text-size--heading-2 {
  font-size: 64px;
}

.text-size--heading-3, h1 {
  font-size: 48px;
}

.text-size--heading-4, h2 {
  font-size: 36px;
}

.text-size--heading-5, h3,
h4,
h5,
h6 {
  font-size: 32px;
}

.text-size--heading-6 {
  font-size: 24px;
}

.text-size--body-2, .text--body-2, .text--subtitle-2 {
  font-size: 14px;
}

.text-size--caption, .text--overline, .text--caption {
  font-size: 12px;
}

.text--subtitle-2 {
  font-weight: bold;
}

.text--overline {
  text-transform: uppercase;
}

html {
  background-color: #F1F3FF;
}

.content-container {
  margin-top: 125px;
  min-height: calc(100vh - 125px - 120px);
}

.content-container-legacy {
  margin-top: 125px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

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

@media screen and (max-width: 64rem) {
  .content-container {
    margin-top: 96px;
    border-top: 1px solid #5E62D1;
  }
  .content-container-legacy {
    margin-top: 96px;
    border-top: 1px solid #5E62D1;
  }
}
body {
  overflow-x: hidden;
}

.menu {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 2;
  width: 100%;
  font-size: 16px;
}

.menu__logo {
  width: 25%;
  height: 125px;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  cursor: pointer;
}
.menu__logo img {
  display: block;
  padding: 14px;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.menu__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.menu__search-bar {
  width: 50%;
  display: flex;
  flex-grow: 1;
}
.menu__search-bar input[type=text] {
  border: none;
  font-size: 16px;
  width: 100%;
  padding-left: 90px;
  background-color: #F1F3FF;
  border-top: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  color: #7579F1;
  font-family: "Inter";
}
.menu__search-bar input[type=text]:focus {
  color: #5E62D1;
  border-top: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  border-left: none;
  background-color: #5FECC8;
  outline: none;
}

.lupa-icon {
  background: url(/assets/img/lupa.svg) left;
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 35px;
}

.menu__cta {
  width: 25%;
  flex-grow: 1;
  text-align: center;
  background-color: #5E62D1;
}
.menu__cta p {
  color: #F1F3FF;
}

.menu__button {
  width: 25%;
  background-color: #F1F3FF;
  border-bottom: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.menu__button p {
  color: #5E62D1;
}
.menu__button a {
  text-decoration: none;
  color: #5E62D1;
  display: block;
  padding: 17px;
}
.menu__button a:visited {
  color: #5E62D1;
}
.menu__button:hover {
  background-color: #5FECC8;
}

.menu__button--selected {
  background-color: #5FECC8;
}

.menu__dropdown-menu {
  display: none;
  top: 100%;
  left: -1px;
  right: -1px;
  background-color: #F1F3FF;
  z-index: 1;
  position: absolute;
}
.menu__dropdown-menu :hover {
  background-color: #5FECC8;
}

.menu__button:hover .menu__dropdown-menu {
  display: block;
}

.menu__dropdown-button {
  display: block;
  height: 62.5px;
  background-color: #F1F3FF;
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  border-top: 1px solid #5E62D1;
}
.menu__dropdown-button a {
  text-decoration: none;
  color: #5E62D1;
  display: block;
  padding: 17px;
}
.menu__dropdown-button a:visited {
  color: #5E62D1;
}

.menu__dropdown-button--selected {
  background-color: #5FECC8;
}

.menu__dropdown-button:last-child {
  border-bottom: 1px solid #5E62D1;
}

.menu-mobile--hidden {
  display: none;
}

@media screen and (max-width: 64rem) {
  .menu {
    display: none;
  }
  .menu-mobile--hidden {
    position: fixed;
    top: 0;
    display: block;
    z-index: 2;
    width: 100vw;
    font-family: "Inter";
    font-size: 16px;
    overflow: scroll;
    overflow-x: hidden;
  }
  .menu-mobile__logo {
    width: 100%;
    height: 104.1666666667px;
    padding-left: 15px;
    background-color: #F1F3FF;
    border: 1px solid #5E62D1;
    cursor: pointer;
  }
  .logo {
    padding: 8px;
    padding-top: 20px;
    height: 90%;
    float: left;
  }
  .hamburger-menu-button {
    padding: 15px;
    height: 65px;
    width: 65px;
    margin-top: 15px;
    margin-right: 15px;
    float: right;
    background-color: #F1F3FF;
    border: none;
    cursor: pointer;
  }
  .hamburger-menu-button img {
    display: none;
  }
  .hamburger-menu-button .show-cross-img {
    display: block;
  }
  .full-dropdown {
    display: none;
  }
  .show-full-dropdown {
    display: block;
  }
  .menu-mobile__search-bar {
    width: 100%;
    height: 104.1666666667px;
    display: flex;
    flex-grow: 1;
  }
  .menu-mobile__search-bar input[type=text] {
    border: none;
    font-size: 16px;
    width: 100%;
    padding-left: 80px;
    background-color: #F1F3FF;
    border: none;
    color: #7579F1;
    font-family: "Inter";
  }
  .menu-mobile__search-bar input[type=text]:focus {
    color: #5E62D1;
    background-color: #5FECC8;
    border: none;
  }
  .lupa-icon {
    background: url(/assets/img/lupa.svg) left;
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: 30px;
  }
  .menu-mobile__cta {
    width: 100%;
    height: 104.1666666667px;
    text-align: left;
    padding-top: 14px;
    background-color: #5E62D1;
  }
  .menu-mobile__cta p {
    color: #F1F3FF;
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
    padding-top: 7px;
  }
  .menu-mobile__button {
    width: 100%;
    height: 104.1666666667px;
    padding-top: 20px;
    background-color: #F1F3FF;
    text-align: left;
    border-top: 1px solid #5E62D1;
    margin-top: -1px;
    cursor: pointer;
    z-index: -1;
  }
  .menu-mobile__button p {
    color: #5E62D1;
    padding-left: 30px;
  }
  .menu-mobile__button a {
    text-decoration: none;
    color: #5E62D1;
    display: block;
    padding: 17px;
    padding-left: 30px;
  }
  .menu-mobile__button a:visited {
    color: #5E62D1;
  }
  .menu-mobile__button img {
    width: 25px;
    height: 25px;
    float: right;
    margin-right: 17px;
  }
  .menu-mobile__button:hover {
    background-color: #5FECC8;
  }
  .menu-mobile__button--selected {
    background-color: #5FECC8;
  }
  .menu-mobile__dropdown-menu {
    display: none;
    top: 100%;
    left: -1px;
    right: -1px;
    background-color: #F1F3FF;
    z-index: 1;
    position: absolute;
  }
  .menu-mobile__dropdown-menu :hover {
    background-color: #5FECC8;
  }
  .menu-mobile__button:hover .menu-mobile__dropdown-menu {
    display: block;
  }
  .menu-mobile__dropdown-button--selected {
    background-color: #5FECC8;
  }
  .full-container {
    margin-top: 30vh;
    font-family: "Inter";
    font-size: 16px;
  }
  .dropContainer {
    width: 100%;
    border: 1px solid #5E62D1;
  }
  .dropContainer + .dropContainer {
    border-top: none;
  }
  .dropbtn {
    width: 100%;
    height: 104.1666666667px;
    background-color: #F1F3FF;
    color: #5E62D1;
    padding: 16px;
    font-size: 16px;
    text-align: left;
    padding-left: 30px;
    cursor: pointer;
    padding-top: 20px;
    border: none;
  }
  .dropbtn img {
    width: 25px;
    height: 25px;
    float: right;
    margin-right: 19px;
    display: none;
  }
  .dropbtn:hover {
    background-color: #5FECC8;
  }
  .dropbtn .show-arrow-img {
    display: block;
  }
  .dropContainer:last-child {
    border-bottom: 1px solid #5E62D1;
  }
  .dropdown-content {
    display: block;
    background-color: #F1F3FF;
    width: 100%;
    z-index: 1;
  }
  .menu--mobile__dropdown-button {
    display: none;
    height: 62.5px;
    background-color: #EDEEF4;
    padding-top: 5px;
    font-size: 14px;
  }
  .menu--mobile__dropdown-button a {
    text-decoration: none;
    color: #5E62D1;
    display: block;
    padding: 14px;
    padding-left: 30px;
  }
  .menu--mobile__dropdown-button a:visited {
    color: #5E62D1;
  }
  .menu--mobile__dropdown-button img {
    width: 20px;
    height: 20px;
    float: right;
    margin-right: 24px;
  }
  .menu--mobile__dropdown-button:hover {
    background-color: #5FECC8;
  }
  .menu--mobile__dropdown-button:first-child {
    border-top: 1px solid #5E62D1;
  }
  .show-dropdown {
    display: block;
  }
  .dropbtn--selected {
    background-color: #5FECC8;
  }
  .menu--mobile__dropdown-button--selected {
    background-color: #5FECC8;
  }
  .menu__redes-sociais-grid {
    width: 100%;
    height: 104.1666666667px;
    padding-top: 25px;
    background-color: #F1F3FF;
    border: 1px solid #5E62D1;
    border-top: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5px;
    padding-left: 35px;
  }
  .menu__redes-sociais-grid a {
    color: #5E62D1;
    background-color: #F1F3FF;
    border: 1px solid #5E62D1;
    height: 55px;
    width: 55px;
    padding: 5px;
    cursor: pointer;
  }
  .menu__redes-sociais-grid :hover {
    background-color: #5FECC8;
  }
  .noScroll {
    overflow: hidden;
  }
  .scroll {
    inset: 0;
  }
}
.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  font-size: 14px;
}

.footer__container {
  padding-top: 2px;
  height: 120px;
  border: 1px solid #5E62D1;
}
.footer__container h1 {
  color: #5E62D1;
  font-size: 14px;
  font-weight: bold;
  margin-left: 35px;
}
.footer__container p {
  color: #373533;
  margin-left: 35px;
  margin-right: 35px;
}

.footer__container--border-bottom-top {
  border-left: 0px;
  border-right: 0px;
}
.footer__container--border-bottom-top input[type=text] {
  color: #5E62D1;
  border: 1px solid #5E62D1;
  font-size: 14px;
  padding: 6px;
  margin-left: 35px;
  padding-left: 20px;
  margin-top: 5px;
  margin-right: 35px;
  height: 40px;
  width: 85%;
}
.footer__container--border-bottom-top input[type=text]:focus {
  color: #5E62D1;
  border: 1px solid #5E62D1;
  background-color: #5FECC8;
  outline: none;
}

.arrow-icon {
  background: url(/assets/img/arrow.svg) right;
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 96%;
}

.footer__redes-sociais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 35px;
  margin-left: 35px;
  margin-top: 13px;
}
.footer__redes-sociais-grid a {
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  height: 40px;
  width: 40px;
  padding: 5px;
  cursor: pointer;
}
.footer__redes-sociais-grid :hover {
  background-color: #5FECC8;
}

@media screen and (max-width: 1039px) {
  .footer {
    grid-template-columns: 1fr;
  }
  .footer__container--border-bottom-top {
    border-left: 1px solid #5E62D1;
    border-right: 1px solid #5E62D1;
    border-top: 0px;
    border-bottom: 0px;
  }
}
@media screen and (max-width: 1187px) {
  .footer h1 {
    font-size: 12px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer .footer__container--border-bottom-top input[type=text] {
    font-size: 12px;
  }
}
.content-container-legacy__columns {
  width: 50%;
  min-height: 100vh;
  padding-left: 35px;
  padding-right: 35px;
}
.content-container-legacy__columns h4 {
  font-family: "Bree Serif";
  font-size: 36px;
  font-weight: lighter;
  margin-top: 35px;
  margin-bottom: 35px;
  color: #5E62D1;
  line-height: 1.2em;
}
.content-container-legacy__columns p {
  color: #373533;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: -5px;
}

.paje {
  grid-column: 1/2;
  grid-row: 1/4;
  padding-left: 15px;
  padding-right: 15px;
}
.paje h4 {
  margin-top: 38px;
  margin-bottom: 20px;
}

.mensagem {
  grid-column: 1/2;
  grid-row: 4/5;
  padding-left: 15px;
  padding-right: 15px;
}
.mensagem h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mensagem-presidente {
  float: right;
  text-align: right;
  font-weight: bold;
  font-size: 14px;
  margin-top: 22px;
}

.historia {
  grid-column: 2/4;
  grid-row: 1/5;
  padding-left: 15px;
  padding-right: 15px;
}
.historia h4 {
  margin-top: 38px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1039px) {
  .paje {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .mensagem {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 7;
    grid-row-end: 8;
  }
  .historia {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 3;
    grid-row-end: 6;
  }
  .historia h4 {
    margin-top: 10px;
  }
}
.content-container-legacy__text-block {
  width: 540px;
  flex-grow: 1;
  min-height: 76vh;
  border-left: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  padding-left: 35px;
  padding-right: 35px;
}
.content-container-legacy__text-block h1 {
  margin-top: 20px;
}
.content-container-legacy__text-block p {
  color: #373533;
  margin-top: -12px;
}

.content-container-legacy__cta {
  width: 809px;
  flex-grow: 1;
  min-height: 76vh;
  border-bottom: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  padding-left: 35px;
  padding-right: 35px;
  background-image: radial-gradient(farthest-corner at 40% 80%, rgb(95, 236, 200) 0%, rgba(94, 98, 209, 0.3) 85%);
}
.content-container-legacy__cta h1 {
  margin-top: 20px;
  text-decoration: none;
  color: #5E62D1;
}
.content-container-legacy__cta p {
  margin-top: -12px;
  margin-bottom: 115px;
}

.content-container-legacy--no-margin {
  margin-top: 0px;
}

.content-container-legacy__button {
  width: 33.3333333333%;
  height: 170px;
  cursor: pointer;
  color: #5E62D1;
}
.content-container-legacy__button a {
  display: block;
  color: #5E62D1;
  text-decoration: none;
  height: 170px;
  padding-top: 40px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: "Bree Serif";
  font-weight: lighter;
  font-size: 32px;
  line-height: 1.2em;
}
.content-container-legacy__button img {
  height: 50px;
  width: 50px;
  display: inline;
  float: right;
  margin-top: 18px;
}

.content-container-legacy__button--border-left-right {
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
}
.content-container-legacy__button--border-left-right a {
  padding-top: 60px;
}
.content-container-legacy__button--border-left-right a img {
  margin-top: -3px;
}

.content-container-legacy__button:hover {
  background-color: #5FECC8;
}

@media screen and (max-width: 1365px) {
  .content-container-legacy__text-block {
    width: 540px;
    flex-grow: 1;
    min-height: 20vh;
    order: 2;
    border-bottom: 0px;
  }
  .content-container-legacy__text-block p {
    margin-bottom: 35px;
  }
  .content-container-legacy__cta {
    width: 809px;
    flex-grow: 1;
    min-height: 20vh;
    order: 1;
    border-left: 1px solid #5E62D1;
  }
  .content-container-legacy--no-margin {
    order: 3;
  }
  .content-container-legacy__button {
    width: 100%;
    height: 90px;
    border-top: 1px solid #5E62D1;
    border-left: 1px solid #5E62D1;
    border-right: 1px solid #5E62D1;
  }
  .content-container-legacy__button a {
    height: 90px;
    padding-top: 25px;
  }
  .content-container-legacy__button a br {
    display: none;
  }
  .content-container-legacy__button a img {
    height: 40px;
    width: 40px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 433px) {
  .content-container-legacy__button a {
    height: 90px;
    font-size: 24px;
    padding-top: 30px;
  }
  .content-container-legacy__button a img {
    height: 35px;
    width: 35px;
    margin-top: 0px;
  }
  .content-container-legacy__button--border-left-right a img {
    margin-top: 0px;
  }
}
@media screen and (max-width: 351px) {
  .content-container-legacy__button a {
    height: 90px;
    font-size: 24px;
    padding-top: 15px;
  }
  .content-container-legacy__button a img {
    margin-top: 15px;
  }
  .content-container-legacy__button--border-left-right a {
    padding-top: 30px;
  }
  .content-container-legacy__button--border-left-right a img {
    margin-top: 0px;
  }
}
.content-container-legacy__documentos-oficiais {
  width: 100%;
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
}
.content-container-legacy__documentos-oficiais h1 {
  margin-top: 20px;
  padding-left: 35px;
  margin-bottom: 35px;
}

.content-container-legacy__long-button {
  height: 15.6vh;
  cursor: pointer;
  color: #5E62D1;
}
.content-container-legacy__long-button a {
  display: block;
  padding: 6vh;
  color: #5E62D1;
  text-decoration: none;
}
.content-container-legacy__long-button img {
  height: 50px;
  width: 50px;
  display: inline;
  float: right;
  margin-top: -10px;
}
.content-container-legacy__long-button:hover {
  background-color: #5FECC8;
  font-style: italic;
}

.content-container-legacy__long-button--border-top-bottom {
  border-top: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
}

.content-container-legacy__long-button--border-bottom {
  border-bottom: 1px solid #5E62D1;
}

@media screen and (max-width: 1039px) {
  .content-container-legacy__long-button {
    height: 6vh;
    margin-bottom: 35px;
    margin-left: 35px;
    margin-right: 35px;
    border: 1px solid #5E62D1;
  }
  .content-container-legacy__long-button a {
    padding: 1.5vh;
  }
  .content-container-legacy__long-button img {
    height: 40px;
    width: 40px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 427px) {
  .content-container-legacy__long-button--fix-text a {
    padding-top: 0.9vh;
  }
  .content-container-legacy__long-button--fix-text img {
    margin-top: 2px;
  }
}
.content-container-legacy__small-button {
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  font-size: 16px;
  height: 40px;
  width: 185px;
  margin-top: 30px;
  cursor: pointer;
}
.content-container-legacy__small-button img {
  height: 25px;
  width: 25px;
  float: left;
  margin-left: 10px;
  margin-top: 6px;
}
.content-container-legacy__small-button a {
  display: inline;
  color: #5E62D1;
  float: right;
  margin-right: 10px;
  padding: 6px;
}
.content-container-legacy__small-button:hover {
  background-color: #5FECC8;
}

.content-container-legacy__long-button--border-bottom {
  border-bottom: 1px solid #5E62D1;
}

.content-container-legacy__long-button--border-top {
  border-top: 1px solid #5E62D1;
}

.content-container-legacy__long-button--border-top-bottom {
  border-top: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
}

.content-container-legacy__columns h1 {
  font-family: "Bree Serif";
  font-weight: lighter;
  font-size: 80px;
  margin-top: 35px;
  color: #5E62D1;
  line-height: 1.2em;
  margin-bottom: 25px;
}
.content-container-legacy__columns p {
  margin-top: 10px;
}
.content-container-legacy__columns input[type=text]:focus {
  color: #5E62D1;
  border: 1px solid #5E62D1;
  background-color: #5FECC8;
  outline: none;
}

.map-container {
  margin-top: 40px;
  height: 370px;
  width: 100%;
}

.map {
  height: 100%;
  width: 100%;
}

.content-container__input {
  display: block;
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  font-size: 14px;
  padding: 6px;
  padding-left: 20px;
  height: 40px;
  width: 625px;
  margin-top: 5px;
}

.content-container__input--bigger {
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  font-size: 14px;
  padding: 20px;
  padding-top: 15px;
  height: 185px;
  width: 625px;
  resize: none;
  font-family: "Inter";
  margin-top: 5px;
}
.content-container__input--bigger:focus {
  color: #5E62D1;
  border: 1px solid #5E62D1;
  background-color: #5FECC8;
  outline: none;
}

.send-button {
  color: #F1F3FF;
  background-color: #5E62D1;
  border: 1px solid #5E62D1;
  height: 50px;
  width: 185px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
}
.send-button:hover {
  background-color: #5FECC8;
  color: #5E62D1;
}

@media screen and (max-width: 1352px) and (min-width: 1039px) {
  .content-container__input {
    width: 452px;
  }
  .content-container__input--bigger {
    width: 452px;
  }
}
@media screen and (max-width: 712px) {
  .content-container__input {
    width: 452px;
  }
  .content-container__input--bigger {
    width: 452px;
  }
}
@media screen and (max-width: 547px) {
  .content-container__input {
    width: 275px;
  }
  .content-container__input--bigger {
    width: 275px;
  }
  .map-container {
    height: 250px;
  }
}
.col-xs-10 h1 {
  margin-bottom: 20px;
  margin-top: 4px;
}

.content-container-legacy__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 23px;
  column-gap: 43px;
  width: 100%;
  margin-top: 23px;
}

.content-container-legacy__input {
  display: block;
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  font-size: 14px;
  padding: 6px;
  padding-left: 20px;
  height: 40px;
  width: 289px;
  margin-top: 5px;
}

.content-container-legacy__payment-button {
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  height: 110px;
  width: 289px;
  margin-top: 5px;
  cursor: pointer;
}
.content-container-legacy__payment-button:hover {
  background-color: #5FECC8;
  color: #5E62D1;
}

input[type=number]:focus,
input[type=text]:focus {
  color: #5E62D1;
  border: 1px solid #5E62D1;
  background-color: #5FECC8;
  outline: none;
}

.label-input--center {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .content-container-legacy__payment-button {
    height: 55px;
    margin-bottom: -75px;
  }
}
.content-container-legacy--border-left-right {
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
}

.content-container-legacy__filters {
  height: 62.5px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.content-container-legacy__filter {
  width: 33.3333333333%;
  color: #5E62D1;
  background-color: #F1F3FF;
  border: 1px solid #5E62D1;
  border-top: 0px;
  border-right: 0px;
  cursor: pointer;
}
.content-container-legacy__filter p {
  font-family: "Inter";
  font-size: 16px;
  color: #5E62D1;
}
.content-container-legacy__filter:hover {
  background-color: #5FECC8;
}

.content-container-legacy__filter--no-border-left {
  border-left: 0px;
}

.content-container-legacy__filter--selected {
  background-color: #5FECC8;
}

.content-container-legacy__filter--no-border-right {
  border-right: 0px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: -1px;
  margin-left: -1px;
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
}

.grid-element {
  padding: 20px;
  outline: 1px solid #5E62D1;
  padding-left: 35px;
  padding-right: 35px;
  height: 560px;
  margin-top: 1px;
  margin-left: 1px;
  cursor: pointer;
  display: none;
}
.grid-element h5 {
  margin-top: 0px;
  margin-bottom: -10px;
}
.grid-element p {
  font-size: 14px;
  margin-top: -10px;
}
.grid-element:hover {
  filter: blur(2px);
}

.show-container {
  display: block;
}

.img-container {
  height: 400px;
  width: 100%;
  position: relative;
}
.img-container img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.content-container-legacy__filters--hidden {
  display: none;
}

@media screen and (max-width: 1819px) and (min-width: 1759px) {
  .grid-element h5 {
    margin-bottom: 10px;
  }
  .grid-element p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1519px) and (min-width: 1411px) {
  .grid-element h5 {
    margin-bottom: 10px;
  }
  .grid-element p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .grid-element h5 {
    margin-bottom: 20px;
  }
  .grid-element p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1063px) {
  .grid-element h5 {
    margin-bottom: 0px;
  }
  .grid-element p {
    margin-top: 0px;
  }
}
@media screen and (max-width: 919px) {
  .grid-element h5 {
    margin-bottom: 20px;
  }
  .grid-element p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 715px) {
  .grid-element h5 {
    margin-bottom: 0px;
  }
  .grid-element p {
    margin-top: 0px;
  }
}
@media screen and (max-width: 619px) {
  .content-container-legacy__filters {
    display: none;
  }
  .content-container-legacy__filters--hidden {
    z-index: 1;
    display: grid;
  }
  .content-container-legacy__filter {
    width: 100%;
    height: 62.5px;
    color: #5E62D1;
    background-color: #F1F3FF;
    border: 1px solid #5E62D1;
    border-top: 0px;
    border-right: 0px;
    cursor: pointer;
    text-align: left;
    padding-left: 35px;
    order: 2;
  }
  .content-container-legacy__filter--selected {
    background-color: #5FECC8;
    background-image: url(/assets/img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 25px;
    background-position: 91%;
    order: 1;
    display: block;
  }
  .content-container-legacy__filter--hidden {
    display: none;
  }
  .grid-element h5 {
    margin-bottom: 20px;
  }
  .grid-element p {
    margin-top: 20px;
  }
  .grid-element1 h5 {
    margin-bottom: -10px;
  }
  .grid-element1 p {
    margin-top: 0px;
  }
}
.content-container-legacy__titles {
  width: 100%;
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  padding-bottom: 35px;
}
.content-container-legacy__titles h1 {
  padding-left: 35px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.content-container-legacy__titles h5 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 35px;
}

.content-container-legacy__photo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
}

.photo-names {
  width: 25.3vh;
  text-align: center;
}

.photo {
  width: 25vh;
  height: 25vh;
  border: 1px solid #5E62D1;
}
.photo img {
  width: 100%;
  height: 100%;
}

.col-xs-10 a {
  text-decoration: none;
  color: #5E62D1;
}
.col-xs-10 a:visited {
  color: #5E62D1;
}

.content-container-legacy__long-button--all-borders {
  border: 1px solid #5E62D1;
}

.content-container-legacy__titles--no-margin {
  margin-left: -20px;
  margin-right: -20px;
  width: 100vw;
  border: 0px;
}

@media screen and (max-width: 1039px) {
  .content-container-legacy__long-button--all-borders {
    margin-left: 0px;
    margin-right: 0px;
  }
  .content-container-legacy__long-button--all-borders a {
    padding: 1.5vh;
  }
  .content-container-legacy__long-button--all-borders img {
    height: 40px;
    width: 40px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 427px) {
  .content-container-legacy__long-button--fix-text a {
    padding-top: 0.9vh;
  }
  .content-container-legacy__long-button--fix-text img {
    margin-top: 2px;
  }
}
.content-container-legacy__image {
  margin-top: 25px;
  margin-bottom: 17px;
}
.content-container-legacy__image img {
  width: 100%;
  max-height: 100%;
}

.content-container-legacy__image--smaller {
  margin-top: 17.5px;
  margin-bottom: 17px;
}
.content-container-legacy__image--smaller img {
  width: 100%;
  max-height: 100%;
}

.content-container-legacy__video {
  width: 100%;
  max-height: 100%;
  margin-top: 27.5px;
  margin-bottom: 7px;
}

.content-container-legacy__video--margin-top {
  width: 100%;
  max-height: 100%;
  margin-top: 171px;
}

.col-xs-10--no-margin-text p {
  margin-top: 10px;
}

.col-xs-10--no-visited-text a {
  text-decoration: none;
}
.col-xs-10--no-visited-text a:visited {
  color: #5E62D1;
}

@media screen and (max-width: 1039px) {
  .content-container-legacy__image--smaller {
    margin-top: 15px;
  }
  .content-container-legacy__video {
    margin-top: 25px;
  }
  .content-container-legacy__video--margin-top {
    margin-top: 15px;
  }
}
.content-container-legacy__photo-wrapper a {
  width: 25vh;
  height: 25vh;
}
.content-container-legacy__photo-wrapper a img {
  height: 100%;
  width: 100%;
}
.content-container-legacy__photo-wrapper a:hover {
  filter: blur(2px);
}

.content-container {
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
}

.col-xs-10 h4 {
  margin-bottom: 20px;
  margin-top: 23px;
}

.col-xs-10 p {
  margin-bottom: -20px;
}

.content-container-legacy--wrapper {
  width: 100%;
}

.content-container-legacy__text-block--bigger-height {
  position: fixed;
  float: left;
  width: 39.95%;
  min-height: calc(100vh - 125px - 120px);
  border-left: 1px solid #5E62D1;
  border-right: none;
  border-bottom: none;
}

.content-container-legacy__scroll-block {
  float: right;
  width: 60.05%;
  border-left: 1px solid #5E62D1;
  border-right: 1px solid #5E62D1;
}
.content-container-legacy__scroll-block h4 {
  margin-top: 39px;
  color: #5E62D1;
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 30px;
}

.content-container-legacy__info-row {
  height: 100px;
  width: 100%;
  border-top: 1px solid #5E62D1;
  border-bottom: 1px solid #5E62D1;
  padding-left: 35px;
  padding-right: 35px;
  margin-top: -6px;
}

.content-container-legacy__info-row--no-border {
  border-top: 0px;
  border-bottom: 0px;
}

.content-container-legacy__info-row:last-child {
  border-bottom: none;
}

.content-container-legacy__title {
  color: #5E62D1;
  float: left;
  padding-top: 20px;
}

.content-container-legacy__text {
  float: right;
  direction: rtl;
  font-size: 14px;
  color: #373533;
  padding-top: 24px;
}

@media screen and (max-width: 1039px) {
  .content-container-legacy__text-block--bigger-height {
    position: static;
    min-height: 20vh;
    order: 1;
    border-right: 1px solid #5E62D1;
  }
  .content-container-legacy__text-block--bigger-height .content-container-legacy__long-button--diff-margins-border-top {
    margin-left: 0px;
    margin-right: 0px;
  }
  .content-container-legacy__scroll-block {
    order: 2;
    width: 100%;
    border-left: 1px solid #5E62D1;
  }
}
@media screen and (max-width: 643px) {
  .content-container-legacy__title {
    font-size: 14px;
    padding-top: 13px;
    width: 125px;
  }
  .content-container-legacy__text {
    padding-top: 13px;
    width: 185px;
  }
  .content-container-legacy__text--wrap {
    padding-top: 13px;
    width: 135px;
  }
}
@media screen and (max-width: 399px) {
  .content-container-legacy__title {
    padding-top: 13px;
    width: 105px;
  }
  .content-container-legacy__title--wrap {
    padding-top: 13px;
    width: 125px;
  }
  .content-container-legacy__text {
    padding-top: 13px;
    width: 165px;
  }
  .content-container-legacy__text--wrapper {
    padding-top: 4px;
    width: 155px;
  }
  .content-container-legacy__text--wrap {
    padding-top: 13px;
    width: 135px;
  }
}
.body-guia {
  background-color: #BDDFBC;
  display: flex;
}

.menu-guia {
  background-color: #FFF5D0;
  margin-left: 200px;
  padding-right: 35px;
  min-height: 100vh;
  width: 250px;
}
.menu-guia h1 {
  width: 220px;
  padding-left: 35px;
  margin-top: 0px;
}
.menu-guia h1 a {
  font-family: "Mali";
  font-size: 24px;
  color: black;
}
.menu-guia h1 :hover {
  color: #3BA581;
}
.menu-guia li {
  margin-top: 25px;
  list-style-type: none;
}
.menu-guia li :hover {
  color: #3BA581;
}
.menu-guia .first-child {
  margin-top: 50px;
}
.menu-guia a {
  font-family: "Mali";
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.menu-guia .sidebarActive {
  color: #3BA581;
}
.menu-guia .submenu {
  font-family: "Mali";
  font-size: 16px;
  color: black;
  text-decoration: none;
  margin-top: 20px;
}
.menu-guia .submenu-dropdown-hidden {
  display: none;
}

.content-guia {
  background-color: #FFFCF5;
  margin-right: 200px;
  padding-left: 35px;
  padding-right: 35px;
  min-height: 100vh;
  width: 700px;
}
.content-guia h1 {
  font-family: "Mali";
  font-size: 24px;
  margin-top: 29px;
  color: black;
}
.content-guia p {
  font-family: "Mali";
  font-size: 16px;
  margin-top: 50px;
  color: black;
}
.content-guia .img {
  width: 250px;
  height: 100px;
  margin-top: 20px;
  margin-bottom: -20px;
}
.content-guia .color-text {
  color: #FBC84F;
  font-weight: bold;
}
.content-guia .img1 {
  width: 450px;
  height: 650px;
  margin-top: 10px;
  margin-bottom: 35px;
  margin-left: 95px;
}
.content-guia .citacao {
  font-family: "Mali";
  font-size: 24px;
  margin-bottom: 35px;
  color: black;
  text-align: center;
}
.content-guia .nome-citacao {
  font-family: "Mali";
  font-size: 24px;
  text-decoration: none;
  color: #3BA581;
}
.content-guia .nome-citacao:hover {
  font-style: italic;
}
.content-guia .titulo {
  margin-bottom: -11px;
}
.content-guia .img2 {
  width: 350px;
  height: 450px;
  margin-top: 10px;
  margin-bottom: -20px;
  margin-left: 145px;
}
.content-guia .link {
  font-family: "Mali";
  font-size: 16px;
  color: #3BA581;
}
.content-guia .link:hover {
  font-style: italic;
}
.content-guia .img3 {
  margin-top: 10px;
  margin-bottom: -20px;
  margin-left: 145px;
}
.content-guia .img4 {
  width: 630px;
  height: 380px;
  margin-bottom: -20px;
  margin-left: 5px;
  margin-top: 35px;
}
.content-guia .img5 {
  width: 500px;
  height: 500px;
  margin-bottom: -20px;
  margin-left: 85px;
  margin-top: 15px;
}
.content-guia .img6 {
  width: 500px;
  height: 500px;
  margin-bottom: -20px;
  margin-left: 65px;
  margin-top: 15px;
}
.content-guia .img7 {
  width: 450px;
  height: 500px;
  margin-top: 10px;
  margin-bottom: -20px;
  margin-left: 95px;
}
.content-guia .img8 {
  width: 300px;
  height: 400px;
  margin-top: 10px;
  margin-bottom: -130px;
  margin-left: 315px;
}
.content-guia .text {
  text-align: center;
}
.content-guia .section {
  background-color: #3BA581;
  padding-left: 35px;
  padding-right: 35px;
  margin-left: -35px;
  margin-right: -35px;
  padding-bottom: 2px;
}
.content-guia .section h1 {
  font-family: "Mali";
  font-size: 24px;
  margin-top: 29px;
  color: white;
  padding-top: 25px;
}
.content-guia .section p {
  font-family: "Mali";
  font-size: 16px;
  margin-top: 30px;
  color: black;
}
.content-guia .section .link {
  font-family: "Mali";
  font-size: 16px;
  color: white;
}
.content-guia .section .link:hover {
  font-style: italic;
}
.content-guia .section .destaques {
  background-color: white;
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 35px;
}
.content-guia .section .destaques h1 {
  font-family: "Mali";
  font-size: 24px;
  margin-top: 29px;
  color: #3BA581;
  padding-top: 25px;
}
.content-guia .section .destaques p {
  font-family: "Mali";
  font-size: 16px;
  margin-top: 30px;
  color: black;
  padding-bottom: 20px;
}
.content-guia .section .destaques .titulo {
  margin-bottom: -11px;
  margin-top: -5px;
}
.content-guia .section .destaques .link {
  font-family: "Mali";
  font-size: 16px;
  color: #3BA581;
}
.content-guia .section .destaques .link:hover {
  font-style: italic;
}
.content-guia .section .less-margin {
  margin-top: -35px;
}
.content-guia .border {
  font-family: "Mali";
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  margin-top: 35px;
  margin-bottom: -15px;
  color: black;
  border: 1px solid #3BA581;
}
.content-guia .conteudo {
  display: flex;
  width: 641px;
  margin-bottom: -45px;
}
.content-guia .colunas {
  width: 350px;
}
.content-guia .less-margin {
  margin-top: 25px;
}
.content-guia .less-top-margin {
  margin-top: -25px;
}
.content-guia .left {
  margin-left: 65px;
}
.content-guia .carousel {
  border: 1px solid #3BA581;
  height: 390px;
  text-align: center;
  margin-top: 35px;
}
.content-guia .carousel-controls {
  text-align: center;
  margin-top: -58px;
}
.content-guia .slide-badge {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  margin-left: 5px;
  display: inline-block;
  cursor: pointer;
}
.content-guia .slide-badge-sel {
  background-color: black;
  height: 12px;
  width: 12px;
  vertical-align: middle;
}
/*# sourceMappingURL=main.css.map */
