@import url("https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Nunito+Sans:ital,opsz,wdth,wght,YTLC@0,6..12,75..125,200..1000,440..540;1,6..12,75..125,200..1000,440..540&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden !important; */
  overflow-x: clip;
}

body {
  /* overflow-x: hidden !important; */
  overflow-x: clip;
  font-family: "Nunito Sans", sans-serif;
  color: #63666A;
}

ul {
  list-style: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  outline: none !important;
}

main {
  overflow-x: hidden !important;
}

header {
  background: #E9511D;
  width: 100%;
  height: 88px;
}
@media (max-width: 768px) {
  header {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 600px) {
  header {
    height: 50px;
  }
}
header .wrapper {
  width: calc(100% - 60px);
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper .logo a {
  display: block;
  width: 246px;
  height: 56px;
}
@media (max-width: 600px) {
  header .wrapper .logo a {
    width: 145px;
    height: 33px;
  }
}
header .wrapper .logo a img {
  width: 100%;
}
@media (max-width: 768px) {
  header .wrapper .navigation {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background: #E9511D;
    top: 88px;
    left: 0;
    width: 100%;
    transition: max-height 0.5s;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  header .wrapper .navigation {
    top: 50px;
  }
}
@media (max-width: 768px) {
  header .wrapper .navigation.active {
    max-height: 1000px;
  }
}
header .wrapper .navigation ul {
  display: flex;
}
@media (max-width: 768px) {
  header .wrapper .navigation ul {
    flex-direction: column;
    padding: 10px 30px 30px;
  }
}
header .wrapper .navigation ul li {
  margin-right: 70px;
}
@media (max-width: 768px) {
  header .wrapper .navigation ul li {
    margin: 10px 0;
  }
}
header .wrapper .navigation ul li:last-child {
  margin-right: 0;
}
header .wrapper .navigation ul li a {
  display: block;
  font: 20px "Changa One", sans-serif;
  color: white;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  header .wrapper .navigation ul li a {
    width: -moz-fit-content;
    width: fit-content;
  }
}
header .wrapper .navigation ul li:hover a {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  header .wrapper .navigation ul li:hover a {
    transform: none;
  }
}
header .wrapper .hamburger {
  display: none;
  padding: 0;
  height: 24px;
}
@media (max-width: 768px) {
  header .wrapper .hamburger {
    height: 22px;
    display: block;
  }
}
header .wrapper .hamburger:hover, header .wrapper .hamburger.is-active:hover {
  opacity: 1;
}
header .wrapper .hamburger.is-active .hamburger-inner,
header .wrapper .hamburger.is-active .hamburger-inner::before,
header .wrapper .hamburger.is-active .hamburger-inner::after {
  background: white;
}
header .wrapper .hamburger-box {
  width: 35px;
}
header .wrapper .hamburger-inner {
  background: white;
  height: 4px;
  width: 35px;
}
@media (max-width: 600px) {
  header .wrapper .hamburger-inner {
    height: 3px;
  }
}
header .wrapper .hamburger-inner::before, header .wrapper .hamburger-inner::after {
  background: white;
  height: 4px;
  width: 35px;
}
@media (max-width: 600px) {
  header .wrapper .hamburger-inner::before, header .wrapper .hamburger-inner::after {
    height: 3px;
  }
}

footer {
  width: 100%;
  background: #63666A;
}
footer .wrapper {
  width: calc(100% - 60px);
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 768px) {
  footer .wrapper {
    flex-direction: column;
  }
}
footer .wrapper .logo-footer {
  display: block;
  width: 161px;
  margin-right: 50px;
}
@media (max-width: 768px) {
  footer .wrapper .logo-footer {
    margin: 0 auto 20px;
    width: 145px;
    height: 33px;
  }
}
footer .wrapper .logo-footer img {
  width: 100%;
}
footer .wrapper .mini-nav {
  align-self: flex-start;
  margin-right: 30px;
}
@media (max-width: 768px) {
  footer .wrapper .mini-nav {
    margin: 0 auto 20px;
  }
}
footer .wrapper .mini-nav:nth-child(4) {
  flex: 1;
}
footer .wrapper .mini-nav h3 {
  color: white;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  footer .wrapper .mini-nav h3 {
    text-align: center;
  }
}
footer .wrapper .mini-nav ul li {
  margin-bottom: 8px;
}
footer .wrapper .mini-nav ul li:last-child {
  margin-bottom: 0;
}
footer .wrapper .mini-nav ul li a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: white;
  font-size: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  footer .wrapper .mini-nav ul li a {
    margin: auto;
  }
}
footer .wrapper .mini-nav ul li a:hover {
  text-decoration: underline;
}
footer .wrapper .social {
  display: flex;
  justify-self: flex-end;
}
footer .wrapper .social a {
  display: block;
  height: 24px;
  margin-right: 16px;
}
footer .wrapper .social a:last-child {
  margin-right: 0;
}

.hero-home {
  position: relative;
  height: clamp(300px, 80vw, 100vh - 88px);
  overflow: hidden;
}
.hero-home img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}
.hero-home h2 {
  font: clamp(37px, 9.87vw, 100px) "Changa One", sans-serif;
  color: #E9511D;
  position: absolute;
  top: 0;
  left: 51%;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.intro-home {
  background: linear-gradient(to bottom, #E9511D 0%, #E9511D 41%, transparent 41%, transparent 100%);
  padding: 55px 0;
}
.intro-home .wrapper {
  max-width: 1220px;
  width: calc(100% - 60px);
  margin: auto;
}
.intro-home .wrapper p {
  font-size: 20px;
  color: white;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .intro-home .wrapper p {
    font-size: 16px;
  }
}
.intro-home .wrapper h2 {
  font: 50px "Changa One", sans-serif;
  color: white;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 600px) {
  .intro-home .wrapper h2 {
    font-size: 30px;
  }
}
.intro-home .wrapper .cards-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}
.intro-home .wrapper .cards-home .card {
  position: relative;
  border-radius: 10px;
  width: 290px;
  height: 389px;
  overflow: hidden;
}
.intro-home .wrapper .cards-home .card .image {
  width: 100%;
  height: 100%;
}
.intro-home .wrapper .cards-home .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-home .wrapper .cards-home .card:hover .overlay {
  max-height: 1000px;
  opacity: 1;
}
.intro-home .wrapper .cards-home .card:hover .info {
  max-height: 1000px;
  overflow: unset;
  opacity: 1;
}
.intro-home .wrapper .cards-home .card .overlay {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  background: linear-gradient(0deg, rgba(99, 102, 106, 0.63) 0%, rgba(99, 102, 106, 0.63) 100%), linear-gradient(0deg, #63666A 0%, #63666A 100%);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  transition: opacity 0.5s;
}
.intro-home .wrapper .cards-home .card .info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  padding: 0;
  margin-top: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.7s;
  transition-delay: 0.2s;
}
.intro-home .wrapper .cards-home .card .info .logo {
  width: 100%;
  height: 85px;
  text-align: center;
  margin-bottom: 20px;
}
.intro-home .wrapper .cards-home .card .info .logo img {
  height: 85px;
}
.intro-home .wrapper .cards-home .card .info p {
  font-size: 15px;
  color: white;
  max-width: 229px;
  margin: 0 auto 20px;
}
.intro-home .wrapper .cards-home .card .info a {
  font-size: 15px;
  color: white;
  font-style: italic;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.intro-home .wrapper .cards-home .card .info a:hover {
  text-decoration: underline;
}
.intro-home .wrapper .cards-home .card .info .social {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.intro-home .wrapper .cards-home .card .info .social a {
  width: 21px;
  height: 21px;
  margin-right: 14px;
}
.intro-home .wrapper .cards-home .card .info .social a:last-child {
  margin-right: 0;
}
.intro-home .wrapper .cards-home .card .info .social a img {
  width: 100%;
}

.contact-home {
  overflow-x: hidden;
  padding: 119px 0 72px;
  background: url(../img/contact-bg.png) no-repeat left top/cover;
}
.contact-home .wrapper {
  max-width: 1060px;
  width: calc(100% - 60px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-home .wrapper {
    flex-direction: column;
  }
}
.contact-home .wrapper h2 {
  max-width: 345px;
  font: 60px "Changa One", sans-serif;
  color: white;
  line-height: 0.93;
}
@media (max-width: 768px) {
  .contact-home .wrapper h2 {
    max-width: unset;
    text-align: center;
    margin-bottom: 55px;
  }
}
@media (max-width: 600px) {
  .contact-home .wrapper h2 {
    font-size: 30px;
  }
}
.contact-home .wrapper .form {
  max-width: 520px;
  width: 100%;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .contact-home .wrapper .form {
    margin: auto;
  }
}
.contact-home .wrapper .form [type=text],
.contact-home .wrapper .form [type=email] {
  font: 500 15px "Nunito Sans", sans-serif;
  width: 100%;
  color: #63666A;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 100px;
  background: white;
}
.contact-home .wrapper .form [type=text]::-moz-placeholder, .contact-home .wrapper .form [type=email]::-moz-placeholder {
  color: #E9511D;
  font-style: italic;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-home .wrapper .form [type=text]::placeholder,
.contact-home .wrapper .form [type=email]::placeholder {
  color: #E9511D;
  font-style: italic;
  transition: all 0.3s;
}
.contact-home .wrapper .form [type=text]:focus::-moz-placeholder, .contact-home .wrapper .form [type=email]:focus::-moz-placeholder {
  opacity: 0;
}
.contact-home .wrapper .form [type=text]:focus::placeholder,
.contact-home .wrapper .form [type=email]:focus::placeholder {
  opacity: 0;
}
.contact-home .wrapper .form select {
  font: 500 15px "Nunito Sans", sans-serif;
  font-style: italic;
  width: 100%;
  color: #E9511D;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 100px;
  background: url(../img/select-arrow.svg) no-repeat 96% center white;
  cursor: pointer;
}
.contact-home .wrapper .form textarea {
  font: 500 15px "Nunito Sans", sans-serif;
  color: #63666A;
  width: 100%;
  display: block;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 20px;
  margin-bottom: 18px;
  height: 184px;
  border: none;
  border-radius: 20px;
}
.contact-home .wrapper .form textarea::-moz-placeholder {
  font: 500 15px "Nunito Sans", sans-serif;
  color: #E9511D;
  font-style: italic;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-home .wrapper .form textarea::placeholder {
  font: 500 15px "Nunito Sans", sans-serif;
  color: #E9511D;
  font-style: italic;
  transition: all 0.3s;
}
.contact-home .wrapper .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.contact-home .wrapper .form textarea:focus::placeholder {
  opacity: 0;
}
.contact-home .wrapper .form .terms input {
  position: absolute;
  opacity: 0;
}
.contact-home .wrapper .form .terms input:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-home .wrapper .form .terms label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.contact-home .wrapper .form .terms label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-radius: 50%;
}
.contact-home .wrapper .form .terms label a {
  font-weight: 500;
  font-size: 15px;
  color: white;
  font-style: italic;
  text-decoration: underline;
}
.contact-home .wrapper .form .terms label a:hover {
  text-decoration: none;
}
.contact-home .wrapper .form .btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}
.contact-home .wrapper .form .btn button {
  font: 20px "Changa One", sans-serif;
  color: white;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 145px;
  height: 40px;
  border: 1px solid white;
  border-radius: 100px;
  background: #E9511D;
  transition: all 0.2s;
}
.contact-home .wrapper .form .btn button:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .contact-home .wrapper .form .btn button:hover {
    transform: none;
  }
}
.contact-home .wrapper .form .form-error {
  color: white;
}
.contact-home .wrapper .success {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 25px;
  color: white;
  justify-content: center;
}
@media (max-width: 600px) {
  .contact-home .wrapper .success {
    font-size: 18px;
  }
}

.hero-nosotros {
  position: relative;
  height: clamp(300px, 80vw, 100vh - 88px);
  margin-bottom: 41px;
}
.hero-nosotros video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-nosotros .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 75.48%);
}
.hero-nosotros .intro {
  max-width: 515px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 30px;
  box-sizing: content-box;
}
@media (max-width: 600px) {
  .hero-nosotros .intro {
    left: 30px;
  }
}
.hero-nosotros .intro h2 {
  font: clamp(37px, 9.87vw, 70px) "Changa One", sans-serif;
  color: #E9511D;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-nosotros .intro p {
  font: clamp(16px, 2.7vw, 25px) "Nunito Sans", sans-serif;
  font-weight: 500;
  color: white;
}

.timeline {
  margin-bottom: 78px;
  scroll-margin-top: 141px;
}
.timeline h2 {
  font: 50px "Changa One", sans-serif;
  color: #E9511D;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 600px) {
  .timeline h2 {
    font-size: 30px;
  }
}
.timeline .timeline-slider {
  margin-bottom: 41px;
}
.timeline .timeline-slider::before {
  content: "";
  position: absolute;
  top: 8.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #63666A;
}
.timeline .timeline-slider .slick-list {
  padding-top: 10px;
}
.timeline .timeline-slider .timeline-item {
  position: relative;
  padding-top: 28px;
  margin: 0 36px;
}
@media (max-width: 600px) {
  .timeline .timeline-slider .timeline-item {
    font-size: 20px;
  }
}
.timeline .timeline-slider .timeline-item::before {
  content: "";
  background: #63666A;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 40px;
  top: -8.5px;
}
.timeline .timeline-slider .timeline-item h3 {
  font: 40px "Changa One", sans-serif;
  margin-bottom: 13px;
}
@media (max-width: 600px) {
  .timeline .timeline-slider .timeline-item h3 {
    font-size: 30px;
  }
}
.timeline .timeline-slider .timeline-item h3 span {
  font-size: 30px;
  display: block;
}
@media (max-width: 600px) {
  .timeline .timeline-slider .timeline-item h3 span {
    font-size: 20px;
  }
}
.timeline .timeline-slider .timeline-item h3.bonafide {
  color: #C31C12;
}
.timeline .timeline-slider .timeline-item h3.emporio {
  color: #E54582;
}
.timeline .timeline-slider .timeline-item h3.palettas {
  color: black;
}
.timeline .timeline-slider .timeline-item h3.cory {
  color: #a65c96;
}
.timeline .timeline-slider .timeline-item h3.lefournil {
  color: #3D695C;
}
.timeline .timeline-slider .timeline-item h3.bresler {
  color: #E41B12;
}
.timeline .timeline-slider .timeline-item h3.langolo {
  color: #CB1930;
}
.timeline .timeline-slider .timeline-item p {
  font-size: 20px;
  font-weight: 300;
  color: #63666A;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .timeline .timeline-slider .timeline-item p {
    font-size: 16px;
  }
}
.timeline .timeline-slider .timeline-item .image {
  max-width: 200px;
  width: 100%;
}
.timeline .timeline-slider .timeline-item .image img {
  width: 100%;
  height: 100%;
  display: block;
}

.values {
  margin-bottom: 114px;
}
@media (max-width: 600px) {
  .values {
    margin-bottom: 50px;
  }
}
.values .wrapper {
  display: flex;
  justify-content: center;
  padding: 0 30px;
  gap: 63px;
}
@media (max-width: 990px) {
  .values .wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .values .wrapper {
    gap: 40px;
  }
}
.values .wrapper .value {
  max-width: 185px;
}
.values .wrapper .value .icon {
  width: 114px;
  height: 134px;
  display: flex;
  align-items: center;
  margin: 0 auto 15px;
}
@media (max-width: 600px) {
  .values .wrapper .value .icon {
    width: 80px;
    height: auto;
  }
}
.values .wrapper .value .icon img {
  display: block;
  width: 100%;
}
.values .wrapper .value h3 {
  font: 30px "Changa One", sans-serif;
  color: #E9511D;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 600px) {
  .values .wrapper .value h3 {
    font-size: 25px;
  }
}
.values .wrapper .value p {
  font-size: 14px;
  text-align: center;
  line-height: 1;
}

.experience {
  position: relative;
  width: 100%;
  padding: 93px 60px;
}
@media (max-width: 600px) {
  .experience {
    padding: 50px 30px;
  }
}
.experience::before {
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 43.04%, #383838 60.1%), url(../img/experience-bg.png) lightgray 50%/cover no-repeat;
  background-blend-mode: multiply, normal;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 990px) {
  .experience::before {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 10%, #383838 60.1%), url(../img/experience-bg.png) lightgray 50%/cover no-repeat;
  }
}
.experience .wrapper {
  position: relative;
  max-width: 657px;
}
.experience .wrapper h2 {
  font: 70px "Changa One", sans-serif;
  color: #E9511D;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .experience .wrapper h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.experience .wrapper ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
@media (max-width: 600px) {
  .experience .wrapper ul {
    row-gap: 18px;
  }
}
.experience .wrapper ul li {
  max-width: 294px;
}
.experience .wrapper ul li span {
  font: 40px "Changa One", sans-serif;
  color: white;
  display: block;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  line-height: 0.8;
}
@media (max-width: 600px) {
  .experience .wrapper ul li span {
    font-size: 25px;
    margin-bottom: unset;
  }
}
.experience .wrapper ul li span::before {
  content: "";
  background: url(../img/icon-spoon.svg) no-repeat;
  width: 12px;
  height: 37px;
  margin-right: 8px;
  flex-shrink: 0;
}
.experience .wrapper ul li p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-left: 20px;
  line-height: 1;
}
@media (max-width: 600px) {
  .experience .wrapper ul li p {
    font-size: 16px;
  }
}

.where {
  padding: 50px 0;
}
@media (max-width: 600px) {
  .where {
    padding: 30px 0;
  }
}
.where .wrapper {
  width: calc(100% - 60px);
  margin: auto;
}
.where .wrapper .map {
  width: 45%;
  max-width: 530px;
}
@media (max-width: 768px) {
  .where .wrapper .map {
    width: 100%;
  }
}
.where .wrapper .map .image {
  position: relative;
}
.where .wrapper .map .image img {
  width: 100%;
  height: 100%;
}
.where .wrapper .map .image #countrySection .js-country {
  border: none;
  position: absolute;
  font-size: 0;
  background: none;
}
.where .wrapper .map .image #countrySection .js-country[data-country=CL] {
  width: 16%;
  height: 53.5%;
  top: 45.5%;
  left: 32%;
}
.where .wrapper .map .image #countrySection .js-country[data-country=CL].active {
  background: url(../img/cl.svg) no-repeat center center/contain;
}
.where .wrapper .map .image #countrySection .js-country[data-country=AR] {
  width: 31%;
  height: 47.5%;
  top: 49.3%;
  left: 37.9%;
}
.where .wrapper .map .image #countrySection .js-country[data-country=AR].active {
  background: url(../img/ar.svg) no-repeat center center/contain;
}
.where .wrapper .map .image #countrySection .js-country[data-country=UY] {
  width: 10.8%;
  height: 7%;
  top: 59.3%;
  left: 61%;
}
.where .wrapper .map .image #countrySection .js-country[data-country=UY].active {
  background: url(../img/ur.svg) no-repeat center center/contain;
}
.where .wrapper .info h2 {
  font: 70px "Changa One", sans-serif;
  color: #E9511D;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .where .wrapper .info h2 {
    font-size: 30px;
  }
}
.where .wrapper .info p {
  max-width: 1123px;
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .where .wrapper .info p {
    font-size: 16px;
  }
}
.where .wrapper .info h3 {
  font-size: 30px;
  font-weight: 900;
  color: #E9511D;
  margin-bottom: 15px;
}
.where .wrapper .info #brandSection {
  margin-bottom: 40px;
}
.where .wrapper .info #brandSection #brandButtons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.where .wrapper .info #brandSection #brandButtons .js-brand {
  background: transparent;
  border: none;
  width: 83px;
  height: 83px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.where .wrapper .info #brandSection #brandButtons .js-brand:hover {
  opacity: 1;
}
.where .wrapper .info #brandSection #brandButtons .js-brand.active {
  opacity: 1;
}
.where .wrapper .info #brandSection #brandButtons .js-brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.where .wrapper .info #filtersSection {
  margin-bottom: 40px;
  max-width: 638px;
}
.where .wrapper .info #filtersSection #regionSelect {
  font: 500 20px "Nunito Sans", sans-serif;
  font-style: italic;
  color: white;
  padding: 0 20px;
  height: 41px;
  border-radius: 100px;
  border: none;
  width: 100%;
  background: url(../img/select-arrow-white.svg) no-repeat 95% center #E9511D;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.where .wrapper .info #resultsSection .stores-slider {
  padding: 0 60px;
}
.where .wrapper .info #resultsSection .slick-slide {
  margin: 0 85px 0 0;
}
@media (max-width: 600px) {
  .where .wrapper .info #resultsSection .slick-slide {
    margin: 0 50px;
  }
}
.where .wrapper .info #resultsSection .store-card h4 {
  font-size: 30px;
  font-weight: 900;
  color: #E9511D;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 600px) {
  .where .wrapper .info #resultsSection .store-card h4 {
    font-size: 24px;
  }
}
.where .wrapper .info #resultsSection .store-card span {
  font-size: 20px;
  font-weight: 300;
  display: block;
}
@media (max-width: 600px) {
  .where .wrapper .info #resultsSection .store-card span {
    font-size: 16px;
  }
}
.where .wrapper .info #resultsSection .store-card span:nth-of-type(3) {
  display: none;
}
.where .wrapper .info #resultsSection .store-card span a {
  color: #63666A;
}
.where .wrapper .info #resultsSection .store-card span a:hover {
  text-decoration: underline;
}
.where .wrapper .info #resultsSection .slick-next {
  background: url(../img/slick-next-orange.svg) no-repeat;
  width: 38px;
  height: 38px;
  border: none;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 40%;
}
.where .wrapper .info #resultsSection .slick-prev {
  background: url(../img/slick-next-orange.svg) no-repeat;
  width: 38px;
  height: 38px;
  border: none;
  font-size: 0;
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  top: 40%;
}

