@font-face {
  font-family: 'Canva Sans';
  src: url('../fonts/CanvaSans-Bold.woff2') format('woff2'),
      url('../fonts/CanvaSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canva Sans';
  src: url('../fonts/CanvaSans-Regular.woff2') format('woff2'),
      url('../fonts/CanvaSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
      url('../fonts/Inter-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
      url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
      url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}





/* ROOT VARS */
:root {
  --font-default: "Inter";
  --font-primary: "Canva Sans";
  --font-secondary: "Inter";
  
  --color-default: #0d1216;

  --color-primary: #e0242f;
  --color-primary-dark: #B71A23;

  --color-secondary: #423787;
  --color-secondary-dark: #5446AB;
  
  --color-white: #FFFFFF;
  --color-light: #f1f1f1;
  --color-dark: #0d1216;
  
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  
  scroll-behavior: smooth;
}




/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

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


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 200px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #075e54;
  color: #fff;
}

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--color-white);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo img {
  height: 80px;
  transition: .3s;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
  background-color: var(--color-white);
}

#header.header-scrolled .logo img {
  height: 80px;
  transition: .3s;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcums-content {
  padding: 25px 25px 15px 25px;
  background-color: var(--color-secondary);
  margin-top: 50px;
}

.breadcums-content h2 {
  font-family: var(--font-default);
  font-size: 28px;
  font-weight: 900 !important;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.breadcums-content a {
  font-size: 15px;
  color: var(--color-white);
}
.breadcums-content a:hover {
  font-size: 15px;
  color: var(--color-primary);
}

.breadcums-content ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcums-content ol li+li {
  padding-left: 10px;
  font-size: 15px;
  color: var(--color-white);
}

.breadcums-content ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-white);
  content: "/";
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}


.navbar a,
.navbar a:focus {
  font-family: var(--font-secondary) !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 2px;
}

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

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




.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-family: var(--font-secondary) !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  border: none;
}

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

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

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .swiper-slide {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#hero .swiper-slide .container .row .set-px-80 {
  padding: 0 80px;
}

#hero .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .swiper-slide .container {
  position: relative;
  z-index: 2;
}

#hero .swiper-button-next, 
#hero .swiper-button-prev {
  color: var(--color-secondary);
}
#hero .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 1;
}
#hero .swiper-pagination-bullet-active {
  background: var(--color-secondary);
}
#hero .swiper-slide .container h1{
  color: var(--color-white);
  text-shadow: var(--regular-shadow);
  font-size: 96px;
  font-weight: bold !important;
  line-height: 86px;
}
.custom-color {
  color: var(--color-secondary-dark) !important;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title-dark h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-dark);
}

.section-title-dark h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 20px);
}

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

.btn {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
}
.btn-custom {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  transition: 0.5s;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
  background: var(--color-primary);
}
.btn-custom:hover {
  color: #fff;
  background: var(--color-primary-dark) !important;
}
.btn-custom-invert {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  transition: 0.5s;
  color: var(--color-secondary);
  text-transform: uppercase;
  line-height: 24px;
  background: transparent;
  border: 1px solid var(--color-secondary);
}
.btn-custom-invert:hover {
  color: #fff;
  background: var(--color-secondary-dark) !important;
}











/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-light);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: rgba(248, 249, 250, 1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: var(--color-default);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .copyright {
  color: var(--color-dark);
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}




/*MYSQYLES*/
#topbar {
  background-color: var(--color-secondary);
}
#topbar .container{
  padding-top: 15px;
}
#topbar ul li{
  padding-right: 15px;
}
#topbar ul li a, 
#topbar .client-access {
  color: rgba(255, 255, 255, .4);
  font-size: 16px;
  transition: .3s;
}
#topbar ul li a:hover, 
#topbar .client-access:hover{
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  transition: .3s;
}
#quick-searck {
  padding-top: 60px;
  padding-bottom: 60px;
}
#quick-searck h1 {
  color: var(--color-secondary);
  font-weight: bold;
}
#quick-searck input, 
#quick-searck button {
  height: 70px;
} 
#quick-searck button {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
  transition: .3s;
}
#quick-searck button:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transition: .3s;
}

#explore {
  /*background-color: var(--color-secondary-dark);*/
}

.color-card {
  padding: 25px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
}


#swiper-categorias .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
}
#swiper-categorias .swiper-wrapper .swiper-slide .container .row .col-12{
  padding: 0 80px;
  text-align: center;
}
#swiper-categorias .swiper-wrapper .swiper-slide .container h3,
#swiper-categorias .swiper-wrapper .swiper-slide .container p {
  color: var(--color-white);
}

#swiper-categorias .swiper-wrapper .swiper-slide .container h3 {
  font-weight: 600;
  font-size: 34px;
}

#swiper-categorias .swiper-button-next, 
#swiper-categorias .swiper-button-prev {
  color: var(--color-primary);
}
#swiper-categorias .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 1;
}
#swiper-categorias .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.set-title-size {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 25px;
}



.mapsize {
  width: 100%;
  height: 415px;
}

.my-tabs .nav-tabs .nav-link.active {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  width: calc(100% / 3);
  transition: 0.5s;
  border-radius: 0;
  color: #fff;
  background: var(--color-primary);
}

.my-tabs .nav-tabs .nav-link {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  width: calc(100% / 3);
  transition: 0.5s;
  color: var(--color-default);
  background: var(--color-light);
  height: 60px;
  border: none;
}
.my-tabs .nav-tabs .nav-link:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.m-100 {
  margin: 100px;
}
.mx-100 {
  margin: 0 100px;
}
.my-100 {
  margin: 100px 0;
}




/*--------------------------------------------------------------
# SESSION NAVBAR
--------------------------------------------------------------*/
#session-nav #navbarSupportedContent .navbar-nav{
  display: block !important;
}
.filter-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.filter-list li .btn-lista{
  color: var(--color-default) !important;
  font-weight: 500;
  transition: .3s;
  font-size: 13px;
  padding: 10px 15px;
  width: 100% !important;
  background-color: transparent !important;
  border: none !important;
  text-align: left !important;
}
.filter-list li .btn-lista:hover{
  color: var(--color-primary) !important;
  background-color: var(--color-light) !important;
  width: 100% !important;
}
.filter-list li .active-item{
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  width: 100% !important;
}
.filter-list li span {
  font-size: 9px;
}
@media only screen and (max-width: 600px) {
  #session-nav {
    background-color: var(--color-white);
    padding: 10px;
    border-radius: .5rem;
  }
}





.product-card .product-card-body {
  height: 120px;
  overflow: hidden;
}

.bg-custom {
  background-color: #423787;
}


.filter-list-height {
  height: 720px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 15px;
}

.filter-list-height::-webkit-scrollbar-track
{
	border-radius: 4px;
	background-color: var(--color-light);
}

.filter-list-height::-webkit-scrollbar
{
	width: 4px;
	background-color: var(--color-light);
}

.filter-list-height::-webkit-scrollbar-thumb
{
	border-radius: 4px;
	background-color: #aaa;
}



.btn-color {
  width: 100%;
  content: "";
  padding-bottom: 100%;
  padding-top: 0;
}















/*MOBIL*/
@media only screen and (max-width: 756px) {
  section {
    padding: 60px 0;
  }
  #hero {
    padding-bottom: 0px;
  }
  #hero .swiper-slide .container h1 {
    font-size: 30px;
    line-height: 30px;
    text-align: center;
  }
  #hero .swiper-slide {
    height: 335px;
  }
  .color-card {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #swiper-categorias .swiper-wrapper .swiper-slide{ 
    height: 335px;
  }
}
