:root {
    --main-bg-color: #fff;
    --primary-color: #737373;
    --secondary-color: #F8920D;
    --tertiary-color: #FDF6E8;
    --quaternary-color: #F2D7B6;
    --quinary-color: #F2B56B;
    --main-color: #000;
    --swiper-navigation-color: var( --secondary-color);
    --swiper-navigation-sides-offset: 2rem;
    --swiper-pagination-color: #F2B56B;
    --swiper-pagination-bullet-inactive-color: #F2B56B;
    --swiper-pagination-bullet-inactive-opacity: .4;
    --swiper-pagination-bottom: 3rem;
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;

  }

  .roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

html {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
    background-color: var(--main-bg-color);
    font-family: "Roboto", sans-serif !important;
    width: 100%;
    height: 100%;
 } 

/* Filtro de imágenes index */

.cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.cover:before {
  content:'';
	position: absolute;
  top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

 .logo-white {
    filter: grayscale(100%) brightness(200%) saturate(1000%) contrast(1000%);
 }

.hover-effect {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.45s ease;
}

.hover-effect:after {
  background-color: var(--secondary-color);
  content: '';
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: 0%;
  transition: all 0.45s ease;
  z-index: 1;
}

.hover-effect:hover:after {
  width: 100%;
}

.hover-effect:hover img {
  filter: grayscale(0);
}

.hover-effect .hover-effect-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hover-effect:hover .hover-effect-container {
  background:rgba(0,0,0,.4);
}

.hover-effect .hover-effect-text-1,
.hover-effect .hover-effect-text-2,
.hover-effect .hover-effect-text-3 {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
  transition: all 0.45s ease;
}

.hover-effect .hover-effect-text-1 {
  transform: translateY(-100%);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--main-bg-color);
}

.hover-effect .hover-effect-text-2 {
  transform: translateY(100%);
  font-weight: 400;
  font-style: italic;
  color: var(--main-bg-color);
}

.hover-effect .hover-effect-text-3 {
  transform: translateY(-100%);
  font-style: italic;
  font-weight: 400;
  color: var(--main-bg-color);
}

.hover-effect:hover .hover-effect-text-1,
.hover-effect:hover .hover-effect-text-2 {
  transform: translateY(0%);
  opacity: 1;
  margin: 2px;
}

.hover-effect:hover .hover-effect-text-3 {
  transform: translateY(-55%);
  opacity: 1;
  margin: 5px;
}

.hover-effect-logo:hover img {
  filter: grayscale(0);
}

.line:after { 
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  content: "";
  transform: scale(0);
  transition: transform .3s cubic-bezier(0.11, 0.7, 0, 1);
}

.line:hover::after {
  transform: scale(1);
  color: var(--secondary-color);
}


.menu {
  padding-top: 5px;
}

.menu a:hover{
	transition: all .3s;
}

/* Submenu*/

.submenu{
	position: absolute;
	background: var(--main-bg-color);
	width: 15%;
	visibility: hidden;
	opacity: 0;
	transition: opacity 1.5s;
}

.submenu li a{
	display: block;
	padding: 15px;
	color: var(--main-color);
	text-decoration: none;
}

.submenu li a:hover{
	color: var(--secondary-color);
}

.menu:hover .submenu{
	visibility: visible;
	opacity: 1;
}

/* Animaciones */

.slidein {
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-top: 100%;
    width: 300%;
  }

  to {
    margin-top: 0%;
    width: 100%;
  }
}

.jump {
  animation: jump 0.8s infinite;
}

@keyframes jump {
  0%, 100% {top:0;}
  30% {top: -25px;}
}

.animatedScroll {
  opacity: 0;
  transition: all 0.5s;
}

.showUp {
  animation: showUp 1s;
}

@keyframes showUp {
  0% {
    transform: translateY(10rem);
  }

  100% {
    transform: translateY(0);
  }
}

.fade-in-img {
  animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}




