/*
* **********************************
* ################################## ESTILOS DO INDEX
* **********************************
*/

/*
========================
======================== ALTERA NAV
========================
*/

.header .nav li.home-go,
.header-nav-mobile-item-home-go {
  display: none;
}

/*
========================
======================== BANNERS
========================
*/

.banners {
  width: 100%;
  z-index: 9;
  position: relative;
}

.banners .container {
  max-width: 80%;
  margin: 0 auto;
  background-color: blue;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.banners .swiper-slide {
  width: 100%;
}

.banners .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banners .swiper-slide img.desktop {
  display: block;
}

.banners .swiper-slide img.mobile {
  display: none;
}

/* Botões de navegação modernos */
.banners .swiper-button-next,
.banners .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.banners .swiper-button-next:after,
.banners .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #2e2e37;
  transition: all 0.3s ease;
}

.banners .swiper-button-next:hover,
.banners .swiper-button-prev:hover {
  background: rgba(220, 183, 105, 0.95);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banners .swiper-button-next:hover:after,
.banners .swiper-button-prev:hover:after {
  color: #ffffff;
}

.banners .swiper-button-next {
  right: 20px;
}

.banners .swiper-button-prev {
  left: 20px;
}

/* Paginação moderna - apenas dot ativo centralizado */
.banners .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banners .swiper-pagination-bullet {
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 0;
  opacity: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 0;
}

.banners .swiper-pagination-bullet-active {
  width: 40px;
  height: 8px;
  background: linear-gradient(90deg, #f26544 0%, #f4d03f 50%, #f26544 100%);
  border-radius: 20px;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(220, 183, 105, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .banners .swiper-slide img.desktop {
    display: none;
  }

  .banners .swiper-slide img.mobile {
    display: block;
  }

  .banners .swiper-button-next,
  .banners .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .banners .swiper-button-next:after,
  .banners .swiper-button-prev:after {
    font-size: 14px;
  }

  .banners .swiper-button-next {
    right: 10px;
  }

  .banners .swiper-button-prev {
    left: 10px;
  }

  .banners .swiper-pagination {
    bottom: 15px;
    padding: 6px 15px;
  }

  .banners .swiper-pagination-bullet {
    width: 0;
    height: 0;
  }

  .banners .swiper-pagination-bullet-active {
    width: 30px;
    height: 6px;
  }
}

/*
========================
======================== NEWS HIGHLIGHTS
========================
*/

.news-highlights {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.news-highlights .container {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1170px) {
  .news-highlights {
    display: none;
  }

  /* .news-highlights .container {
    margin-left: 0;
    margin-right: 0;
  } */
}

@media (max-width: 680px) {
  .news-highlights .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.news-highlights .swiper-container {
  height: 56rem;
}

.news-highlights .swiper-wrapper {
  align-items: center;
}

.news-highlights .swiper-slide {
  width: 670px;
  height: 56rem;
  border-radius: 10px;
  overflow: hidden;
}

.news-highlights .swiper-slide a {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-highlights .swiper-slide .cover {
  position: relative;
}

.news-highlights .swiper-slide .cover::before {
  content: "";
  width: 100%;
  height: 56rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 210, 252, 0) 100%
  );
}

.news-highlights .swiper-slide .cover img {
  width: 100%;
  height: 56rem;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 1170px) {
  .news-highlights .swiper-container,
  .news-highlights .swiper-slide,
  .news-highlights .swiper-slide .cover::before,
  .news-highlights .swiper-slide .cover img {
    width: 100% important;
    height: 40rem !important;
  }
}

.news-highlights .swiper-slide .title {
  width: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  text-align: center;
  margin: 0 20%;
  border-bottom: 5px solid #f26544;
  padding-bottom: 40px;
  transition: 0.4s;
}

@media (max-width: 1170px) {
  .news-highlights .swiper-slide .title {
    width: 80%;
    margin: 0 10%;
  }
}

.news-highlights .swiper-slide:hover .title {
  padding-bottom: 50px;
  transition: 0.4s;
}

.news-highlights .swiper-slide .title h2 {
  font-size: 3.4rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 680px) {
  .news-highlights .swiper-slide .title h2 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}

.news-highlights .swiper-pagination {
  position: relative;
  margin-top: 4rem;
}

.news-highlights .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #ffffff;
  opacity: 1;
}

.news-highlights .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  width: 24px;
  border-radius: 100px;
}

/*
========================
======================== NEWS HIGHLIGHTS MOBILE
========================
*/

.news-highlights-mobile {
  display: none;
  z-index: 10;
}

@media (max-width: 1170px) {
  .news-highlights-mobile {
    display: block;
  }
}

.news-highlights-mobile .container {
  overflow: hidden;
}

.news-highlights-mobile .swiper-slide {
  height: 40rem;
  border-radius: 10px;
  overflow: hidden;
}

.news-highlights-mobile .swiper-slide .cover {
  position: relative;
}

.news-highlights-mobile .swiper-slide .cover::before {
  content: "";
  width: 100%;
  height: 40rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 210, 252, 0) 100%
  );
}

