/* Variables */
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/* General */
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body {
  font-family: sans-serif;
  background: #000000;
}
a {
  color: #52493F;
  /*text-decoration: none;*/
  transition: 0.3s;
}
a:hover {
  color: #BC9877;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
}
/* General sections */
.section-header {
  text-align: center;
  padding-bottom: 30px;
}
.section-header .header-img {
  max-width: 300px;
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .section-header .header-img {
    max-width: 240px;
  }
}
main {
  background: url("../img/backg/bg-main.png") center top;
  background-size: cover;
}
/* ==========
Boton up
========== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #BC9877;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
  color: #fff;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #52493F;
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
D
========== */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* ==========
Header
========== */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 30px;
}
.header .logo img {
  max-height: 38px;
  margin-right: 6px;
}
.header.sticked {
  background: #38428b;
  padding: 10px 25px;
}
@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}
@media (max-width: 576px) {
  .header .logo img {
    max-height: 28px;
  }
  .header.sticked {
    padding: 10px 0;
  }
}
/* ==========
Nav Desktop
========== */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar li:hover > a {
    color: #fff;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
  }
  .navbar .active {
    color: #fff;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .mobile-nav-show {
    display: none !important;
  }
  .mobile-nav-hide {
    display: none !important;
  }
}
/* ==========
Nav mobile
========== */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(56, 66, 139, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 25px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
  }
  .navbar .active {
    color: #fff;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .navbar li:hover > a {
    color: #fff;
  }
  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}