.hero-marcas {
  position: relative;
  height: 565px;
}
@media (max-width: 768px) {
  .hero-marcas {
    height: 895px;
  }
}
@media (max-width: 600px) {
  .hero-marcas {
    height: 650px;
  }
}
.hero-marcas video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-marcas .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.hero-marcas .intro {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  height: 100%;
  padding-right: 30px;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-marcas .intro h2 {
  font: clamp(37px, 9.87vw, 70px) "Changa One", sans-serif;
  color: #E9511D;
  line-height: 1;
  margin-bottom: 30px;
}
.hero-marcas .intro .tabs-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 768px) {
  .hero-marcas .intro .tabs-nav {
    -moz-column-gap: unset;
         column-gap: unset;
  }
}
.hero-marcas .intro .tabs-nav li {
  transition: all 0.2s;
  opacity: 0.9;
}
.hero-marcas .intro .tabs-nav li:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero-marcas .intro .tabs-nav li {
    width: 50%;
  }
}
.hero-marcas .intro .tabs-nav li .tab-link {
  display: block;
  width: 100%;
  max-width: 130px;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .hero-marcas .intro .tabs-nav li .tab-link {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .hero-marcas .intro .tabs-nav li .tab-link {
    max-width: 90px;
  }
}
.hero-marcas .intro .tabs-nav li .tab-link.active {
  color: #fff;
}
.hero-marcas .intro .tabs-nav li .tab-link:hover {
  transform: scale(1.1);
}
.hero-marcas .intro .tabs-nav li .tab-link img {
  width: 100%;
}

.marcas-content {
  margin-bottom: 25px;
}
.marcas-content .tabs-content .tab-panel {
  padding-top: 25px;
  display: none;
}
.marcas-content .tabs-content .tab-panel .wrapper {
  display: flex;
  align-items: center;
  max-width: 1220px;
  width: calc(100% - 60px);
  margin: auto;
  gap: 81px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .marcas-content .tabs-content .tab-panel .wrapper {
    flex-direction: column;
    gap: 25px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .image {
  width: 38%;
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .image {
    width: 200px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .image img {
  width: 100%;
}
.marcas-content .tabs-content .tab-panel .wrapper .info {
  width: 50%;
}
@media (max-width: 768px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info {
    width: 100%;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info h3 {
  font: 30px "Changa One", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info h3 {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info h3 {
    font-size: 26px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info p {
  font-size: 20px;
  color: #63666A;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info p {
    font-size: 16px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info h4 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info h4 {
    font-size: 20px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info .store {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info .store {
    font-size: 18px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info a {
  font-size: 20px;
  font-style: italic;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .marcas-content .tabs-content .tab-panel .wrapper .info a {
    font-size: 16px;
  }
}
.marcas-content .tabs-content .tab-panel .wrapper .info a:hover {
  text-decoration: none;
}
.marcas-content .tabs-content .tab-panel#tab-1 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-1 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-1 .wrapper .info a {
  color: #E4032D;
}
.marcas-content .tabs-content .tab-panel#tab-2 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-2 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-2 .wrapper .info a {
  color: #E41B12;
}
.marcas-content .tabs-content .tab-panel#tab-3 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-3 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-3 .wrapper .info a {
  color: #A65C96;
}
.marcas-content .tabs-content .tab-panel#tab-4 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-4 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-4 .wrapper .info a {
  color: #E54582;
}
.marcas-content .tabs-content .tab-panel#tab-5 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-5 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-5 .wrapper .info a {
  color: #CB1930;
}
.marcas-content .tabs-content .tab-panel#tab-6 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-6 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-6 .wrapper .info a {
  color: #3D695C;
}
.marcas-content .tabs-content .tab-panel#tab-7 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-7 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-7 .wrapper .info a {
  color: black;
}
.marcas-content .tabs-content .tab-panel#tab-8 .wrapper .info h3,
.marcas-content .tabs-content .tab-panel#tab-8 .wrapper .info h4,
.marcas-content .tabs-content .tab-panel#tab-8 .wrapper .info a {
  color: #0E4383;
}
.marcas-content .tabs-content .tab-panel .pictures .slick-slide {
  height: 221px;
  margin: 0 2.5px;
}
.marcas-content .tabs-content .tab-panel .pictures .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-franquicias {
  position: relative;
  height: clamp(360px, 360px + 147 * (100vw - 375px) / 905, 507px);
  margin-bottom: clamp(40px, 40px + 26 * (100vw - 375px) / 905, 66px);
  background: #E9511D;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero-franquicias {
    height: 300px;
  }
}
.hero-franquicias .character {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-franquicias .character img {
  height: 100%;
  width: auto;
}
.hero-franquicias .pins {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 56px;
  width: 1199px;
  height: 403px;
}
@media (max-width: 600px) {
  .hero-franquicias .pins {
    display: none;
  }
}
.hero-franquicias .pins img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-franquicias .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(20px, 20px + 42 * (100vw - 375px) / 905, 62px);
}
@media (max-width: 600px) {
  .hero-franquicias .info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.hero-franquicias .info h2 {
  font-family: "Changa One", sans-serif;
  font-size: clamp(37px, 37px + 33 * (100vw - 375px) / 905, 70px);
  color: white;
  margin-right: clamp(24px, 24px + 134 * (100vw - 375px) / 905, 158px);
  line-height: 1.05;
}
@media (max-width: 600px) {
  .hero-franquicias .info h2 {
    margin: 0 0 10px;
  }
}
.hero-franquicias .info p {
  font-size: clamp(16px, 16px + 9 * (100vw - 375px) / 905, 25px);
  color: white;
  max-width: clamp(280px, 280px + 351 * (100vw - 375px) / 905, 631px);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .hero-franquicias .info p {
    max-width: unset;
  }
}

.experience-franquicias {
  margin-bottom: 140px;
}
@media (max-width: 600px) {
  .experience-franquicias {
    margin-bottom: 35px;
  }
}
.experience-franquicias .wrapper {
  width: calc(100% - 60px);
  max-width: 727px;
  margin: auto;
}
.experience-franquicias .wrapper h2 {
  font: 70px "Changa One", sans-serif;
  color: #E9511D;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .experience-franquicias .wrapper h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.experience-franquicias .wrapper article {
  position: relative;
}
.experience-franquicias .wrapper article p {
  font-size: 25px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 600px) {
  .experience-franquicias .wrapper article p {
    font-size: 16px;
  }
}
.experience-franquicias .wrapper article img {
  position: absolute;
  top: -61px;
  right: -230px;
}
@media (max-width: 600px) {
  .experience-franquicias .wrapper article img {
    display: none;
  }
}

.cards-marcas {
  scroll-margin-top: 50px;
  margin-bottom: 94px;
}
@media (max-width: 600px) {
  .cards-marcas {
    margin-bottom: 50px;
  }
}
.cards-marcas .wrapper {
  padding-left: 45px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cards-marcas .wrapper {
    flex-direction: column;
    padding-left: unset;
  }
}
.cards-marcas .wrapper h2 {
  font: 70px "Changa One", sans-serif;
  color: #E9511D;
  margin-right: 70px;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .cards-marcas .wrapper h2 {
    margin: 0 0 70px;
  }
}
@media (max-width: 600px) {
  .cards-marcas .wrapper h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .cards-marcas .wrapper h2 br {
    display: none;
  }
}
.cards-marcas .wrapper .slider {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.cards-marcas .wrapper .slider .slick-track {
  display: flex;
}
.cards-marcas .wrapper .slider .slick-slide {
  height: auto;
}
.cards-marcas .wrapper .slider .card {
  min-height: 450px;
  border-radius: 20px;
  padding: 35px 15px 45px;
  margin: 0 7.5px;
}
@media (max-width: 600px) {
  .cards-marcas .wrapper .slider .card {
    padding: 15px;
    min-height: unset;
  }
}
.cards-marcas .wrapper .slider .card h3 {
  font-size: 35px;
  font-weight: 900;
  color: white;
  height: 70px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 600px) {
  .cards-marcas .wrapper .slider .card h3 {
    font-size: 24px;
  }
}
.cards-marcas .wrapper .slider .card p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  text-align: center;
  line-height: 1;
}
@media (max-width: 600px) {
  .cards-marcas .wrapper .slider .card p {
    font-size: 16px;
  }
}
.cards-marcas .wrapper .slider .card:nth-child(1) {
  background: #3D2B30;
}
.cards-marcas .wrapper .slider .card:nth-child(2) {
  background: #6F2C63;
}
.cards-marcas .wrapper .slider .card:nth-child(3) {
  background: #A57699;
}
.cards-marcas .wrapper .slider .card:nth-child(4) {
  background: #C5143D;
}

.model .wrapper {
  max-width: 1061px;
  margin: auto;
  width: calc(100% - 60px);
}
.model .wrapper h2 {
  font: 70px "Changa One", sans-serif;
  color: #E9511D;
  text-align: center;
  margin-bottom: 106px;
}
@media (max-width: 600px) {
  .model .wrapper h2 {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.model .wrapper .services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.model .wrapper .services .service {
  width: 50%;
  display: flex;
  max-width: 471px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .model .wrapper .services .service {
    margin: 0 auto 88px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .model .wrapper .services .service {
    margin-bottom: 50px;
  }
}
.model .wrapper .services .service .image {
  width: 122px;
  flex-shrink: 0;
  margin: -44px 22px 0 0;
}
@media (max-width: 600px) {
  .model .wrapper .services .service .image {
    width: 80px;
    margin: -28px 10px 0 0;
  }
}
.model .wrapper .services .service .image img {
  width: 100%;
}
.model .wrapper .services .service .text h3 {
  font-size: 30px;
  font-weight: 900;
  color: #E9511D;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .model .wrapper .services .service .text h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.model .wrapper .services .service .text p {
  font-size: 20px;
}
@media (max-width: 600px) {
  .model .wrapper .services .service .text p {
    font-size: 16px;
  }
}

.error-404 {
  background: #E9511D;
  padding: 30px 0 58px;
}
.error-404 .wrapper {
  width: calc(100% - 60px);
  margin: auto;
}
.error-404 .wrapper h2 {
  font: 70px "Changa One", sans-serif;
  color: white;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (max-width: 600px) {
  .error-404 .wrapper h2 {
    font-size: 30px;
  }
}
.error-404 .wrapper h2 img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .error-404 .wrapper h2 img {
    width: 260px;
  }
}
.error-404 .wrapper p {
  font-size: 25px;
  font-weight: 300;
  color: white;
  max-width: 727px;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .error-404 .wrapper p {
    font-size: 16px;
  }
}
.error-404 .wrapper a {
  font: 20px "Changa One", sans-serif;
  color: white;
  width: 145px;
  height: 40px;
  border: 1px solid white;
  border-radius: 100px;
  background: #E9511D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all 0.2s;
}
.error-404 .wrapper a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .error-404 .wrapper a:hover {
    transform: none;
  }
}