:root {
  --home-content-width: 1360px;
  --brand-primary: #cc9e51;
  --brand-secondary: #151d29;
  --dark-grey: #313139;
  --text-primary: #000000;
  /* Breakpoints */
  --mobile: 480px;
  --mobile-lg: 768px;
  --tablet: 1024px;
  --desktop: 1200px;
  --desktop-lg: 1500px;
}

.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 30px;
  gap: 0px;
}

@media (max-width: 1024px) {
  .home-page {
    padding-top: 10px;
  }
}

.home-page p {
  font-family: "Montserrat", sans-serif;
}

.home-page h1, 
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
  margin: 0;
  font-weight: 500;
  color: var(--text-primary);
}
.home-page h2 {
  font-size: 52px;
  font-weight: 600;
}
.home-page h3 {
  font-size: 28px;
  font-weight: 400;
}
.home-page > div {
  display: flex;
}
.home-page > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-page .home-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-page .home-section.gray {
  background: #eff2f7;
}

.home-page div.home-content {
  display: flex;
  width: var(--home-content-width);
  max-width: 95%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guide-button {
  width: auto;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  background: #313139;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  padding: 0 40px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.guide-button span {
  color: #fff;
}
.guide-button img {
  width: 48px;
}
.guide-button:hover {
  background: #494952;
  color: #fff;
}

@media (max-width: 1024px) {
  .home-page h2 {
    font-size: 30px;
    font-weight: 600;
  }
  .home-page h3 {
    font-size: 20px;
    font-weight: 400;
  }
}

/* 0 - OWL CAROUSEL */

.home-page .owl-nav .fa {
  color: #d1d2d6;
  font-size: 64px;
}
.home-page .owl-loaded {
  position: relative;
  margin-bottom: 10px;
}
.home-page .owl-nav .owl-prev,
.home-page .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none !important;
  background: none !important;
}
.home-page .owl-nav .owl-prev {
  left: -60px;
}
.home-page .owl-nav .owl-next {
  right: -60px;
}
.home-page .owl-nav .owl-prev:hover .fa,
.home-page .owl-nav .owl-next:hover .fa{
  color: #bfc0c4;
}
.home-page .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.home-page .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 5px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  background: rgba(0,0,0,0.3);
}
.home-page .owl-dots .owl-dot.active {
  width: 10px;
  height: 10px;
  background: white;
}


/* 0 - SHIPPINGS */

.home-page .home-section.dark {
  background: #000;
}