/* ==========
Hero
========== */
.hero {
  max-width: 100%;
  margin: auto;
  max-height: 1207px;
  overflow: hidden;
  padding: 80px 0 20px;
  background: url("../img/backg/bg-home.png") center left;
  background-size: 100% 100%;
  text-align: center;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero .campania {
  margin-top: 220px;
}
.hero .campania img {
  max-height: 850px;
}
.hero .img-legals {
  text-align: center;
}
.hero .img-legals img {
  margin: auto;
  max-height: 42px;
}
.hero .img-brand {
  text-align: center;
}
.hero .img-brand img {
  margin: auto;
  max-height: 580px;
}
.hero .img-mec {
  margin: 40px auto;
}
.hero .img-mec img {
  margin: auto;
  max-height: 260px;
}
.hero .btn-hero {
  margin-top: 40px;
  margin-bottom: 0;
}
.hero .btn-hero img {
  max-height: 60px;
}
.hero .btn-hero .btn {
  transition: transform 0.2s;
}
.hero .btn-hero .btn:hover {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .hero {
    padding: 60px 0 20px;
    background: url("../img/backg/BKG.png") bottom center;
    background-size: cover;
  }
  .hero .campania {
    margin-top: 0px;
    text-align: center;
  }
  .hero .campania img {
    max-height: 280px;
  }
  .hero .img-legals img {
    max-height: 80px;
  }
  .hero .img-brand img {
    max-height: 300px;
  }
  .hero .img-mec {
    margin: 40px auto 20px;
  }
  .hero .img-mec img {
    margin: auto;
  }
  .hero .btn-hero {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .hero .btn-hero img {
    max-height: 45px;
  }
  .hero .btn-hero .btn {
    transition: transform 0.2s;
  }
  .hero .btn-hero .btn:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .hero {
    padding: 60px 0 20px;
    background: url("../img/backg/bg-home.png") bottom center;
    background-size: cover;
  }
  .hero .campania {
    margin-top: 180px;
    text-align: center;
  }
  .hero .campania img {
    max-height: 450px;
  }
  .hero .img-legals img {
    max-height: 42px;
  }
  .hero .img-brand img {
    max-height: 180px;
  }
  .hero .img-mec {
    margin: 40px auto 20px;
  }
  .hero .img-mec img {
    max-height: 160px;
    margin: auto;
  }
  .hero .btn-hero {
    margin-top: 20px;
  }
  .hero .btn-hero img {
    max-height: 30px;
  }
  .hero .btn-hero .btn {
    transition: transform 0.2s;
  }
  .hero .btn-hero .btn:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .hero {
    max-width: 100%;
    margin: auto;
    max-height: 1207px;
    overflow: hidden;
    padding: 60px 0 20px;
  }
  .hero .campania {
    margin-top: 160px;
  }
  .hero .campania img {
    max-height: 560px;
  }
  .hero .img-legals {
    text-align: center;
  }
  .hero .img-legals img {
    margin: auto;
    max-height: 31px;
  }
  .hero .img-brand {
    text-align: center;
  }
  .hero .img-brand img {
    margin: auto;
    max-height: 320px;
  }
  .hero .img-mec {
    margin: 30px auto 20px;
  }
  .hero .img-mec img {
    margin: auto;
    max-height: 180px;
  }
  .hero .btn-hero {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .hero .btn-hero img {
    max-height: 42px;
  }
  .hero .btn-hero .btn {
    transition: transform 0.2s;
  }
  .hero .btn-hero .btn:hover {
    transform: scale(1.1);
  }
}
/* ==========
Register
========== */
@-webkit-keyframes "up-down" {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes "up-down" {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.registro {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.registro .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.registro .img-dm {
  text-align: center;
}
.registro .img-dm img {
  margin: auto;
  max-height: 480px;
}
.registro .form {
  background-color: #FFFFFF;
  /*backdrop-filter: blur(5px);*/
  margin: 0px auto 0;
  padding: 32px 10% 40px;
  border-radius: 5%;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 700px;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5);
}
.registro .form .nav-tabs {
  border: none;
}
@media (max-width: 991px) {
  .registro .form {
    width: 90%;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .registro .form {
    max-width: 100% !important;
    width: 100%;
    margin-top: 20px;
  }
}
.registro .form input {
  background-color: #FFFFFF;
}
.registro .form input:focus {
  border: 1px solid #52493F;
}
.registro .form label {
  font-size: 14px;
  color: #52493F;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
}
.registro .form label a {
  font-weight: bold;
  color: #000000;
  letter-spacing: normal;
}
.registro .form .form-control,
.registro .form .form-select-sm {
  background-color: rgba(237, 237, 237, 0.3);
  border: solid 1px #52493F;
  color: #BC9877;
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.75;
  border-radius: 8px;
  margin-top: 8%;
  font-weight: 600;
}
.registro .form .form-control::placeholder,
.registro .form .form-select-sm::placeholder {
  text-align: left;
  color: rgba(82, 73, 63, 0.4);
}
.registro .form p {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #52493F;
  font-size: 18px !important;
  line-height: 1;
  font-family: 'title';
}
@media (max-width: 480px) {
  .registro .form p {
    padding: 0px 4% 20px;
  }
}
.registro .form .send {
  background-color: #BC9877;
  border: none;
  border-radius: 10px;
  padding: 15px 12px;
  color: #FFFFFF;
  width: 60%;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.5s;
}
.registro .form .send:hover {
  background-color: #52493F;
  color: white;
}
@media (max-width: 480px) {
  .registro .form .send {
    width: 60%;
    font-size: 12px;
  }
}
.registro .form ul {
  list-style-type: none;
  padding-left: 0;
}
.registro .form ul li {
  display: inline-block;
  width: 100%;
  margin: 20px auto 4px;
}
.registro .form ul li input[type="radio"][id^="cat"],
.registro .form ul li input[type="radio"][id^="pills"] {
  display: none;
}
.registro .form ul li label {
  background-color: #FFFFFF;
  color: #52493F;
  border: 1px solid #fff;
  padding: 8px;
  display: block;
  border-radius: 8px;
  position: relative;
  margin: 4px;
  cursor: pointer;
}
.registro .form ul li label::before {
  background-color: white;
  color: red;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.registro .form ul li label img {
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  border-radius: 4px;
}
.registro .form ul li label span {
  min-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.registro .form ul li :checked + label {
  border-color: #FFFFFF;
  color: #BC9877;
}
.registro .form ul li :checked + label::before {
  content: "✓";
  transform: scale(1);
  z-index: 1;
  line-height: 1.4em;
  font-size: 1.3em;
}
.registro .form ul li :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}
.registro .form ul li :disabled + label {
  opacity: 0.5;
  transform: scale(0.9);
}
.registro .form ul li :disabled + label::before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
  z-index: 1;
  line-height: 1.4em;
  font-size: 1.2m;
}
.registro .form ul li :disabled + label img {
  transform: scale(0.9);
}
.registro .form ul.pills-ul li {
  width: auto;
}
.registro .form ul.pills-ul label {
  padding: 4px 12px;
  border: 1px solid #fff;
  display: block;
  border-radius: 16px;
  position: relative;
  margin: 8px;
  cursor: pointer;
}
.registro .form ul.pills-ul label::before {
  display: none;
}
.registro .form ul.pills-ul :checked + label {
  color: white;
}
.registro .form .nav-tabs li {
  width: 50%;
  font-weight: bold;
  background-color: rgba(237, 219, 202, 0.4);
}
.registro .form .nav-tabs li:nth-child(1) {
  border-radius: 16px 0 0 16px;
}
.registro .form .nav-tabs li:nth-child(2) {
  border-radius: 0 16px 16px 0;
}
.registro .form .nav-tabs li:nth-child(2):hover {
  border-radius: 0 16px 16px 0;
}
.registro .form .nav-tabs li :hover {
  background-color: transparent;
  font-weight: bold;
  color: #52493F;
  border: none;
  transition: none;
}
.registro .form .nav-tabs li button {
  width: 100%;
  color: #52493F;
  font-size: 1em;
  padding: 8px 0px;
  font-weight: bold;
}
.registro .form .nav-tabs li button.active {
  color: #FFFFFF;
  border: none;
  background-color: #BC9877;
  border-radius: 16px;
}
.registro .form .nav-tabs li .nav-link {
  border: 0px solid transparent;
}
.registro .form .legals {
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.registro .form .legals label {
  font-size: 12px;
  font-weight: 100;
  color: #52493F;
}
.registro .form .legals input {
  background-color: rgba(82, 73, 63, 0.6) !important;
  border-radius: 4px !important;
}
.registro .form .legals a {
  color: #52493F;
  font-weight: 900;
}
.registro .form .tab-content {
  width: 80%;
  background-color: transparent;
  max-width: 550px;
  margin: 0 auto;
}
.registro .form .tab-content label {
  margin-bottom: 0px;
}
.registro .hiden {
  display: none !important;
}
@media (max-width: 576px) {
  .registro {
    padding: 60px 0 60px;
  }
  .registro .form {
    padding: 32px 5% 40px;
  }
  .registro .form .tab-content {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .registro {
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
  }
  .registro .img-dm img {
    max-height: 380px;
  }
  .registro .form {
    background-color: #FFFFFF;
    /*backdrop-filter: blur(5px);*/
    margin: 0px auto 0;
    padding: 32px 10% 40px;
    border-radius: 5%;
    position: relative;
    color: black;
    z-index: 2;
    max-width: 650px;
  }
}
.file-upload {
  margin-top: 20px;
}
.file-upload p {
  font-size: 1em !important;
}
.file-upload .image-box {
  margin: 24px auto;
  height: 40px;
  width: 30%;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.5s ease;
}
.file-upload .image-box i {
  color: #BC9877;
  margin-top: 7px;
  font-weight: 700;
  font-size: 1.6em;
}
.file-upload .image-box::after {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  top: -8px;
  left: -8px;
  border-radius: 1.05em;
  border: solid 2px #BC9877;
}
.file-upload .image-box img {
  height: 40px;
  width: 100%;
  border-radius: 8px;
  display: none;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 480px) {
  .file-upload .image-box {
    height: 40px;
    width: 30%;
  }
  .file-upload .image-box img {
    height: 80px;
    width: 100%;
  }
}
.file-upload .image-box p {
  position: relative;
  top: 32%;
  color: #000000;
  font-size: 14px;
  line-height: 1.3em;
  padding: 0 8%;
}
/* ==========
Awwards
========== */
.awwards {
  padding: 120px 0 60px;
  position: relative;
}
.awwards .pil1 {
  width: 95%;
  min-height: 460px;
  margin: 20px auto;
  padding: 40px 20px;
  border-radius: 35px;
  text-align: center;
  background-color: rgba(237, 219, 202, 0.15);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.awwards .pil1 .iconp1 {
  margin: 0 auto;
}
.awwards .pil1 .iconp1 img {
  height: 240px;
  display: block;
}
.awwards .pil1 p {
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #FFFFFF;
  margin-top: 30px;
}
.awwards .pil1 span {
  color: #EDDBCA;
}
.awwards .swiper {
  margin: 0px 25px;
  text-align: center;
  overflow: hidden;
}
.awwards .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.awwards .swiper-pagination .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  background-color: #EDDBCA;
}
.awwards .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #BC9877;
}
@media (max-width: 576px) {
  .awwards .pil1 .iconp {
    margin: 0 auto;
  }
  .awwards .pil1 .iconp img {
    height: 280px;
    display: block;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .awwards .pil1 .iconp {
    margin: 0 auto;
  }
  .awwards .pil1 .iconp img {
    height: 280px;
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .awwards {
    padding: 120px 0 60px;
    position: relative;
  }
  .awwards .pil1 {
    width: 95%;
    min-height: 460px;
    margin: 20px auto;
    padding: 40px 20px;
  }
  .awwards .pil1 .iconp img {
    height: 320px;
  }
  .awwards .pil1 .iconp1 img {
    height: 240px;
  }
  .awwards .pil1 p {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
/* ==========
Products
========== */
.buy {
  padding: 120px 0 60px;
  position: relative;
}
.buy .pil1 {
  width: 95%;
  min-height: 460px;
  margin: 20px auto;
  padding: 40px 20px;
  border-radius: 35px;
  text-align: center;
  background-color: rgba(237, 219, 202, 0.15);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
.buy .pil1:hover {
  transform: translateY(-10px);
}
.buy .pil1 .iconp1 {
  margin: 0 auto;
}
.buy .pil1 .iconp1 img {
  height: 240px;
  display: block;
}
.buy .pil1 p {
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #FFFFFF;
  margin-top: 30px;
}
.buy .pil1 span {
  color: #EDDBCA;
}
.buy .pil1 .btns .draw-border {
  box-shadow: inset 0 0 0 4px #52493F;
  color: #EDDBCA;
  transition: color 0.25s 0.08333333s;
  position: relative;
}
.buy .pil1 .btns .draw-border::before {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-bottom-width: 4px;
  border-left-width: 4px;
}
.buy .pil1 .btns .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-top-width: 4px;
  border-right-width: 4px;
}
.buy .pil1 .btns .draw-border:hover {
  color: #BC9877;
  background: #52493F;
}
.buy .pil1 .btns .draw-border:hover::before {
  border-color: #BC9877;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0s, 0.25s;
}
.buy .pil1 .btns .draw-border:hover::after {
  border-color: #BC9877;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0.25s, 0s;
}
.buy .pil1 .btns .btn {
  margin-top: 20px;
  background: #52493F;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font: 700 1rem "Roboto Slab", sans-serif;
  padding: 0.8em 3em;
  letter-spacing: 0.05rem;
}
.buy .pil1 .btns .btn:focus {
  outline: 2px dotted #FFFFFF;
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .buy {
    padding: 120px 0 60px;
    position: relative;
  }
  .buy .pil1 {
    width: 95%;
    min-height: 460px;
    margin: 20px auto;
    padding: 40px 20px;
  }
  .buy .pil1 .iconp img {
    height: 320px;
  }
  .buy .pil1 .iconp1 img {
    height: 240px;
  }
  .buy .pil1 p {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
/* ==========
Footer
========== */
#footer {
  background-color: #38428b;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  width: 95%;
  margin: auto;
  background: #38428b;
  padding: 30px 0 10px 0;
}
#footer .footer-top .footer-info {
  /*margin: ;*/
}
#footer .footer-top .footer-info p {
  font-size: 18px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #fff;
  width: auto;
}
#footer .footer-top .footer-info span {
  font-size: 22px;
  line-height: 1.4em;
}
#footer .footer-newsletter .logo-1 {
  width: auto;
  height: 40px;
  margin-right: 10px;
}
#footer .footer-newsletter .logo-2 {
  width: 100px;
  height: auto;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
/* ==========
Modal
========== */
.modal-content {
  background: url("../img/backg/bg-main.png") center center;
  background-size: cover;
  border-radius: 15px;
  border: 3px solid #BC9877;
}
.modal-content .modal-body {
  background-color: transparent;
  border: none;
  padding-top: 20px;
  padding-bottom: 0px;
}
.modal-content .modal-body .post-all {
  max-width: 600px;
  margin: 20px auto;
}
.modal-content .modal-body .post-all .inst-post {
  background-color: #FFFFFF;
  padding: 15px;
  border: 3px solid #BC9877;
  border-radius: 8px;
}
.modal-content .modal-body .post-all .inst-post h3 {
  color: #BC9877;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post i {
  vertical-align: middle;
  color: #BC9877;
  font-size: 1.4em;
}
.modal-content .modal-body .post-all .inst-post h5 {
  color: #0E3137;
  font-weight: 900;
  font-size: 1.2em;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post p {
  text-align: center;
  color: #0E3137;
  font-weight: 600;
  font-size: 0.8em;
}
.modal-content .modal-body .post-all .inst-post a {
  color: #0E3137;
}
.modal-content .modal-body .post-all .inst-post a:hover {
  color: #BC9877;
}
.modal-content .modal-body .post-all .img-mod {
  text-align: center;
}
.modal-content .modal-body .post-all .img-mod img {
  height: 350px;
}
.modal-content .modal-footer {
  background-color: transparent;
  border: none;
}
.modal-content .modal-footer a {
  color: #FFFFFF;
  font-weight: 600;
}
.modal-content .modal-footer .btn-secondary {
  background-color: #BC9877;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .modal-content {
    background: url("../img/backg/BG-home.png") center center;
    background-size: cover;
  }
  .modal-content .modal-body {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .modal-content .modal-body .post-all {
    margin: 20px auto;
  }
  .modal-content .modal-body .post-all .inst-post h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .modal-content .modal-body .post-all .inst-post i {
    vertical-align: top;
    font-size: 1.2em;
  }
  .modal-content .modal-body .post-all .inst-post h5 {
    font-size: 1em;
  }
  .modal-content .modal-body .post-all .inst-post p {
    font-size: 0.8em;
  }
  .modal-content .modal-body .post-all .img-mod {
    text-align: center;
  }
  .modal-content .modal-body .post-all .img-mod img {
    height: 250px;
  }
}
.loader-form {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2022;
}
.loader-form .three {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader-form .three .loader {
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* LOADER 6 */
#loader-6 span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #3498db;
  background-color: white;
}
#loader-6 span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}
#loader-6 span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}
#loader-6 span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}
#loader-6 span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}
@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}
.edad {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  z-index: 9999;
  background-image: url(../img/backg/bg-main.png);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.edad h1 {
  color: #BC9877;
  font-weight: 600;
}
.edad .container-decision {
  margin: 1rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
.edad .container-decision button {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 51px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 6rem;
  height: 8rem;
  justify-content: center;
  margin: 0.5rem;
  backdrop-filter: blur(4px);
  background: #52493F;
  border: none;
  cursor: pointer;
  border-radius: 12px;
}
.edad .container-decision button:focus {
  outline: 2px dotted #FFFFFF;
}
.edad .container-decision .draw-border {
  box-shadow: inset 0 0 0 4px #52493F;
  color: #EDDBCA;
  transition: color 0.25s 0.08333333s;
  position: relative;
}
.edad .container-decision .draw-border::before {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-bottom-width: 4px;
  border-left-width: 4px;
}
.edad .container-decision .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-top-width: 4px;
  border-right-width: 4px;
}
.edad .container-decision .draw-border:hover {
  color: #BC9877;
  background: #52493F;
}
.edad .container-decision .draw-border:hover::before {
  border-color: #BC9877;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0s, 0.25s;
}
.edad .container-decision .draw-border:hover::after {
  border-color: #BC9877;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0.25s, 0s;
}
.edad .footer-edad {
  background-color: #38428b;
  padding: 8px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.edad .footer-edad .row {
  align-items: center;
}
.edad .footer-edad img {
  height: 40px;
}
#Tablewiners .cont-w {
  padding-top: 120px;
  padding-bottom: 80px;
}
#Tablewiners h2 {
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 45px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: -2px -2px 0 #BC9877, 2px -2px 0 #BC9877, -2px 2px 0 #BC9877, 2px 2px 0 #BC9877;
}
@media (max-width: 480px) {
  #Tablewiners h2 {
    font-size: 35px;
  }
}
#Tablewiners.interno {
  padding-top: 0px;
}
@media (max-width: 480px) {
  #Tablewiners.interno h2 {
    font-size: 35px;
  }
}
#Tablewiners .overfl {
  overflow: auto;
  max-width: 650px !important;
  margin: 0 auto;
}
#Tablewiners table th {
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.3em;
  background-color: #BC9877;
}
#Tablewiners table td {
  font-size: 1.1em;
  text-align: center;
  padding: 15px;
}
@media (min-width: 768px) {
  #Tablewiners {
    /*background: url("../img/backg/BG_productos.png") top center;
	    background-size: cover;*/
    /*background-attachment: fixed;*/
  }
  #Tablewiners .cont-w {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
