html,
body {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

/*
LINK
*/
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #ff2163;
  text-decoration: none;
}

/*
IMAGE
*/
img {
  width: 100%;
  height: auto;
}

.object-fit-cover {
  object-fit: cover;
}

/*
FONT-SIZE
*/
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.88rem;
}

.text-base {
  font-size: 1rem; /*16px*/
}

.text-lg {
  font-size: 1.15rem;
}

.text-xl {
  font-size: 1.3rem;
}

.text-2xl {
  font-size: 1.45rem;
}

.text-3xl {
  font-size: 1.6rem;
}

.text-4xl {
  font-size: 3rem;
}

.text-5xl {
  font-size: 4.25rem;
}

/*
LINE-HEIGHT
*/
.line-height-100 {
  line-height: 1;
}
.line-height-120 {
  line-height: 1.2;
}
.line-height-130 {
  line-height: 1.3;
}
.line-height-150 {
  line-height: 1.5;
}

/*
SHADOW
*/
.text-shadow {
  text-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

/*
WIDTH
*/
.width-100px {
  width: 100px;
}
.width-150px {
  width: 150px;
}

/*
HEIGHT
*/
.min-height-320px {
  min-height: 320px;
}

/*
COLOR
*/
.txt-color-white {
  color: #fff;
}
.txt-color-black {
  color: #000;
}
.txt-color-blue {
  color: #0e21e5;
}
.txt-color-pink {
  color: #ff2163;
}

/*
BACKGROUND COLOR
*/
.bg-color-white {
  background-color: #fff;
}
.bg-color-black {
  background-color: #000;
}
.bg-color-blue {
  background-color: #0e21e5;
}
.bg-color-pink {
  background-color: #ff2163;
}

/*
OPACITY
*/
.opacity-0 {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.opacity-1 {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/*
HEADER
*/
header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
header .logo {
  width: auto;
  /* height: 35px; */
  max-height: 65px;
  padding: 15px 0;
}

/*
HERO
*/
.hero {
  background-color: #0e21e5;
  color: #fff;
}

/*
FOOTER
*/
footer .logo {
  width: auto;
  /* height: 35px; */
  max-height: 65px;
  padding: 15px 0;
}

/*************
 MEDIA QUERIES
 *************/
/* Medium devices (576px and up) */
@media (min-width: 576px) {
  header .logo {
    width: auto;
    max-height: 75px;
    padding: 5px 0;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  html,
  body {
    font-size: 17px;
  }
  #menu a {
    position: relative;
    z-index: 1;
  }
  #menu a:hover {
    color: #fff;
  }
  #menu a:after {
    content: "";
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
    background-color: #ff2163;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
  }
  #menu a:hover:after {
    opacity: 1;
    visibility: visible;
    transition: all 0.2s linear;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  html,
  body {
    font-size: 18px;
  }
  .text-4xl {
    font-size: 4rem;
  }
  .text-5xl {
    font-size: 5.25rem;
  }
}

@media (min-width: 1600px) {
  .text-4xl {
    font-size: 4.5rem;
  }
  .text-5xl {
    font-size: 6.25rem;
  }
}

/* GALLERY */

.owl-carousel img {
  /* width: 33%; */
  z-index: 2;
}

.owl-carousel {
  width: 75%;
}

.owl-stage {
  display: flex;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

button {
  border: none;
  height: auto;
  width: 50px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.owl-prev img {
  transform: rotate(180deg);
}

.owl-next::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent;
    top: 0;
    left: -0.5rem;
    border-radius: 50%;
    z-index: -1;
    /* display: none;*/
}

.owl-prev::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent;
    top: 0;
    left: 1.8rem;
    border-radius: 50%;
    z-index: -1;
    /* display: none;*/
}

.owl-next.hover::after,
.owl-prev.hover::after {
  background-color: #ff2163;
}

button:focus {
  outline: none;
}

[class*="icono"] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  box-sizing: border-box;
}

[class*="icono"]:after,
[class*="icono"]:before {
content: "";
box-sizing: border-box;
}

[class*="icono-arrow1"] {
  width: 10px;
  height: 10px;
  border-width: 3px 3px 0 0;
  border-style: solid;
  margin: 10px;
}
[class*="icono-arrow1"]:before {
    right: -1px;
    top: -3px;
    position: absolute;
    height: 2px;
    box-shadow: inset 0 0 0 32px;
    transform: rotate(-45deg);
    width: 50px;
    transform-origin: right top;
}
.icono-arrow1-left {
  transform: rotate(45deg);
}
.icono-arrow1-right {
  transform: rotate(-135deg);
}