.home-shippings-outer {
  width: 100%;
  height: auto;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.home-shippings-marquee {
  width: 100%;
  overflow-x: visible;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: marquee 4s linear infinite;
  position: absolute;
  left: 0;
  top: 11px;
}
.home-shippings-marquee.secondary {
  animation: marquee-secondary 4s linear infinite;
}

@keyframes marquee {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes marquee-secondary {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.home-shippings-info {
  display: flex;
  width: auto;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 10px;
}
.home-shippings-info h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}
.home-shippings-info img {
  width: 40px;
  height: auto;
}
.home-shippings-info img.shipping {
  width: 50px;
}

@media (max-width: 1024px) {
  .home-shippings-info h2 {
    font-size: 18px;
  }
  .home-shippings-info img {
    width: 40px;
  }
  .home-shippings-info img.shipping {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .home-shippings-outer {
    height: 46px;
  }
  .home-shippings-info {
    padding-left: 10px;
    padding-right: 10px;
    gap: 5px;
  }
  .home-shippings-info h2 {
    font-size: 12px;
  }
  .home-shippings-info img {
    width: 30px;
  }
  .home-shippings-info img.shipping {
    width: 36px;
  }
}


/* 1 - BANNERS */

.home-banners-wrapper {
  height: 100%;
  height: auto;
  background-image: linear-gradient(to right, #054f7d, #00a7cf, #efd048, #861a54, #054f7d);
  background-size: 600%;
  background-position: 0 0;
  box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.5);
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-name: gradients;
}
@keyframes gradients {
	0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 0;
  }
  50% {
    background-position: 90% 0;
  }
  60% {
    background-position: 60%;
  }
  75% {
    background-position: 40%;
  }
  100% {
    background-position: 0 0;
  }
}
.home-banners {
  display: flex;
  flex-direction: row;
  gap: 5%;
  padding: 64px 0 40px;
  color: #fff;
}
.home-banners-content {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.home-banners .title {
  width: max-content;
  min-width: 100%;
  text-align: left;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.1em;
  color: #fff;
  transform: translateX(5%);
}
.home-banners .subtitle {
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
  color: #fff;
  transform: translateX(5%);
}
.home-banner-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px 0 30px;
}
.home-banner-response {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.home-banner-response img {
  width: 50px;
  height: auto;
}
.home-banners .subtitle-whatsapp {
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 1.2em;
  font-weight: 500;
}
.whatsapp-button {
  width: auto;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  background: #00d95f;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  padding: 0 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
@media (max-width: 1024px)  {
  .whatsapp-button {
    width: auto;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    font-size: 15px;
    padding: 0 10px;
  }
}
.whatsapp-button:hover {
  background: #00be43;
  color: #fff;
}
.home-banners .premium {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.home-banners .premium-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-banners .premium-stars .fa-star {
  color: #cfab6c;
  font-size: 32px;
}
.home-banners .premium-text {
  font-size: 22px;
  font-weight: 400;
  color: #cfab6c;
}
.home-banners-hero {
  flex: 1;
  height: 100%;
  min-height: 460px;
  position: relative;
}
.home-banners-hero .home-jersey {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.75s ease-in;
}
.home-banners-hero .home-jersey.active {
  opacity: 1;
  z-index: 2;
}

@media (max-width: 1024px) {
  .home-banners {
    flex-direction: column-reverse;
    width: 100%;
  }
  .home-banners-hero {
    height: auto;
    min-height: 320px;
  }
  .home-page div.home-content {
    width: 100%;
    max-width: 100%;
    padding: 0 3%
  }
  .home-banners .title {
    width: 100%;
    min-width: 100%;
    text-align: left;
    font-size: 32px;
    transform: translateX(0);
  }
  .home-banner-buttons {
    width: 100%;
  }
  .home-banners .subtitle {
    font-size: 16px;
    transform: translateX(0);
  }
  .home-banner-response {
    gap: 3px;
  }
  .home-banner-response img {
    width: 40px;
  }
  .home-banners .subtitle-whatsapp {
    font-size: 14px;
  }
  .home-banners .premium {
    margin-top: 0;
  }
  .home-banners .premium-stars .fa-star {
    font-size: 18px;
  }
  .home-banners .premium-text {
    font-size: 18px;
  }
}

/* 2 - CLIENTS */

.home-clients-wrapper {
  width: 100%;
  height: auto;
  background: #eff2f7;
  padding: 40px 0;
  gap: 20px;
}
.home-clients-logos {
  width: var(--home-content-width);
  height: auto;
  padding: 20px 0 10px;
}
.home-clients-logos img {
  margin-bottom: 0px;
}
.home-clients-logos .owl-nav .owl-prev,
.home-clients-logos .owl-nav .owl-next {
  transform: translateY(-80%) !important;
}
.home-page .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .home-clients-logos {
    width: 75%;
    height: auto;
  }
  .home-clients-logos img {
    margin-bottom: 30px;
  }
}



/* 3 - PERSONALIZATION */

.home-personalization {
  width: var(--home-content-width);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 80px 0 80px;
}
.home-personalization-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 50px;
}
.home-personalization-option {
  flex: 1;
  position: relative;
}
.home-personalization-option > img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
}
.home-personalization-option-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 10%;
}
.home-personalization-option-content p {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--dark-grey);
  text-align: center;
  line-height: 1.2em;
}
.home-personalization-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: max-content;
  max-width: 90%;
  height: auto;
  background-color: var(--dark-grey);
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.home-personalization-button:hover {
  background: #494952;
}
.home-personalization-button span {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1em;
  color: #fff;
}
.home-personalization-button img {
  width: 40px;
}