.news-highlights-mobile .swiper-slide .cover img {
  width: 100%;
  height: 40rem;
  border-radius: 10px;
  object-fit: cover;
}

.news-highlights-mobile .title {
  width: 90%;
  right: 0;
  bottom: 0;
  z-index: 99;
  margin: 0 5%;
  position: absolute;
  text-align: center;

  border-bottom: 5px solid #f26544;
  padding-bottom: 20px;
}

.news-highlights-mobile .swiper-slide .title h2 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 600;
  color: #fff;
}

.news-highlights-mobile .swiper-pagination {
  position: relative;
  margin-top: 4rem;
}

.news-highlights-mobile .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #ffffff;
  opacity: 1;
}

.news-highlights-mobile .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  width: 24px;
  border-radius: 100px;
}

/*
========================
======================== SCOREBOARDS
========================
*/

.scoreboards {
  padding: 50px 0 0 0;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.scoreboards .titles-select {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scoreboards .titles-select h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #f26544;
}

.scoreboards select {
  background: #ffffff url(../../img/global/custom/arrow-select.svg) right 20px
    center no-repeat;
  width: 300px;
  height: 4.3rem;
  border-radius: 0.6rem;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #2e2e37;
  font-weight: 300;
  margin-top: 5px;
  border: 1px solid #f26544;
  outline: 0;
  appearance: none;
  margin-top: 10px;
}

.box-scoreboards-titles {
  margin-bottom: 30px;
  text-align: center;
}

.box-scoreboards-titles h3 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.scoreboards-accordion-item {
  width: 100%;
  background-color: #f26544;
  border: 2px solid #f26544;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.4s;
}

.scoreboards-accordion-item.active {
  background-color: #f26544;
}

.scoreboards-accordion-item-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
}

.scoreboards-accordion-item-title h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.scoreboards-accordion-item .accordion-arrow {
  transition: all 0.2s ease-out;
}

.scoreboards-accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.scoreboards-accordion-item-content {
  display: none;
  min-height: 50px;
  padding: 0 20px 20px 20px;
  transition: 0.4s;
}

.scoreboards-accordion-item.active .scoreboards-accordion-item-content {
  display: block;
}

.scoreboards-accordion-item .all {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1170px) {
  .scoreboards-accordion-item .all {
    grid-template-columns: repeat(2, 1fr);
  }
}

.scoreboards-accordion-item .all .item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  color: #2e2e37;
  text-align: center;
  transition: 0.4s;
}

.scoreboards-accordion-item .all .item:hover {
  background-color: #f26544;
  transition: 0.4s;
}

