/*=============
Variables
=============*/
/*=============
Geberal
=============*/
body {
  background: url("../img/bg/BG.png") center center !important;
  background-size: cover;
}
/*@media (min-width: 1025px) {
  body {
    background-attachment: fixed !important;
  }
}*/
a {
  text-decoration: none;
}
:root {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
@font-face {
  font-family: 'title';
  src: url(../fonts/Bogle-BoldItalic.otf);
}
/*=============
Header
=============*/
.header {
  height: 70px;
  color: #3d3d3d;
  background-color: #ffffff;
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.49);
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 100px;
  margin-right: 8px;
  margin-bottom: -30px;
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .logo img {
    max-height: 90px;
    margin-right: 8px;
    margin-bottom: -10px;
  }
  .header .navmenu {
    order: 3;
  }
}
/*=============
Nav Menu
=============*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover a {
    color: #e3000b;
  }
  .navmenu a {
    color: #3d3d3d;
    padding: 18px 15px;
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus {
    color: #e3000b;
    padding: 18px 15px;
    font-size: 17px;
    font-family: sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu .active {
    color: #e3000b;
  }
  .navmenu .active:focus {
    color: #e3000b;
  }
  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #3d3d3d;
    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;
    position: absolute;
    inset: 0px 60px 0px 0px;
    padding: 60px 0;
    margin: 0;
    border-radius: 6px;
    background: linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a {
    color: #ffffff;
    padding: 20px 20px;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus {
    color: #e3000b;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 23px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a 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, #000000, transparent 90%);
  }
  .navmenu a i:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .navmenu a:hover {
    color: #e3000b;
  }
  .navmenu .active {
    color: #e3000b;
  }
  .navmenu .active:focus {
    color: #e3000b;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 36px;
    top: 18px;
    right: 12px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.9);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
    list-style: none;
  }
}
/*=============
Back to top
=============*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
  border: 0px solid transparent;
}
.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}
.scroll-top:hover {
  border: 1px solid #e3000b;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/*=============
Title
=============*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  background: -webkit-linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #3d3d3d;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #e3000b;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}
/*=============
Hero
=============*/
.hero {
  width: 100%;
  min-height: 98vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}
.hero h1 {
  margin: 0 0 20px 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
}
.hero span {
  color: #e3000b;
  font-family: 'title';
  font-size: 60px;
}
.hero p {
  color: #3d3d3d;
  margin: 30px 0;
  font-size: 1.8em;
  line-height: 1.3;
  font-weight: 500;
}
.hero .wm-bf img {
  width: 95%;
}
.hero .btn {
  color: #ffffff;
  background: linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 1s;
}
.hero .btn:hover {
  color: #ffffff;
  background: #e3000b;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  .hero h1 {
    text-align: center;
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 10px 0;
  }
  .hero span {
    font-size: 40px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0;
    text-align: center;
  }
  .hero .wm-bf {
    text-align: center;
  }
  .hero .wm-bf img {
    max-width: 550px;
  }
  .hero .cta-b {
    justify-content: center;
  }
  .hero .btn {
    text-align: center;
    font-size: 18px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*=============
Brands
=============*/
.brands {
  padding: 0;
}
.brands .swiper {
  padding: 0;
}
.brands .swiper-wrapper {
  height: auto;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.brands .swiper-slide {
  text-align: center;
  padding: 15px;
}
.brands .swiper-slide img {
  margin: auto;
  transition: 0.3s;
  padding: 0 10px;
}
.brands .swiper-slide img:hover {
  transform: scale(1.1);
}
/* ==========
Dinamic
========== */
.dinamic {
  padding-top: 140px;
  padding-bottom: 80px;
}
.dinamic p {
  color: black;
  padding: 5px 30px;
  font-size: 1.4em;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 1.4em;
}
.dinamic .cont-w {
  padding: 60px 0 20px 0;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.dinamic .instrucciones p {
  padding: 2% 6% 0;
  margin-bottom: 5px;
}
.dinamic .instrucciones img {
  height: 300px;
}
.dinamic .instrucciones .dm-img img {
  width: 80%;
  height: auto !important;
}
.dinamic .tyc {
  text-align: center;
  font-size: 12px;
  margin-top: 60px;
}
.dinamic .tyc p {
  font-weight: 600;
  margin-bottom: 0px;
}
.dinamic .tyc a {
  color: #000000;
  text-decoration: underline;
}
.dinamic .tyc a:hover {
  color: #e3000b;
  text-decoration: underline;
}
/*=============
Awwards
=============*/
.awwards {
  padding-top: 140px;
  padding-bottom: 80px;
}
.awwards .awwards-item {
  background-color: #ffffff;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}
.awwards .awwards-item:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.awwards .awwards-item .awward-img {
  margin-bottom: 40px;
}
.awwards .awwards-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.awwards .awwards-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}
.awwards .awwards-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.awwards .awwards-item:hover {
  transform: translateY(-10px);
}
.awwards .awwards-item:hover h4 a {
  color: var(--accent-color);
}
/*=============
Faqs
=============*/
.faqs {
  padding-top: 140px;
  padding-bottom: 80px;
}
.faqs .faq-container {
  margin-top: 15px;
}
.faqs .faq-container .faq-item {
  background-color: #ffffff;
  border: 2px solid transparent;
  border-image: linear-gradient(32deg, #e40c8a 0%, #7677ae 50%, #4a9dbb 100%) 30;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}
.faqs .faq-container .faq-item:last-child {
  margin-bottom: 0;
}
.faqs .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}
.faqs .faq-container .faq-item h3 span {
  color: #e3000b;
  padding-right: 5px;
}
.faqs .faq-container .faq-item h3:hover {
  color: #e3000b;
}
.faqs .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.faqs .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  padding: 0 20px;
  font-weight: 400;
  color: #3d3d3d;
  font-size: 16px;
}
.faqs .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 24px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: #000000;
}
.faqs .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.faqs .faq-container .faq-item .faq-toggle:hover {
  color: #e3000b;
}
.faqs .faq-container .faq-active h3 {
  color: #e3000b;
}
.faqs .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}
.faqs .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #e3000b;
}
/* ==========
Footer
========== */
#footer {
  background-color: #ffffff;
  border-top: 2px solid #ffffff;
  color: #fff;
  font-size: 14px;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.5);
}
#footer .footer-top {
  width: 95%;
  margin: auto;
  background: #ffffff;
  padding: 20px 0;
}
#footer .footer-newsletter .logo-1 {
  width: auto;
  height: 80px;
}
#footer .footer-newsletter .logo-2 {
  width: 100px;
  height: auto;
}