@media (max-width: 1024px) {
  .home-personalization {
    margin-top: 30px;
  }
  .home-personalization-options {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }
  .home-personalization-option-content {
    width: 50%;
    bottom: 10px;
    left: 10px;
    gap: 0;
  }
  .home-personalization-option-content p {
    font-size: 24px;
  }
  .home-personalization-button {
    width: max-content;
    max-width: 100%;
  }
  .home-personalization-button span {
    font-size: 14px;
  }
  .home-personalization-button img {
    width: 32px;
  }
}

/* 4 - INFO SECTIONS */

.home-info-section {
  display: flex;
  width: var(--home-content-width);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 0 60px;
}
.home-info-section-content {
  display: flex;
  flex: 5;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.home-info-section-content.inverse {
  align-items: flex-end;
}
.home-info-section-content.inverse h2,
.home-info-section-content.inverse h3{
  text-align: right;
}
.home-info-section-content h2 {
  width: 90%;
}
.home-info-section-content h3 {
  width: 70%;
}
.home-info-section-gallery {
  display: flex;
  flex: 5;
  height: auto;
  overflow: hidden;
}
.home-page .section-gallery {
  width: 100%;
  height: 500px;
  /* overflow: hidden; */
}
.gallery-container {
  display: block;
  width: 100%;
  min-height: 400px;
  border-radius: 20px;
  /* overflow: hidden; */
}
.gallery-container .owl-item {
  display: block;
  width: 100%;
}
.gallery-container img {
  width: 100%;
  border-radius: 20px;
}
.gallery-container .owl-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-container .owl-carousel .owl-stage-outer {
  width: 100%;
  display: block;
  overflow: hidden;
}
.home-page .gallery-container .owl-dots {
  bottom: 20px;
}

@media (max-width: 1024px) {
  .home-info-section {
    width: 100%;
    flex-direction: column;
    gap: 28px;
    padding: 80px 5% 60px;
  }
  .home-info-section-content,
  .home-info-section-gallery {
    flex: 1;
    width: 100%;
  }

  .gallery-container {
    width: 100%;
    min-height: 200px;
  }
}

/* 7 - GALLERY */

.home-content-gallery {
  width: var(--home-content-width);
  height: auto;
  padding: 80px 0 80px;
}
.home-gallery {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.home-gallery .owl-item .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
}
.home-gallery .owl-item .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.team-galleries {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-top: 30px;
}
.team-galleries .gallery-item {
  width: 420px;
  max-width: 95%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-galleries .gallery-item-images {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.team-galleries .gallery-item-images img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  height: 100%;
  border-radius: 10px;
}


@media (max-width: 1024px) {
  .home-content-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* 8 - START TO DESIGN */

.home-section.start {
  padding: 80px 0 100px;
}
.home-content-start {
  width: var(--home-content-width);
  height: auto;
  padding: 100px 0 150px;
  background: center center no-repeat;
  background-size: cover;
  border-radius: 20px;
}
.home-content-start img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 20px;
}
.home-content-start .start-button {
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--dark-grey);
  color: #fff;
  padding: 10px 40px;
  border-radius: 20px;
}
.home-content-start .start-button:hover {
  background: #494952;
}
.home-content-start-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
.home-content-start span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.home-content-start span.doubts {
  font-size: 20px;
  color: #000;
}
.home-content-start h4 {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .home-section.start {
    padding: 40px 5% 50px;
  }
  .home-content-start {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .home-content-start-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* 9 - Doutbts */

.home-section.home-section-doubts {
  background: #313139;
  padding: 20px 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.home-section-doubts h4 {
  width: auto;
  color: #fff;
}
.home-section-doubts .whatsapp-button-blue {
  width: auto;
  background: #1653df;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.home-section-doubts .whatsapp-button-blue:hover {
  background: #1242b5;
}

/* 10 - SIZES */

.home-sizes {
  width: 100%;
  height: auto;
  padding-top: 40px;
}
.home-sizes img {
  max-width: 100%;
  margin-top: 40px;
}
.home-sizes img.sizes-image-desktop {
  display: block;
}
.home-sizes img.sizes-image-mobile {
  display: none;
  max-width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

@media (max-width: 768px) {
  .home-sizes img.sizes-image-desktop {
    display: none;
  }
  .home-sizes img.sizes-image-mobile {
    display: block;
  }
}