.scoreboards-accordion-item .all .item span {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.scoreboards-accordion-item .all .item h5 {
  font-size: 4rem;
  font-weight: 700;
  margin-top: -5px;
}

.scoreboards-accordion-item .all .item p {
  font-size: 1.6rem;
  font-weight: 300;
}

.scoreboards-accordion-item .all .item strong {
  display: block;
  font-weight: 300;
}

.gymnastics-all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 1170px) {
  .gymnastics-all {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gymnastics-all .item {
  background-color: #ffffff;
  border-radius: 10px;
  color: #2e2e37;
  text-align: center;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.gymnastics-all .item:hover {
  background-color: #f26544;
  transition: 0.4s;
}

.gymnastics-all .item span {
  background-color: #f26544;
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: 600;
  min-width: 60px;
}

.gymnastics-all .item h4 {
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: 300;
}

/*
========================
======================== NEWS
========================
*/

.news .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.news .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #f26544;
}

.news .container {
  padding: 7rem 0 0 0;
  position: relative;
  z-index: 10;
}

.news .all {
  margin-top: 3rem;
  clear: both;
}
.news .item {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .news .item {
    width: 100%;
  }
}

.news .item:hover {
  background-color: #271e41;
  transition: 0.4s;
  border-radius: 10px;
}

.news .item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news .item:first-child {
  position: relative;
  margin-bottom: 0;
  height: 47rem;
  width: calc(50% - 10px);
  margin-right: 10px;
}
.news .item:first-child a {
  display: block;
}
@media (max-width: 640px) {
  .news .item:first-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.news .item:first-child .thumb {
  width: 100%;
  height: 47rem;
  position: relative;
}
.news .item:first-child .thumb:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.news .item:first-child .desc {
  position: absolute;
  width: 100%;
  margin-top: 0;
  padding-left: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 3;
}

.news .item .thumb {
  width: 45%;
  height: 23rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.news .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  transition: 0.4s;
}
.news .item .thumb .hover {
  opacity: 0;
  background-color: rgba(39, 30, 65, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .item .thumb .hover img {
  width: 32px;
  height: 32px;
}
.news .item .desc {
  width: 55%;
  padding-left: 10px;
}

.news .item .desc span {
  background-color: #2474c6;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 3px 5px;
  display: none;
}

.news .item:first-child .desc span {
  display: inline-block;
}

.news .item .desc h3 {
  font-weight: 1.8rem;
  font-weight: 500;
  color: #f26544;
}

.news .item:first-child .desc h3 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
}

.news .item .desc h4 {
  font-weight: 1.6rem;
  font-weight: 300;
  color: #f26544;
  margin-top: 10px;
}

.news .item:first-child .desc h4 {
  display: none !important;
}

.news .item:hover .thumb img {
  transform: scale(1.1);
  transition: 0.4s;
}
.news .item:hover .thumb .hover {
  opacity: 1;
  transition: 0.4s;
}
.news .item:hover .desc h3 {
  text-decoration: underline;
}

.news .item .desc .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.news .item .desc .date p {
  font-size: 15px;
  font-weight: 300;
  color: #f26544;
}

/*
========================
======================== TIMETABLES
========================
*/

.timetables {
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.timetables .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.timetables .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #f26544;
}

.timetables .all {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

@media (max-width: 1170px) {
  .timetables .all {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .timetables .all {
    grid-template-columns: 1fr;
  }
}

.timetables .item {
  /* background: url("../../img/global/custom/bg-timetables.png") no-repeat; */
  background-size: cover;
  border: 2px solid #f26544;
  border-radius: 10px;
  position: relative;
  height: 380px;
  transition: 0.4s;
}

/* @media (min-width: 980px) {
  .timetables .item:hover {
    background: url("../../img/global/custom/bg-timetables-hover.png") no-repeat;
    background-size: cover;
    transition: 0.4s;
  }
} */

.timetables .item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.timetables .item .image {
  position: absolute;
  left: -10px;
  top: -10px;
  transition: 0.4s;
}

.timetables .item:hover .image {
  top: -15px;
  transition: 0.4s;
}

.timetables .item .title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  text-align: center;
  padding: 20px 10px;
}

.timetables .item .title h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}

.timetables .item .title h3 span {
  text-transform: uppercase;
}

.timetables .item .title p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #35c6f4;
  margin-top: 5px;
}

.timetables .item:hover .title h3,
.timetables .item:hover .title p {
  color: #2e2e37;
}

.timetables .item .title span {
  display: block;
}

/*
========================
======================== GALLERY
========================
*/

.gallery {
  padding: 70px 0 0 0;
}

.gallery .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.gallery .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
}

.gallery .all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1170px) {
  .gallery .all {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .gallery .all {
    grid-template-columns: 1fr;
  }
}

.gallery .item .thumb {
  width: 100%;
  height: 18rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery .item .thumb .hover {
  opacity: 0;
  background-color: rgba(39, 30, 65, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.gallery .item:hover .thumb img {
  transform: scale(1.1);
  transition: 0.4s;
}

.gallery .item:hover .thumb .hover {
  opacity: 1;
  transition: 0.4s;
}

.gallery .item .desc {
  margin-top: 10px;
}

.gallery .item .desc h3 {
  font-size: 20px;
  font-weight: 400;
  color: #2e2e37;
}

.gallery .item:hover .desc h3 {
  text-decoration: underline;
}

.gallery .item .desc .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.gallery .item .desc .date p {
  font-size: 15px;
  font-weight: 300;
  color: #2e2e37;
}

.gallery .see-more {
  width: 100%;
  text-align: center;
}

.gallery .see-more .btn {
  background-color: #f26544;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2e2e37;
  text-transform: uppercase;

  border-radius: 4px;
  display: inline-block;
  margin-top: 4rem;
  transition: 0.4s;
}

.gallery .see-more .btn:hover {
  background-color: #886c32;
  color: #ffffff;
  transition: 0.4s;
}

/*
========================
======================== LIVES
========================
*/

.lives {
  background: #271e41 url("../../img/global/custom/bg-lives.jpg") no-repeat;
  background-size: cover;
  padding: 7rem 0;
  /* margin-top: 7rem; */
}

.lives .container {
  text-align: center;
}

.lives .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.lives .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
}

.lives .embed {
  width: 80%;
  margin: 0 10%;
}

@media (max-width: 1170px) {
  .lives .embed {
    width: 100%;
    margin: 0;
  }
}

.lives h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
}

/*
========================
======================== VIDEOS
========================
*/

.videos {
  padding: 7rem 0;
}

.videos .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.videos .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
}

.videos .all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 680px) {
  .videos .all {
    grid-template-columns: 1fr;
  }
}

.videos .item .thumb {
  width: 100%;
  height: 23rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.videos .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.videos .item .thumb .hover {
  opacity: 0;
  background-color: rgba(39, 30, 65, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.videos .item:hover .thumb img {
  transform: scale(1.1);
  transition: 0.4s;
}

.videos .item:hover .thumb .hover {
  opacity: 1;
  transition: 0.4s;
}

.videos .item .desc {
  margin-top: 20px;
}

.videos .item .desc span {
  background-color: #2474c6;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 3px 5px;
}

.videos .item .desc h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #2e2e37;
  margin-top: 10px;
}

.videos .item:hover .desc h3 {
  text-decoration: underline;
}

.videos .item .desc .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.videos .item .desc .date p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2e2e37;
}

.videos .see-more {
  width: 100%;
  text-align: center;
}

.videos .see-more .btn {
  background-color: #f26544;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2e2e37;
  text-transform: uppercase;

  border-radius: 4px;
  display: inline-block;
  margin-top: 4rem;
  transition: 0.4s;
}

.videos .see-more .btn:hover {
  background-color: #886c32;
  color: #ffffff;
  transition: 0.4s;
}

/*
========================
======================== LINKS
========================
*/

.links {
  padding: 50px 0 70px 0;
}

.links .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.links .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
}

.links .all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1170px) {
  .links .all {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .links .all {
    grid-template-columns: 1fr;
  }
}

.links .item a {
  background-color: #f26544;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.4s;
  min-height: 8rem;
}

.links .item a:hover {
  background-color: #886c32;
  color: #ffffff;
  transition: 0.4s;
}

.links .item span {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}

/*
========================
======================== SEE MORE
========================
*/

.see-more {
  width: 100%;
  text-align: center;
  clear: both;
}

.see-more .btn {
  background-color: #f26544;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2e2e37;
  text-transform: uppercase;

  border-radius: 4px;
  display: inline-block;
  margin-top: 4rem;
  transition: 0.4s;
}

.see-more .btn:hover {
  background-color: #886c32;
  color: #ffffff;
  transition: 0.4s;
}
