body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
}
.navbar-brand {
    width: 300px;
} 
.nav-link {
    font-size: 12px !important;
}
.buttons-container {
    display: flex;
    gap : 1em;
}
.home-banner-section {
    padding-top: 3em;
}
.custom-navbar {
    display: flex;
    gap: 3em;
}
/* .video-aws, .video-aws-mobile{
    border-radius: 10px;
}
.video-aws-mobile {
    display: none;
} */
.cards-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    padding: 80px 0px;
}
.cards-banner {
    display: flex;
    width: 160px;
    height: 200px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cards-banner * {
    margin: 0;
}

.cards-container h2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #ffcb48;
    background-color: #181818;
    text-align: center;
}
.cards-container p{
    font-size: 12px;
    line-height : 1.75;
    color: rgb(161, 161, 161);
    }

.footer-simple {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #0f0f0f;
}
.footer-simple  p{
    color: gray;
    font-size: 13px;
}
.speakers-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap :20px;
    flex-wrap: wrap;
    width: 100%;
}
.speaker {
    width: 250px;
    height: 300px;
}
.flip-card {
    background-color: transparent;
    width: 250px;
    height: 300px;
    perspective: 1000px;
    font-family: sans-serif;
}

.title {    
    color: #0f0f0f;
    font-size: 1.5rem;
    font-family: economica, sans-serif;
    font-weight: 900;
    text-align: center;
    margin: 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front {
    box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgb(0, 0, 0);
}
.flip-card-front img {
    object-fit: cover;
    height: 85%;
    border-radius: 10px 10px 0 0;
} 
.flip-card-front h5 {
    font-size: 15px;
    line-height: 1.25;
    margin: 0;
    padding-bottom: 8px;
} 

.flip-card-back {
    box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: white;
    transform: rotateY(180deg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.flip-card-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  inherit;
    filter: blur(2.5px);
    z-index: -1;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Teams */

.ctf-info p {
    font-size: 15px;
}
.ctf-teams {
    gap: 50px;
    justify-content: center;
    
}

.red_team, .blue_team {
    background-image: linear-gradient(163deg, #ca2f30 0%, #E6537E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    transition: all 0.3s;
}
.red_team {
    background-image: linear-gradient(163deg, #ca2f30 0%, #E6537E 100%);
}
.blue_team {
    background-image: linear-gradient(163deg, #0021df 0%, #587efa 100%);
}

.red_team_2 ,.blue_team_2 {
    border: white 1px solid;
    width: 300px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 10px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 50px 20px;
}

.red_team_2:hover, .blue_team_2:hover {
    transform: scale(0.98);
    border-radius: 10px;
    border: #0f0f0f 0px solid;
}
.red_team:hover {
    box-shadow: 0px 0px 20px 1px #ca2f30;
    animation: shake 0.3s;
}

.blue_team:hover {
    box-shadow: 0px 0px 20px 1px #0021df;
    animation: shake 0.3s;
}

.tittle-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: center;
    flex-direction: column;
}
.tittle-bar h3 {
    margin: 0;
}
.tittle-bar div {
    width: 45%;
    height: 5px;
    background: linear-gradient(90deg, #ffcb48 0%, #ff6f00 100%);
    align-self: center;
    margin-bottom: 20px;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}


.red_team_2 *,
.blue_team_2 *{
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
}

.red_team:hover h3 {
    color: #ca2f30;
}
.red_team:hover h4 {
    color: #E6537E;
}
.red_team:hover p {
    color: #E6537E;
}


.blue_team:hover h3 {
    color: #0021df;
}
.blue_team:hover h4 {
    color: #587efa;
}
.blue_team:hover p {
    color: #587efa;
}
.red_team *, .blue_team * {
    text-align: center;
}

button,button::after {
    padding: 10px 50px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    position: relative;
}

button::after {
--move1: inset(50% 50% 50% 50%);
--move2: inset(31% 0 40% 0);
--move3: inset(39% 0 15% 0);
--move4: inset(45% 0 40% 0);
--move5: inset(45% 0 6% 0);
--move6: inset(14% 0 61% 0);
clip-path: var(--move1);
content: 'PARTICIPAR';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
}

button:hover::after {
animation: glitch_4011 1s;
text-shadow: 10 10px 10px black;
animation-timing-function: steps(2, end);
text-shadow: -3px -3px 0px #1df2f0, 3px 3px 0px #E94BE8;
background-color: transparent;
border: 3px solid rgb(0, 255, 213);
}

button:hover {
text-shadow: -1px -1px 0px #1df2f0, 1px 1px 0px #E94BE8;
}

button:hover {
background-color: transparent;
border: 1px solid rgb(0, 255, 213);
box-shadow: 0px 10px 10px -10px rgb(0, 255, 213);
}

@keyframes glitch_4011 {
    0% {
        clip-path: var(--move1);
        transform: translate(0px,-10px);
    }

    10% {
        clip-path: var(--move2);
        transform: translate(-10px,10px);
    }

    20% {
        clip-path: var(--move3);
        transform: translate(10px,0px);
    }

    30% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }

    40% {
        clip-path: var(--move5);
        transform: translate(10px,-10px);
    }

    50% {
        clip-path: var(--move6);
        transform: translate(-10px,10px);
    }

    60% {
        clip-path: var(--move1);
        transform: translate(10px,-10px);
    }

    70% {
        clip-path: var(--move3);
        transform: translate(-10px,10px);
    }

    80% {
        clip-path: var(--move2);
        transform: translate(10px,-10px);
    }

    90% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }

    100% {
        clip-path: var(--move1);
        transform: translate(0);
    }
}
.sponsorship-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 0px;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.nft h2 {
    font-size: 20px;
    text-align: center;
    margin: 0;

}
.nft{
    display: flex;
    flex-direction: column;
    align-items: center;
    
user-select:none;
width: 280px;
height: 200px;
border: 1px solid #ffffff22;
background-color: #282c34;
background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(59, 59, 59, 0.5) 100%);
box-shadow: 0 7px 20px 5px #00000088;
border-radius: .7rem;
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
overflow: hidden;
transition: .5s all;
hr{
    width: 100%;
    border: none;
    border-bottom: 1px solid #88888855;
    margin-top: 0;
}

.main{
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 1rem;
    .tokenImage{
    border-radius: .5rem;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    }
    .description{
    margin: .5rem 0;
    color: #a89ec9;
    }
    .tokenInfo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    .price{
        display: flex;
        align-items: center;
        color: #ee83e5;
        font-weight: 700;
        ins{
        margin-left: -.3rem;
        margin-right: .5rem;
        }
    }
    }
}
::before{
    position: fixed;
    content: "";
    box-shadow: 0 0 100px 40px #ffffff08;
    top: -10%;
    left: -100%;
    transform: rotate(-45deg);
    height: 60rem;
    transition: .7s all;
}
&:hover{
    border: 1px solid #ffffff44;
    box-shadow: 0 7px 50px 10px #000000aa;
    transform: scale(1.015);
    filter: brightness(1.3);
    ::before{
    filter: brightness(.5);
    top: -100%;
    left: 200%;
    }
}
}

.bg{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
h1{
    font-size: 20rem;
    filter: opacity(0.5);
}
}


@media screen and (max-width: 850px) {
    .cards-container {
        gap: 30px;  
    }
    .navbar-brand {
        width: 200px;
        padding: 0 0 0 1em;
    }
    .buttons-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
/*     .video-aws {
        display: none;
    }
    .video-aws-mobile {
        display: block;
    } */
    .home-banner-section {
        padding-top: 1em;
    }
    .custom-navbar {
        display: block;
    }
    .speaker-social-icons, .speaker-social .social-icons{
        margin-right: 20px !important;
    }
    .social-icons {
        padding: 0 !important;
        margin :0 !important;
    }
    .speaker {
        width: 150px;
        height: 180px;
    }
    .speakers-cards {
        gap :15px 15px;
    }
    .flip-card {
        background-color: transparent;
        width: 150px;
        height: 180px;
        perspective: 1000px;
        font-family: sans-serif;
    }

    .social-icons-container {
        display: flex;
        justify-content: center;
        gap:5px;
    }
    .banner-btn {
        margin-bottom: 50px;
    }
      /* Teams */
    .ctf-teams {
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        align-self: center;
    }
    .red_team, .blue_team {
        width: 250px;
        height: 350px;
    }
    
    .red_team_2 ,.blue_team_2 {
        width: 250px;
        height: 350px;
        padding: 50px 20px 50px 20px;
    }
    .flip-card-front h5 {
        padding-bottom: 4px;
    } 
}