@import "./root.css?ver=1";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"Futura Book";
}
body {
  font-family: Arial, sans-serif;
  background: url('/assets/images/bg/bg_1.jpg');
  background-size: auto;
/*  color: white;*/
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.bg-header {
    background: linear-gradient(180deg, var(--oscuro) 30%, var(--sombra));
    box-shadow: black 5px 0px 15px;
}
header .logo img {
    width: 70px;
}
header nav ul {
    display: flex;
    list-style: none;
}
header nav ul li {
    margin: 0 15px;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
}
header .sponsors{
    display: flex;
    align-items: center;
}
header .sponsors img {
    width: 40px;
}
.navbar-toggler-icon{
    filter: brightness(0) invert(1);
}
main {
    text-align: center;
    padding: 30px 0 10px;
}
.comprar-tickets{
    justify-content: center;
}
.comprar-tickets a {
    display: inline-flex;
    max-width: max-content;
    padding: 5px 25px;
    margin: 0px 0px 10px;
    background: linear-gradient(180deg, var(--claro) 15%, var(--oscuro));
    color: white!important;
    font-size: 1em;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: var(--sombra) 0px -1px 15px;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease-in-out;
}
.comprar-tickets a i{
    margin-right: 10px;
}
.comprar-tickets a:hover {
    font-weight: bolder;
    cursor: pointer;
}
.btn-ticket {
    background: linear-gradient(180deg, var(--claro) 15%, var(--oscuro));
    border-radius: 24px;
    padding: 10px 15px;
    text-decoration: none;
    color: white!important;
    box-shadow: var(--sombra) 0px -1px 26px;
    transition: all 0.25s linear;
}
.btn-ticket:hover {
    color: white;
    font-weight: bolder;
}
.nav{
    align-items: center;
}
.whatsapp {
    position:fixed;
    bottom:60px;
    right:30px;
    /* background-color:#25d366; */
    color:#FFF;
    text-align:center;
    z-index:100;
}
.whatsapp img{
    width:80px;
    height:80px;
}
.social-links{
    color: white;
}
.social_links_footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}
.social_links_footer ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_links_footer ul li img {
    display: block;
    max-width: 40px;
}
footer .img-brand{
    max-height: 30px;
    margin: 15px 0;
}
footer .footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}
.footer-links{
    margin: 30px 0;
    flex-direction: column;
    align-items: center;
}
footer p {
  margin-top: 20px;
  font-size: 0.9em;
}
.w-80{
    width: 80% !important;
}
.w-90{
    width: 90% !important;
}
@media (min-width: 768px){
    .social_links_footer ul li img {
        max-width: 65px;
    }
}
@media (min-width: 992px){
  body{
    background-size: contain;
  }
    main {
        padding: 20px 0;
    }
    header .sponsors img {
        width: 60px;
    }
    footer .img-brand{
        max-height: 70px;
    }
    .w-lg-75{
        width: 75% !important;
    }
    .w-lg-100{
        width: 100% !important;
    }
    /* .comprar-tickets{
        margin-top: 45px;
    } */
    .comprar-tickets a {
        font-size: 1.5em;
    }
    footer {
        padding: 20px 0 30px;
        margin-top: 10px;
    }
}
@media (max-width: 991px){
    .navbar-collapse{
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0px;
        bottom: 0px;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        padding: 80px 15px;
        background: linear-gradient(180deg, var(--oscuro) 30%, var(--sombra));
        transform: translateX(-100%);
        transition: all .4s ease;
    }
    .navbar-collapse.show{
        transform: translateX(0);
    }
    .navbar-collapse .navbar-nav{
        height: 100%;
        width: 100%;
        align-items: flex-start;
    }
    .navbar-collapse .navbar-nav li:not(:last-child){
        margin-bottom: 5px;
    }
    .navbar-collapse .navbar-nav li:last-child{
        margin-top: 15px;
    }
    .navbar-collapse .navbar-nav li a:not(.btn){
        display: block;
        color: #fff;
        padding: 10px 0;
    }
    .navbar-collapse .navbar-toggler{
        margin-left: auto;
        margin-bottom: 30px
    }
    .navbar-collapse .navbar-toggler svg{
        width: 20px;
        height: 20px;
    }
}

/*FOOTER CSS*/
#footer{
    background: var(--sombra);
    padding: 2rem 3rem;
}
.social-links h2{
    padding-bottom: 15px;
    font-size: 20px;
  font-weight: 600;
}
.social-links img{
    padding-bottom: 25px;
}
.social-icons{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
}
.social-icons a{
    color: #fff;
}
.social-icons a:hover{
    color: #000;
}
.social-icons a i{
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #82074a;
    font-size: 16px;
    margin-right: 12px;
}
li{
    list-style: none;
}
.useful-link h2{
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}
.useful-link img{
    padding-bottom: 15px;
}
.use-links{
    line-height: 32px;    
}
.use-links li i{
    font-size: 14px;
    padding-right: 8px;
    color: #898989;
}
.use-links li a{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.use-links li a:hover{
    color: #000;
}
.address h2{
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}
.address img{
    padding-bottom: 15px;
}
.address-links li a{
    font-size: 15px;
    font-weight: 500;
    color: #fff;

}
.address-links li i{
    font-size: 16px;
    padding-right: 8px;
    color: #82074a;
}
.address-links li i:nth-child(1){
    padding-top: 9px;
}
.address-links .address1{
    font-weight: 500;
    font-size: 15px;
    display: flex;
}
.address-links{
    line-height: 32px;
    color: #fff;
}
.copy-right-sec{
    padding: 1.8rem;
    background: var(--oscuro);
    color: #fff;
    text-align: center;
}
.copy-right-sec a{
    color: #fcd462;
    font-weight: 500;
}
a{
    text-decoration:none;
}

.wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.wrapper:focus {
  outline: 0;
}

.clash-card {
  background: white;
  width: 330px;
  display: inline-block;
  margin: auto;
  border-radius: 19px;
  position: relative;
  text-align: center;
  box-shadow: -1px 15px 30px -12px black;
  z-index: 99;
}

.clash-card__image {
  position: relative;
  height: 230px;
  margin-bottom: 35px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.clash-card__image--barbarian {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/barbarian-bg.jpg");
  background-size: cover;
}
.clash-card__image--barbarian img {
  width: 300px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.clash-card__level {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.clash-card__level--barbarian {
  color: #EC9B3B;
}

.clash-card__unit-name {
  font-size: 26px;
  color: black;
  font-weight: 900;
  margin-bottom: 5px;
}

.clash-card__unit-description {
  padding: 20px;
  margin-bottom: 10px;
}

.clash-card__unit-stats--barbarian {
  background: var(--sombra);
}
.clash-card__unit-stats--barbarian .one-third {
  border-right: 1px solid #BD7C2F;
}

.clash-card__unit-stats {
  color: white;
  font-weight: 700;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.clash-card__unit-stats .one-third {
  width: 33%;
  float: left;
  padding: 20px 15px;
}
.clash-card__unit-stats sup {
  position: absolute;
  bottom: 4px;
  font-size: 45%;
  margin-left: 2px;
}
.clash-card__unit-stats .stat {
  position: relative;
  font-size: 22px;
  margin-bottom: 10px;
}
.clash-card__unit-stats .stat-value {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
}
.clash-card__unit-stats .no-border {
  border-right: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}