

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Noto Serif', serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #303030; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #076DA0; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0AA0EB; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --background-color-secondary: #fafafa;
  --heading-color-secondary: #9d0c2a;
  --accent-color-secondary: #ed1846;
}

/* Nav Menu Colors  */
:root {
  --nav-color: #303030;  /* The default color of the main navmenu links */
  --nav-hover-color: #0AA0EB; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #303030; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0AA0EB; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--font-secondary);
}

.btn {
  text-transform: uppercase;
}

strong.destacado {
  color: var(--heading-color-secondary);
}

@media (max-width: 991px) {
  .hide {
    display: none;
  }
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}


.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--font-primary);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

.section .content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section .content a {
  margin-top: 20px;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 0;
  border-color: var(--accent-color);
  transition: all ease-in-out 0.4s;
}

.section .content a:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .content .product {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 20px;
  width: 100%;
}

.hero .content .product h4 {
  color: var(--contrast-color);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 0;
}

.hero .content .product p {
  font-size: 17px;
  margin-bottom: 0;
}

.hero .content .communication {
  text-align: left;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  margin-left: 15%;
}

.hero .content .communication h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.hero .content .communication p {
  font-size: 15px;
  color: var(--default-color);
}

.hero .content .communication .video-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  transition: all ease-in-out 0.4s;
  font-size: 15px;
}

.hero .content .communication .video-btn:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
}

@media (min-width: 576px) {
  .hero .content .communication {
    margin-left: 0%;
    margin-top: 20%;
  }
  .hero .content .product {
    height: 50%;
  }
}

@media (min-width: 768px) {
  .hero .content .product h4 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .hero .content .product p {
    font-size: 19px;
  }
}

@media (min-width: 992px) {
  .hero .content .communication {
    margin-top: 15%;
  }
  .hero .content .communication h3 {
    font-size: 28px;
  }
  .hero .content .communication p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .hero .content .product {
    padding: 30px;
  }
  .hero .content .communication {
    padding: 40px;
  }

}

/*--------------------------------------------------------------
# Exhibition Section
--------------------------------------------------------------*/
.exhibition {
  overflow: hidden;
  background-color: var(--background-color);
}

.exhibition .nav-tabs {
  border: 0;
}

.exhibition .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.exhibition .nav-link:hover {
  color: var(--heading-color);
}

.exhibition .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.exhibition .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.exhibition .details h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.exhibition .details p {
  color: var(--default-color);
}

.exhibition .details p:last-child {
  margin-bottom: 0;
}

.exhibition .img-fluid {
  max-width: 70%;
}

@media (min-width: 992px) {
  .exhibition .img-fluid {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Expositor Section
--------------------------------------------------------------*/
.expositor .card {
  border-radius: 0;
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
}

.expositor .card .card-body {
  color: var(--contrast-color);
}
.expositor .card .card-body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--contrast-color);
}

.expositor .card .card-body:hover {
  border-color: var(--accent-color);
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Marketing Section
--------------------------------------------------------------*/
.marketing .accordion .accordion-item {
  background-color: var(--surface-color);
  position: relative;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 5px;
  overflow: hidden;
}

.marketing .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.marketing .accordion .accordion-item .accordion-button {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--heading-color);
}
.marketing .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-color: var(--accent-color);
  color: var(--contrast-color) !important;
  box-shadow: none;
  padding-bottom: 0;
}

.marketing .accordion .accordion-item .accordion-button.collapsed:hover {
  color: var(--accent-color);
}

.marketing .accordion-body {
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--contrast-color);
}

.marketing .accordion-body a {
  margin-top: 20px;
  background-color: var(--contrast-color);
  border-radius: 0;
  border-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all ease-in-out 0.4s;
}

.marketing .accordion-body a:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Red Auto Section
--------------------------------------------------------------*/

.red .carousel-indicators [data-bs-target] {
  background-color: var(--accent-color);
}

.red .carousel-indicators {
  margin-bottom: -1.5rem;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.argentina h3 {
  color: var(--default-color);
  font-family: var(--font-primary);
  font-weight: 600;
}

.argentina p small {
  font-size: 12px;
}

.argentina i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.argentina .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  height: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.argentina .stats-item span {
  font-size: 32px;
  display: inline-block;
  margin: 10px 0 5px;
  font-weight: 700;
  color: var(--heading-color-secondary);
}

.argentina .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
  line-height: 1.3em;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.productos .swiper {
  width: 100%;
  height: 100%;
}

.productosSwiper .swiper-slide h4 {
  width: 100%;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--contrast-color);
  position: absolute;
  bottom: 10px;
  margin: auto;
  padding: 2rem 1rem;
}

.productosSwiper .swiper-slide h4::after {
  border-bottom: solid 1px var(--accent-color);
  width: 50%;
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 25%;
}

.productosSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productosSwiper .swiper-slide:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.productosSwiper .swiper-slide:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.productosSwiper .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.productosSwiper .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.productos .card {
  border-radius: 0;
  border: 0;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Encuestas Section
--------------------------------------------------------------*/
.encuestas .progress {
  height: 50px;
  display: block;
  background: none;
  border-radius: 0;
}

.encuestas .progress .encuesta {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  line-height: 0.95rem;
}

.encuestas .progress .encuesta .val {
  float: right;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 20px;
}

.encuestas .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.encuestas .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.encuestas .progress-bar.secondary {
  background-color: var(--heading-color-secondary);
}

h6.secondary {
  color: var(--heading-color-secondary);
}

@media (min-width: 1200px) {
  .encuestas .progress .encuesta {
    margin: 0 0 6px 0;
  }
}


/*--------------------------------------------------------------
# Contacto Section
--------------------------------------------------------------*/
.contacto .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .contacto .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.contacto .team-member .pic {
  overflow: hidden;
  width: 120px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contacto .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.contacto .team-member:hover {
  transform: translateY(-10px);
}

.contacto .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .contacto .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.contacto .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--default-color);
}

.contacto .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 400;
}

.contacto .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .contacto .team-member span::after {
    left: calc(50% - 25px);
  }
}

.contacto .team-member .social {
  margin-top: 12px;
  width: 100%;
}

@media (max-width: 468px) {
  .contacto .team-member .social {
    justify-content: center !important;
  }
}

.contacto .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.contacto .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.contacto .team-member .social a:hover {
  background: var(--accent-color);
}

.contacto .team-member .social a:hover i {
  color: var(--contrast-color);
}

.contacto .team-member .social a+a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color-secondary);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 1%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer .social-links a {
  
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links img {
  width: 80%;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}