/* VARIABLES CSS COLOR */
:root {
    --c_dark_grey: #404041;
    --c_medium_grey: #CCCCCC;
    --c_grey: #F6F6F6;
    --c_ultra: #260F54;
    --c_dark: #2E155E;
    --c_bold: #5D2ABC;
    --c_medium: #9E7FD7;
    --c_light: #BEAAE4;
    --c_thin: #DFD4F2;
}
/* FONTS */
@font-face {
  font-family: Anurati;
  src: url(../font/Anurati-Regular.otf);
}
@font-face {
  font-family: Prime-Light;
  src: url(../font/Prime-Light.woff);
}
@font-face {
  font-family: Prime-Regular;
  src: url(../font/Prime-Regular.woff);
}
@font-face {
  font-family: Digital-7;
  src: url(../font/digital-7.ttf);
}
/* ESTILOS GENERALES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    background: var(--c_grey);
    overflow: hidden;
}
/* ANIMATIONS */
@-webkit-keyframes glitch {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    -webkit-filter: hue-rotate(0deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
            filter: hue-rotate(0deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
    opacity: 1;
  }
  20% {
    -webkit-transform: translate(12px, 0px);
            transform: translate(12px, 0px);
  }
  40% {
    -webkit-transform: translate(-12px, 0px);
            transform: translate(-12px, 0px);
  }
  50% {
    opacity: 0.25;
  }
  60% {
    -webkit-transform: translate(12px, 0 px);
            transform: translate(12px, 0 px);
  }
  80% {
    -webkit-transform: translate(-12px, 0px);
            transform: translate(-12px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    -webkit-filter: hue-rotate(360deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
            filter: hue-rotate(360deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
    opacity: 1;
  }
}
@keyframes glitch {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    -webkit-filter: hue-rotate(0deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
            filter: hue-rotate(0deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
    opacity: 1;
  }
  20% {
    -webkit-transform: translate(12px, 0px);
            transform: translate(12px, 0px);
  }
  40% {
    -webkit-transform: translate(-12px, 0px);
            transform: translate(-12px, 0px);
  }
  50% {
    opacity: 0.25;
  }
  60% {
    -webkit-transform: translate(12px, 0 px);
            transform: translate(12px, 0 px);
  }
  80% {
    -webkit-transform: translate(-12px, 0px);
            transform: translate(-12px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    -webkit-filter: hue-rotate(360deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
            filter: hue-rotate(360deg) brightness(0.75) contrast(112.5%) saturate(112.5%);
    opacity: 1;
  }
}
@keyframes line-anim {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes fill {
    from {
        fill: transparent;
    }
    to {
        fill: #DFD4F2;
    }
}
@keyframes fill-2 {
    from {
        fill: transparent;
    }
    to {
        fill: #FFF;
    }
}
@keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    -webkit-transform: translateY(3vh);
            transform: translateY(3vh);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: translateY(5vh);
            transform: translateY(5vh);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(7.5vh) scale(0.5);
            transform: translateY(7.5vh) scale(0.5);
  }
}
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1025px) {
/* NAVIGATION */
header {
    position: absolute;
    z-index: 1;
    width: 10%;
    height: 100vh;
}
header nav {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header nav ul {
    width: 60%;
    margin: auto;
    list-style: none;
}
header nav ul li {
    width: 100%;
    padding: 1.5vh 0vw 7vh 0vw;
    border-top: 0.1vh solid var(--c_medium_grey);
}
header nav ul li:last-child {
    padding-bottom: 0;
}
header nav ul li a {
    font-family: Prime-Regular;
    font-size: 0.65vw;
    width: 100%;
    color: var(--c_bold);
    text-decoration: none;
    letter-spacing: 0.2vw;
    text-transform: uppercase;
}
header nav ul li a i {
    display: none;
}
/* TABS */
main {
    position: absolute;
    width: 90%;
    height: 98vh;
    background: var(--c_bold);
    z-index: 1;
    right: 0;
    top: 1%;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}
/* TAB HOME */
main #tab1 {
    position: relative;
    width: 100%;
    height: 98vh;
    overflow-y: auto;
    z-index: 100;
}
main #tab1::-webkit-scrollbar {
    display: none;
}
main #tab1 .home-bg {
    display: none;
}
main #tab1 .container__center {
    position: fixed;
    width: 100%;
    height: 98vh;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    top: 1vh;
}
main #tab1 .container__center .container__gallery {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: transparent;
}
main #tab1 .container__gallery--glitch {
  -webkit-animation: glitch 250ms forwards;
          animation: glitch 250ms forwards;
}
main #tab1 .container__center .ctrl {
  display: none;
}
main #tab1 .ctrl__al, .ctrl__ar {
  display: none;
}
main #tab1 .ctrl__bottom {
  display: none;
}
main #tab1 .ctrl__pause {
  display: none;
}
main #tab1 .ctrl__dash {
  display: none;
}
main #tab1 .ctrl__dash--select {
  display: none;
}
main #tab1 #home {
        width: 100%;
        height: 98vh;
        overflow: hidden;
    }
main #tab1 #home .container {
    position: absolute;
    width: 50%;
    height: auto;
    top: 50%;
    transform: translate(0,-50%);
    padding-left: 3vw;
}
main #tab1 #home .container .titles svg {
    width: 35vw;
    height: auto;
    display: block;
    box-sizing: border-box;
}
main #tab1 #home .container .text-s {
    display: block;
    font-size: 0.8vw;
    margin-bottom: 0;
    color: var(--c_medium);
    font-family: Prime-Light;
    text-transform: uppercase;
    letter-spacing: 0.585vw;
}
main #tab1 #home .container .text {
    display: block;
    font-size: 1.1vw;
    color: var(--c_light);
    font-family: Prime-Regular;
    text-transform: uppercase;
    margin-top: 2vh;
    letter-spacing: 0.25vw;
}
main #tab1 #home .container .social-network {
    width: 45%;
    margin-top: 5vh;
}
main #tab1 #home .container .social-network ul {
    list-style: none;
    display: flex;
    margin-top: 1vh;
    border: 0.1vw solid var(--c_thin);
    border-bottom-left-radius: 1vw;
    justify-content: space-around;
}
main #tab1 #home .container .social-network ul li {
    padding-top: 1.5vh;
    padding-bottom: 1.5vh;
}
main #tab1 #home .container .social-network ul li a {
    font-size: 1vw;
    text-decoration: none;
    color: var(--c_thin);
}
main #tab1 #home .button-scroll .arrow {
    position: relative;
    display: box;
    display: block;
    margin-bottom: 87vh;
    left: 50%;
}
main #tab1 #home .button-scroll .arrow .chevron {
  position: absolute;
  width: 4vw;
  height: 1.5vh;
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
          animation: move-chevron 3s ease-out infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
          animation: move-chevron 3s ease-out 1s infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
          animation: move-chevron 3s ease-out 2s infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:before,
main #tab1 #home .button-scroll .arrow .chevron:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--c_thin);
}
main #tab1 #home .button-scroll .arrow .chevron:before {
  left: 0;
  -webkit-transform: skewY(30deg);
          transform: skewY(30deg);
}
main #tab1 #home .button-scroll .arrow .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skewY(-30deg);
          transform: skewY(-30deg);
}
main #tab1 #home footer {
    position: absolute;
    bottom: 1vh;
    text-align: center;
    width: 45%;
}
main #tab1 #home footer span {
    padding: 0vh 0vw 0.5vh 0vw;
    display: block;
    font-family: Prime-Light;
    color: var(--c_medium);
    letter-spacing: 0.1vw;
    font-size: 0.8vw;
}
main #tab1 #home footer a {
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_light);
    letter-spacing: 0.1vw;
    margin-right: 3vw;
    font-size: 0.85vw;
}
main #tab1 #home footer a:last-child {
    margin-right: 0;
}
main #tab1 #sponsor {
    width: 100%;
    height: 98vh;
    position: relative;
    overflow: hidden;
    }
main #tab1 #sponsor .title {
        position: absolute;
        z-index: 20;
        width: 100%;
        margin: 0;
        padding-top: 30vh;
        padding-left: 5vw;
        font-family: Prime-Light;
        text-transform: uppercase;
        letter-spacing: 1.5vw;
        font-size: 1.2vw;
        color: var(--c_medium);
    }
main #tab1 #sponsor .title:after {
        content: '';
        position: absolute;
        display: block;
        width: 10vw;
        height: 0.3vh;
        background: var(--c_light);
        margin-top: 2vh;
    }
main #tab1 #sponsor a {
        text-decoration: none;
        color: var(--c_bold);
    }
main #tab1 #sponsor a .up {
        position: absolute;
        display: block;
        bottom: 1.5vh;
        right: 1vw;
        width: 3vw;
        height: 6vh;
        z-index: 99;
        text-align: center;
        line-height: 6vh;
        background: white;
        border-bottom-left-radius: 1vw;
    }
/* LETTERS GDR */
#letters {
    animation: fill 0.5s ease forwards 3s;
}
#letters path:nth-child(2){
    stroke-dasharray: 426px;
    stroke-dashoffset: 426px;
    animation: line-anim 2s ease forwards;
}
#letters path:nth-child(3){
    stroke-dasharray: 294px;
    stroke-dashoffset: 294px;
    animation: line-anim 2s ease forwards 0.1s;
}
#letters path:nth-child(4){
    stroke-dasharray: 214px;
    stroke-dashoffset: 214px;
    animation: line-anim 2s ease forwards 0.2s;
}
#letters path:nth-child(5){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.3s;
}
#letters path:nth-child(6){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.4s;
}
#letters path:nth-child(7){
    stroke-dasharray: 276px;
    stroke-dashoffset: 276px;
    animation: line-anim 2s ease forwards 0.5s;
}
#letters path:nth-child(8){
    stroke-dasharray: 329px;
    stroke-dashoffset: 329px;
    animation: line-anim 2s ease forwards 0.6s;
}
#letters path:nth-child(9){
    stroke-dasharray: 137px;
    stroke-dashoffset: 137px;
    animation: line-anim 2s ease forwards 0.7s;
}
#letters path:nth-child(10){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.8s;
}
#letters path:nth-child(11){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 0.9s;
}
#letters path:nth-child(12){
    stroke-dasharray: 444px;
    stroke-dashoffset: 444px;
    animation: line-anim 2s ease forwards 1s;
}
#letters path:nth-child(13){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 1.1s;
}
#letters path:nth-child(14){
    stroke-dasharray: 245px;
    stroke-dashoffset: 245px;
    animation: line-anim 2s ease forwards 1.2s;
}
#letters path:nth-child(15){
    stroke-dasharray: 278px;
    stroke-dashoffset: 278px;
    animation: line-anim 2s ease forwards 1.3s;
}
/* TORNEO */
main #tab2 {
    position: relative;
    scroll-behavior: smooth;
}
main #tab2 .background-event {
    position: absolute;
    width: 100%;
    height: 98vh;
}
canvas {
    position: absolute;
    background: linear-gradient(330deg, rgba(46,21,94,1) 0%, rgba(65,31,134,1) 100%);
}
main #tab2 .section.one .content{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: relative;
    }
main #tab2 .section.one .titles {
        width: 50%;
        text-align: center;
    }
main #tab2 .section.one .ieee {
        width: 12vw;
        display: block;
        margin: auto;
    }
main #tab2 .section.one p{
        padding-top: 2vh;
        font-family: Prime-Regular;
        color: var(--c_thin);
        font-size: 1vw;
        text-transform: uppercase;
        letter-spacing: 0.2vw;
    }
main #tab2 .section.one .gdr {
        width: 40vw;
        display: block;
        margin: auto;
    }
main #tab2 .section.one .info {
        display: block;
        width: 80%;
        padding-top: 2vh;
        padding-bottom: 5vh;
        margin: auto;
        margin-top: 5vh;
        border-top-left-radius: 10vw;
        border-top-right-radius: 10vw;
    }
main #tab2 .section.one .info:before {
        content: '';
        display: block;
        width: 10vw;
        height: 0.5vh;
        border-radius: 50%;
        background: var(--c_light);
        position: relative;
        left: 35%;
        top: -3vh;
    }
main #tab2 .section.one .info p {
        font-size: 3vw;
        padding: 0.5vw;
        padding-bottom: 0;
        font-family: Digital-7;
        letter-spacing: 0.6vw;
        color: var(--c_grey);
    }
main #tab2 .section.one .info p.city {
        font-family: Prime;
        letter-spacing: 0.6vw;
        color: var(--c_medium);
        margin-bottom: -1vh;
        font-size: 1.5vw;
    }    
main #tab2 .section.one .poster {
        display: block;
        width: 50%;
        height: 100%;
        padding-top: 5vh;
        padding-bottom: 5vh;
        padding-right: 4vw;
        padding-left: 0;
        margin-top: -1vh;
    }
main #tab2 .section.one .poster .poster-glass {
        width: 100%;
        height: 100%;
        position: relative;
        background: rgba(255,255,255,0.1);
        overflow: hidden;
    }
main #tab2 .section.two .slide_event .content {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: relative;
        text-align: center;
    }
main #tab2 .section.two .slide_event .content .table {
        width: 50%;
    }
main #tab2 .section.two .slide_event .content .table .box {
        display: flex;
        width: 80%;
        margin-left: 17%;
        background: rgba(255,255,255,0.3);
        border: 1px solid #fff;
        border-bottom-left-radius: 1vw;
        margin-bottom: 2vh;
    }
main #tab2 .section.two .slide_event .content .table .box:last-child {
        margin-bottom: 0;
    }
main #tab2 .section.two .slide_event .content .table .box .name {
        display: block;
        padding-top: 2vh;
        padding-bottom: 2vh;
        text-align: center;
        width: 50%;
        font-family: Prime-Regular;
        color: var(--c_ultra);
        font-size: 1vw;
    }
main #tab2 .section.two .slide_event .content .table .box .price {
        display: block;
        width: 25%;
        font-family: Prime-Light;
        color: var(--c_ultra);
        padding-top: 2vh;
        padding-bottom: 2vh;
        font-size: 1vw;
        text-align: center;
    }
main #tab2 .section.two .slide_event .content .table .box .button {
        display: block;
        width: 25%;
        padding-top: 2vh;
        padding-bottom: 2vh;
        text-decoration: none;
        color: var(--c_ultra);
        text-transform: uppercase;
        background: rgba(255,255,255,0.3);
        font-family: Anurati;
        font-size: 0.9vw;
    }
main #tab2 .section.two .slide_event .content .category {
        width: 50%;
        overflow: hidden;
    }
main #tab2 .section.two .slide_event .content .category img {
        position: absolute;
        width: 40vw;
        top: 10%;
        left: 53%;
        opacity: 0;
    }
main #tab2 .section.two .slide_event .content .category .name {
        color: var(--c_thin);
        font-family: Prime-Light;
        text-transform: uppercase;
        font-size: 2.5vw;
        letter-spacing: 0.5vw;
        position: relative;
        text-align: left;
        padding-left: 2vw;
    }
main #tab2 .section.two .slide_event .content .category .name:before {
        content: '';
        position: absolute;
        background: var(--c_thin);
        width: 5vw;
        height: 0.2vh;
        top: 3vw;
    }
main #tab2 .section.two .slide_event .content .category .slogan {
        color: var(--c_light);
        font-family: Prime-Regular;
        font-size: 1vw;
        margin-top: 3vh;
        text-align: left;
        padding-left: 2vw;
    }
main #tab2 .container section#two .container .references {
        position: absolute;
        width: 40%;
        bottom: 20px;
        left: 50px;
        padding: 10px 0px 10px 15px;
        border-left: 1px solid var(--c_light);
        color: var(--c_light);
        font-family: Prime-Regular;
        font-size: 0.84vw;
    }
main #tab2 .section.three .content,
main #tab2 .section.four .content {
    width: 100%;
    text-align: center;
    align-content: center;
    justify-content: center;
}
main #tab2 .section.three .content h5,
main #tab2 .section.four .content h5 {
    font-size: 1.3vw;
    color: var(--c_medium);
    font-family: Prime-Regular;
    text-transform: uppercase;
}
main #tab2 .section.three .content h1,
main #tab2 .section.four .content h1 {
    font-family: Prime-Light;
    color: var(--c_light);
    font-size: 3vw;
    text-transform: uppercase;
}
main #tab2 .section.three .content p,
main #tab2 .section.four .content p {
    font-family: Prime-Light;
    color: var(--c_ultra);
    font-size: 1vw;
}
main #tab2 .section.three .content p::after,
main #tab2 .section.four .content p::after {
    content: '';
    position: relative;
    display: block;
    height: 0.1vh;
    width: 10vw;
    margin: auto;
    background: var(--c_thin);
    margin-top: 2vh;
}

/* 2020 */
#anio {
    width: 15vw;
    height: auto;
    animation: fill-2 0.5s ease forwards 2.5s;
}
#anio path{
    stroke-dasharray: 495px;
    stroke-dashoffset: 495px;
    animation: line-anim 2.5s ease forwards;
}
/* ABOUT */
main #tab3 {
        width: 100%;
        height: 98vh;
        overflow-x: hidden;
    }
main #tab3 .bg-about {
    position: absolute;
    width: 100%;
    height: 98vh;
    z-index: 0;
    background-image: url(../img/background_full/torneo_1_.jpg);
    background-size: cover;
    background-position: center;
}
main #tab3 .container {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}
main #tab3 .container .titles {
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 8vh;
        font-size: 1vw;
        font-family: Prime-Regular;
        margin: auto;
        color: var(--c_thin);
    }
main #tab3 .container .titles i {
        position: relative;
        display: inline-block;
        width: 75px;
        height: 1px;
        top: -0.4vw;
        background: var(--c_thin);
        margin-left: 10px;
        margin-right: 10px;
    }
main #tab3 .container .logo img {
        display: block;
        width: 35%;
        margin: auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
    }
main #tab3 .container .logo span {
        padding-bottom: 3vh;
        color: var(--c_thin);
        font-family: Prime-Light;
        display: block;
        width: 60%;
        margin: auto;
        text-align: center;
        font-size: 1vw;
        border-bottom: 1px solid var(--c_thin);
        letter-spacing: 2px;
    }
main #tab3 .container .info {
        display: block;
        margin: auto;
        width: 85%;
        margin-top: 4vh;
    }
main #tab3 .container .info .row {
        width: 100%;
        display: flex;
        position: relative;
    }
main #tab3 .container .info .row .card {
        width: 25%;
        height: 13vh;
        border: 1px solid var(--c_medium);
        position: relative;
    }
main #tab3 .container .info .row .card .name {
        margin: 15px 20px 0 0px;
        font-family: Prime-Light;
        font-size: 1vw;
        padding: 5px 0 5px 20px;
        color: var(--c_light);
        border-left: 3px solid var(--c_light);
        letter-spacing: 1px;
    }
main #tab3 .container .info .row .card .tag {
        font-family: Prime-Regular;
        font-size: 0.8vw;
        padding: 0px 0 0px 22px;
        color: var(--c_ultra);
        text-transform: uppercase;
    }
main #tab3 footer {
    margin-top: 5vh;
        text-align: center;
        width: 100%;
    }
main #tab3 footer span {
    padding: 10px;
    display: block;
    font-family: Prime-Light;
    color: var(--c_medium);
    letter-spacing: 2px;
    font-size: 0.8vw;
}
main #tab3 footer a {
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_light);
    letter-spacing: 2px;
    margin-right: 30px;
    font-size: 0.8vw;
}
main #tab3 footer a:last-child {
    margin-right: 0;
}
.swiper-container {
    width: 100%;
    height: auto;
    padding-top: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: auto;
    display: block;
} 
.swiper-slide .poster img {
    width: 18vw;
}
.swiper-slide:nth-child(3) .poster img {
        width: 30vw;
    }
.swiper-slide:nth-child(6) .poster img {
    width: 30vw;    
}
.swiper-slide .details {
    border-bottom-left-radius: 1vw;
    padding: 1vw;
}
.swiper-slide .details h3 {
        font-family: Prime-Regular;
        text-align: center;
        font-size: 1.5vw;
        margin-bottom: 1vh;
    color: var(--c_ultra);
}
.swiper-slide .details p {
        font-family: Prime-Light;
        font-size: 1vw;
        letter-spacing: 0.2vw;
        padding-bottom: 1vh;
    color: var(--c_thin);
}
.swiper-slide .details p .button {
        background: #000;
        display: block;
        padding: 1vh 0;
        text-decoration: none;
        color: var(--c_light);
        font-weight: bold;
        background: var(--c_dark);
        text-align: center;
    }    
/**MODAL*/
.modal {
    width: 40vw;
}
.modal a.close-modal {
  display: none;
}    
.modal .title {
        text-align: center;
        font-size: 1.5vw;
        text-transform: uppercase;
        font-family: Prime-Regular;
        margin-bottom: 2vh;
        margin-top: 2vh;
        color: var(--c_dark);
        letter-spacing: 0.3vw;
    }
.modal .text {
        font-size: 1vw;
        font-family: Prime-Light;
        letter-spacing: 0.2vw;
        color: var(--c_bold);
        margin-bottom: 1vh;
    }
.modal table {
    font-family: Prime-Light;
    font-size: 1vw;
    border-collapse: collapse;
}
.modal th, td {
    padding: 0.7vw 0;
    color: var(--c_bold);
    border-collapse: collapse;
}
.modal td{
    border-bottom: 0.1vh solid #eee;
}
.modal th:first-child {
    width: 20%;
}
.modal th:nth-child(2) {
    width: 35%;
}
.modal th:last-child {
    width: 45%;
}
.modal td:last-child {
    text-align: center;
}
/* LOGIN */
main #tab4 {
    position: relative;
    width: 100%;
    height: 98vh;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    font-family: Prime-Regular;
}
main #tab4 .background {
    position: absolute;
    overflow: hidden;
    margin: auto;
    width: 100%;
    height: 98vh;
    background-image: url(../img/background_full/login_.jpg);
    background-size: cover;
    z-index: -1;
}
main #tab4 .container {
    position: absolute;
    width: 50%;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 10;
}
main #tab4 .container .text {
    font-family: Prime-Regular;
    position: relative;
    display: block;
    width: 75%;
    margin: auto;
}
main #tab4 .container .text .text-type {
    widows: 75%;
    display: block;
}
main #tab4 .text .text-type span.type_login {
    position: relative;
    color: #fff;
    font-size: 2.3vw;
    letter-spacing: 3px;
    width: 75%;
    margin: auto;
}
main #tab4 .text .text-type span.typed-cursor {
    font-size: 2vw;
    color: #fff;
    animation: 1s blink ease infinite;
}
main #tab4 span.title {
    color: var(--c_light);
    font-size: 1.2vw;
}
main #tab4 .form-box {
    margin-top: 5vh;
}
main #tab4 .form-box form .input-box {
    display: block;
    position: relative;
    width: 75%;
    height: 10vh;
    margin: auto;
    border: 1px solid var(--c_light);
    letter-spacing: 2px;
}
main #tab4 .form-box form .input-box.password {
    margin-top: -1px;
}
main #tab4 .form-box form .input-box .label {
    display: block;
    width: 100%;
    height: 50%;
    padding-left: 1.5vw;
    color: #fff;
    line-height: 3vw;
    font-size: 1vw;
    z-index: 1;
}
main #tab4 .form-box form .input-box input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--c_medium);
    padding-left: 1.5vw;
    font-size: 1vw;
    font-family: Prime-Regular;
}
main #tab4 .form-box form .input-box input::placeholder {
    color: var(--c_medium);
    opacity: 0.6;
    letter-spacing: 3px;
    font-family: Prime-Regular;
}
input:focus{
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
main #tab4 .form-box form .email:after {
    content: '';
    position: absolute;
    background: var(--c_medium);
    width: 5px;
    height: 102%;
    top: -1px;
    left: -1px;
    z-index: 3;
}
main #tab4 .form-box form .button-box {
    display: flex;
    margin: auto;
    width: 75%;
    margin-top: 5vh;
}
main #tab4 .form-box form .button-box button {
    display: block;
    width: 50%;
    height: 7vh;
    border: none;
    letter-spacing: 2px;
    font-size: 1vw;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: Prime-Light;
}
main #tab4 .form-box form .button-box button:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-130px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 30%;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:hover:before {
    transform: translateX(400px) skewX(-150deg);
    opacity: 0.6;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button:hover:after {
    transform: translateX(400px) skewX(-150deg);
    opacity: 1;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button.login {
    background: var(--c_medium);
    border: none;
}
main #tab4 .form-box form .button-box button.register {
    background: transparent;
}
main #tab4 .form-box .social-login {
    width: 75%;
    margin: auto;
    display: flex;
    margin-bottom: 3vh;
}
main #tab4 .form-box .social-login .card {
        width: 45%;
        height: 4vh;
        border: 0.1vw solid var(--c_light);
        border-radius: 0.7vw;
        margin: auto;
        overflow: hidden;
        position: relative;
    }
main #tab4 .form-box .social-login .card a {
        text-decoration: none;
        color: var(--c_light);
        display: flex;
        justify-content: center;
        align-content: center;
        line-height: 3.6vh;
        overflow: hidden;
    }
main #tab4 .form-box .social-login .card a:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-130px) skewX(-150deg);
}
main #tab4 .form-box .social-login .card a:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 30%;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-150deg);
}
main #tab4 .form-box .social-login .card a:hover:before {
    transform: translateX(400px) skewX(-150deg);
    opacity: 0.6;
    transition: 0.8s;
}
main #tab4 .form-box .social-login .card a:hover:after {
    transform: translateX(400px) skewX(-150deg);
    opacity: 1;
    transition: 0.8s;
}
main #tab4 .form-box .social-login .card a p {
        display: block;
        width: 80%;
        padding-left: 1.5vw;
        text-transform: uppercase;
        letter-spacing: 0.2vw;
        font-size: 0.7vw;
    }
main #tab4 .form-box .social-login .card a i {
        display: block;
        line-height: 3.6vh;
        width: 20%;
        border-right: 1px solid var(--c_light);
        text-align: center;
        font-size: 1vw;
    }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
body { 
    background: var(--c_dark);
}
/* NAVIGATION */
header {
    position: absolute;
    display: block;
    width: 96vw;
    height: 10%;
    bottom: 1%;
    left: 2vw;
    background: var(--c_grey);
    border-radius: 50vw;
    overflow: hidden;
}
header nav {
    width: 100%;
    height: 100%;
    position: relative;
}
header nav ul {
    width: 100%;
    margin: auto;
    list-style: none;
    display: flex;
    height: 100%;
    position: relative;
}
header nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 25%;
    position: relative;
}
header nav ul li a {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--c_dark);
    text-decoration: none;
    transition: top 0.3s ease;
}
header nav ul li a span {
    font-size: 1.3vw;
    font-family: Prime-Regular;
    display: block;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    color: var(--c_dark);
    top: -50%;
    position: relative;
    opacity: 0;
    transition: all 0.2s linear;
}
header nav ul li a span:after {
        position: relative;
        content: '';
        display: block;
        width: 0.8vw;
        height: 0.8vw;
        border-radius: 50%;
        margin: auto;
        margin-top: 1.5vw;
        background: var(--c_dark);
    }
header nav ul li a i {
    position: relative;
    display: block;
    font-size: 2.7vw;
    width: 100%;
    height: 100%;
    top: -60%;
    color: var(--c_dark);
    transition: all 0.5s linear;
}
header nav ul li a.active {
    color: var(--c_grey);
}
header nav ul li a.active span {
        top: 35%;
        opacity: 1;
    }
header nav ul li a.active i {
        top: 50%;
        opacity: 0;
    }
    
    
    /* TABS */
main {
    position: absolute;
    width: 100vw;
    height: 94vh;
    background: var(--c_bold);
    z-index: 0;
    border-bottom-left-radius: 3vw;
    border-bottom-right-radius: 3vw;
    overflow: hidden;
    opacity: 0;
}
/* INICIO */
main #tab1 {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
main #tab1 .home-bg {
        position: absolute;
        width: 100vw;
        height: 100%;
        overflow: hidden;
        background-image: url(../img/movile_img_01.jpg);
        background-size: cover;
        z-index: 0;
    }
main #tab1 .container__center {
    display: none;
}
main #tab1 .container__center .container__gallery {
    display: none;
}
.ctrl {
  display: none;
}
.ctrl__al, .ctrl__ar {
  display: none;
}
.ctrl__bottom {
  display: none;
}
.ctrl__pause {
  display: none;
}
.ctrl__dash {
  display: none;
}
.ctrl__dash--select {
  display: none;
}
main #tab1 .container {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    transform: translate(0,-50%);
    padding: 5vw;
    z-index: 10;
}
main #tab1 .container .text-s {
    display: block;
    font-size: 2vw;
    color: var(--c_light);
    font-family: Prime-Light;
    text-transform: uppercase;
    letter-spacing: 1vw;
}
main #tab1 .container .text {
    display: block;
    font-size: 2vw;
    color: var(--c_medium);
    font-family: Prime-Regular;
    text-transform: uppercase;
    margin-top: 2vh;
    letter-spacing: 0.7vw;
}
main #tab1 .container .social-network {
    width: 100%;
    margin-top: 10vh;
    text-align: center;
}
main #tab1 .container .social-network ul {
    list-style: none;
    display: flex;
}
main #tab1 .container .social-network ul li{
    margin: auto;
}    
main #tab1 .container .social-network ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: Prime-Regular;
    letter-spacing: 0.5vw;
    font-size: 1.5vw;
    color: var(--c_thin);
}
main #tab1 footer {
    position: absolute;
    bottom: 2vh;
    text-align: center;
    width: 100%;
}
main #tab1 footer span {
    padding: 1vw;
    display: block;
    font-family: Prime-Light;
    color: var(--c_medium);
    letter-spacing: 0.2vw;
    font-size: 1.5vw;
}
main #tab1 footer a {
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_light);
    letter-spacing: 0.2vw;
    margin-right: 4vw;
    font-size: 1.5vw;
}
main #tab1 footer a:last-child {
        margin-right: 0;
    }
/* LETTERS */
#letters {
    animation: fill 0.5s ease forwards 3s;
}
#letters path:nth-child(2){
    stroke-dasharray: 426px;
    stroke-dashoffset: 426px;
    animation: line-anim 2s ease forwards;
}
#letters path:nth-child(3){
    stroke-dasharray: 294px;
    stroke-dashoffset: 294px;
    animation: line-anim 2s ease forwards 0.1s;
}
#letters path:nth-child(4){
    stroke-dasharray: 214px;
    stroke-dashoffset: 214px;
    animation: line-anim 2s ease forwards 0.2s;
}
#letters path:nth-child(5){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.3s;
}
#letters path:nth-child(6){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.4s;
}
#letters path:nth-child(7){
    stroke-dasharray: 276px;
    stroke-dashoffset: 276px;
    animation: line-anim 2s ease forwards 0.5s;
}
#letters path:nth-child(8){
    stroke-dasharray: 329px;
    stroke-dashoffset: 329px;
    animation: line-anim 2s ease forwards 0.6s;
}
#letters path:nth-child(9){
    stroke-dasharray: 137px;
    stroke-dashoffset: 137px;
    animation: line-anim 2s ease forwards 0.7s;
}
#letters path:nth-child(10){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.8s;
}
#letters path:nth-child(11){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 0.9s;
}
#letters path:nth-child(12){
    stroke-dasharray: 444px;
    stroke-dashoffset: 444px;
    animation: line-anim 2s ease forwards 1s;
}
#letters path:nth-child(13){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 1.1s;
}
#letters path:nth-child(14){
    stroke-dasharray: 245px;
    stroke-dashoffset: 245px;
    animation: line-anim 2s ease forwards 1.2s;
}
#letters path:nth-child(15){
    stroke-dasharray: 278px;
    stroke-dashoffset: 278px;
    animation: line-anim 2s ease forwards 1.3s;
}
/* TORNEO */
main #tab2 {
    position: relative;
    width: 100vw;
    height: 94vh;
    overflow: hidden;
    background: linear-gradient(338deg, rgba(46,21,94,1) 0%, rgba(108,98,128,1) 100%);
    scroll-behavior: smooth;
}
main #tab2 .bg-tournament, main #tab2 .bg-tournament svg {
    position: fixed;
    height: 94vh;
    opacity: 0.5;
    filter: grayscale(1);
}
main #tab2 .bg-tournament path {
  stroke-width: 2;
}
main #tab2 .container {
    width: 100vw;
    height: 94vh;
    position: relative;
}
main #tab2 .container .navbar {
    position: fixed;
    right: 15px;
    top: 90%;
    transform: translate(0, -90%);
    z-index: 10;
}
main #tab2 .container .navbar ul {
    list-style: none;
    display: block;
    width: 50px;
    height: 200px;
    position: relative;
}
main #tab2 .container .navbar ul li {
    width: 100%;
    height: 25%;
    display: block;
    position: relative;
}
main #tab2 .container .navbar ul li a {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 0.6vw;
    border: 0.2vw solid var(--c_thin);
    background: transparent;
    transition: all 0.3s;
}
main #tab2 .container .navbar ul li a:hover {
    background: var(--c_thin);
}
main #tab2 .container section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 94vh;
    position: relative;
}
main #tab2 .container section#one .text {
    display: block;
    width: 100%;
}
main #tab2 .container section#one .text .titles {
    display: block;
    margin-bottom: 5vh;
}
main #tab2 .container section#one .text .titles svg {
    display: block;
    margin: auto;
    margin-top: -2vh;
}
main #tab2 .container section#one img {
    display: block;
    width: 80%;
    margin: auto;
}
main #tab2 .container section#one .txt {
    display: block;
    text-align: center;
    font-family: Prime-Regular;
    font-size: 2.5vw;
    color: var(--c_thin);
    letter-spacing: 1vw;
    text-transform: uppercase;
}
main #tab2 .container section#one img.banner {
    width: 40%;
    margin-bottom: 2vh;
}
main #tab2 .container section#one .text .info {
    padding: 1vw;
    text-align: center;
    background: rgba(255,255,255,0.1);
}    
main #tab2 .container section#one .text .info span {
    display: block;
    font-family: Prime-Light;
    font-size: 3.5vw;
    color: var(--c_thin);
    letter-spacing: 0.5vw;
}
main #tab2 .container section#two .container {
        width: 100vw;
        height: 94vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
main #tab2 .container section#two .container .glide {
        text-align: center;
    }
main #tab2 .container section#two .container .glide .glide__slide {
        display: block;
    }
main #tab2 .container section#two .container .glide .glide__slide .title {
    display: block;
    justify-content: center;
    margin: auto;
    width: 80%;
}
main #tab2 .container section#two .container .glide .glide__slide .title img {
        display: block;
        width: 15vw;
        margin: auto;
        padding-bottom: 2vh;
        position: relative;
    }
main #tab2 .container section#two .container .glide .glide__slide .title .name {
        margin: auto;
        font-family: Prime-Regular;
        font-size: 4vw;
        color: var(--c_thin);
        letter-spacing: 0.5vw;
        text-transform: uppercase;
        padding-top: 1vh;
        border-top: 0.1vh solid var(--c_thin);
    }
main #tab2 .container section#two .container .glide .glide__slide .title .intro {
        display: inherit;
        width: 100%;
        text-align: center;
        font-family: Prime-Light;
        font-size: 2.5vw;
        color: var(--c_light);
    }
main #tab2 .container section#two .container .glide .glide__slide .category {
        width: 80%;
        display: block;
        margin: auto;
        margin-top: 3vh;
        position: relative;
    }
main #tab2 .container section#two .container .glide .glide__slide .category ul {
        width: 100%;
        margin: auto;
        display: block;
    }
main #tab2 .container section#two .container .glide .glide__slide .category ul li {
        display: block;
        margin: auto;
        margin-top: -0.1vh;
        width: 100%;
        height: 6vh;
        border: 1px solid var(--c_light);
        position: relative;
        background: var(--c_dark);
    }
main #tab2 .container section#two .container .glide .glide__slide .category ul li p {
        position: absolute;
        display: block;
        width: 33.333%;
        font-family: Prime-Regular;
        color: var(--c_light);
        padding-top: 2vh;
        text-transform: uppercase;
        letter-spacing: 0.3vw;
        font-size: 1.7vw;
}
main #tab2 .container section#two .container .glide .glide__slide .category ul li p.price {
        left: 33.33%;
        font-family: Prime-Light;
        color: var(--c_medium);
    }
main #tab2 .container section#two .container .glide .glide__slide .category ul li button {
        position: absolute;
        font-size: 1.5vw;
        width: 33.33%;
        height: 5.9vh;
        display: block;
        left: 66.66%;
        font-family: Prime-Regular;
        text-transform: uppercase;
        letter-spacing: 0.5vw;
        background: var(--c_bold);
        color: var(--c_light);
        border: none;
        border-left: 0.05vw solid var(--c_thin);
        border-bottom: 0.1vh solid var(--c_thin);
        cursor: pointer;
    }
main #tab2 .container section#two .container .glide .glide__arrows {
        margin-top: 4vh;
    }
main #tab2 .container section#two .container .glide .glide__arrows button{
        font-size: 5vw;
        background: transparent;
        border: none;
        color: var(--c_medium);
        margin: 0 2vw;
        cursor: pointer;
        outline: none;
    }
main #tab2 .container section#two .container .references {
        position: absolute;
        width: 50%;
        bottom: 2vh;
        left: 5vw;
        padding: 10px 0px 10px 15px;
        border-left: 0.2vw solid var(--c_light);
        color: var(--c_light);
        font-family: Prime-Regular;
        font-size: 1.6vw;
        text-align: justify;
    }
/* 2020 */
#anio {
    animation: fill-2 0.5s ease forwards 2.5s;
}
#anio path{
    stroke-dasharray: 495px;
    stroke-dashoffset: 495px;
    animation: line-anim 2.5s ease forwards;
}
/* ABOUT */
main #tab3 {
    position: relative;
    width: 100vw;
    height: 94vh;
    background-image: url(../img/movile_img_03.jpg);
    background-size: cover;
    overflow-y: scroll;
    overflow-x: hidden;
    }
main #tab3 .bg-about {
    display: none;
}
main #tab3 .container {
        z-index: 20;
    }
main #tab3 .container .titles {
    display: none;
        width: 100%;
        display: block;
        text-align: center;
        padding: 2vw 0;
        font-size: 3vw;
        font-family: Prime-Regular;
        margin: auto;
        color: var(--c_thin);
    }
main #tab3 .container .titles i {
        position: relative;
        display: inline-block;
        width: 75px;
        height: 1px;
        top: -0.7vw;
        background: var(--c_thin);
        margin-left: 10px;
        margin-right: 10px;
    }
main #tab3 .container .logo img {
        display: block;
        width: 80%;
        margin: auto;
        margin-bottom: 2vh;
    }
main #tab3 .container .logo span {
        padding-bottom: 2vh;
        color: var(--c_thin);
        font-family: Prime-Light;
        display: block;
        width: 90%;
        margin: auto;
        text-align: center;
        font-size: 2.2vw;
        border-bottom: 1px solid var(--c_thin);
    }
main #tab3 .container .info {
        margin: auto;
        width: 80%;
        margin-top: 4vh;
    }
main #tab3 .container .info .row {
        width: 100%;
        display: block;
        position: a;
    }
main #tab3 .container .info .row .card {
        width: 100%;
        height: 10vh;
        border: 1px solid var(--c_medium);
        position: relative;
    }
main #tab3 .container .info .row .card .name {
        margin: 1vh 2vh 0 0;
        font-family: Prime-Light;
        font-size: 3vw;
        padding: 0.5vh 0 0.5vh 2vw;
        color: var(--c_medium);
        border-left: 3px solid var(--c_medium);
        letter-spacing: 1px;
    }
main #tab3 .container .info .row .card .tag {
        font-family: Prime-Regular;
        font-size: 2vw;
        padding: 0px 0 0px 2.2vw;
        color: var(--c_light);
        text-transform: uppercase;
    }
main #tab3 .container .info .row .card .description {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 0px 2vw 1vh 0px;
    }
main #tab3 .container .info .row .card .description a {
        text-decoration: none;
        color: var(--c_thin);
        font-family: Prime-Regular;
        font-size: 2.3vw;
        letter-spacing: 0.2vw;
    }
main #tab3 footer {
        position: relative;
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 5vh;
    }
main #tab3 footer span {
    padding: 1vw;
    display: block;
    font-family: Prime-Light;
    color: var(--c_medium);
    letter-spacing: 2px;
    font-size: 2vw;
}
main #tab3 footer a {
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_light);
    letter-spacing: 2px;
    margin-right: 6vw;
    font-size: 2vw;
}
main #tab3 footer a:last-child {
    margin-right: 0;
}
/* LOGIN */
main #tab4 {
    position: relative;
    width: 100vw;
    height: 94vh;
    overflow: hidden;
}
main #tab4 .background {
    position: absolute;
    margin: auto;
    width: 100%;
    height: 98vh;
    background-image: url(../img/movile_img_04.jpg);
    background-size: cover;
    z-index: -1;
}
main #tab4 .container {
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-family: Prime-Regular;
    z-index: 10;
}
main #tab4 .container .text {
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
}
main #tab4 .container .text .text-type {
    widows: 100%;
    margin:  0 auto 20px;
    display: block;
}
main #tab4 .text .text-type span.type_login {
    position: relative;
    color: #fff;
    font-size: 6vw;
    letter-spacing: 0.3vw;
    width: 75%;
    margin: auto;
}
main #tab4 .text .text-type span.typed-cursor {
    font-size: 4vw;
    color: var(--c_thin);
    animation: blink 1s ease infinite;
}
main #tab4 span.title {
    color: var(--c_light);
    font-size: 3vw;
    font-family: Prime-Light;
    letter-spacing: 1px;
}
main #tab4 .form-box {
    margin-top: 50px;
}
main #tab4 .form-box form .input-box {
    display: block;
    position: relative;
    width: 100%;
    height: 100px;
    margin: auto;
    border: 1px solid var(--c_light);
    letter-spacing: 2px;
}
main #tab4 .form-box form .input-box.password {
    margin-top: -1px;
}
main #tab4 .form-box form .input-box .label {
    display: block;
    width: 100%;
    height: 50%;
    padding-left: 30px;
    color: #fff;
    line-height: 60px;
    font-size: 2vw;
    z-index: 1;
}
main #tab4 .form-box form .input-box input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--c_light);
    padding-left: 30px;
    font-size: 20px;
    font-family: Prime-Regular;
    letter-spacing: 3px;
}
main #tab4 .form-box form .input-box input::placeholder {
    color: var(--c_light);
    opacity: 0.7;
    letter-spacing: 4px;
    font-family: Prime-Light
}
input:focus{
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
main #tab4 .form-box form .email:after {
    content: '';
    position: absolute;
    background: var(--c_medium);
    width: 5px;
    height: 102%;
    top: -1px;
    left: -1px;
    z-index: 3;
}
main #tab4 .form-box form .button-box {
    display: flex;
    margin: auto;
    width: 100%;
    margin-top: 30px;
}
main #tab4 .form-box form .button-box button {
    display: block;
    font-family: Prime-Light;
    width: 50%;
    height: 75px;
    border: none;
    letter-spacing: 4px;
    font-size: 2vw;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
main #tab4 .form-box form .button-box button:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-200px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 30%;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-110px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:hover:before {
    transform: translateX(500px) skewX(-150deg);
    opacity: 0.6;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button:hover:after {
    transform: translateX(500px) skewX(-150deg);
    opacity: 1;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button.login {
    background: var(--c_medium);
    border: none;
}
main #tab4 .form-box form .button-box button.register {
    background: transparent;
}
main #tab4 .form-box .social-login {
    width: 100%;
    margin: auto;
    display: flex;
    margin-bottom: 3vh;
}
main #tab4 .form-box .social-login .card {
        width: 45%;
        height: 7vh;
        border: 0.1vw solid var(--c_light);
        border-radius: 1vw;
        margin: auto;
    }
main #tab4 .form-box .social-login .card a {
        text-decoration: none;
        color: var(--c_light);
        display: flex;
        justify-content: center;
        align-content: center;
        line-height: 7vh;
    }
main #tab4 .form-box .social-login .card a p {
        display: block;
        width: 80%;
        padding-left: 3vw;
        text-transform: uppercase;
        letter-spacing: 1vw;
        font-size: 1.6vw;
    }
main #tab4 .form-box .social-login .card a i {
        display: block;
        line-height: 7vh;
        width: 20%;
        border-right: 1px solid var(--c_light);
        text-align: center;
        font-size: 2.5vw;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 767px) {
body { 
    background: var(--c_ultra);
    width: 100vw;
    height: 100%;
}
/* NAVIGATION */
header {
    position: absolute;
    display: block;
    width: 100%;
    height: 10%;
    bottom: 1.5vh;
    z-index: 10;
    overflow: hidden;
}
header nav {
    position: relative;
    width: 95%;
    display: block;
    margin: auto;
    height: 100%;
    background: var(--c_grey);
    border-radius: 50vw;
    overflow: hidden;
}
header nav ul {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
header nav ul li {
    width: 25%;
    text-align: center;
    height: 100%;
    list-style: none;
}
header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    margin-top: -10vh;
    transition: all 0.3s ease;
}
header nav ul li a span {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--c_dark);
    font-family: Prime-Regular;
    font-size: 3vw;
    letter-spacing: 0.3vw;
    line-height: 9vh;
    transition: all 1s;
    opacity: 0;
}
header nav ul li a span:after {
    content: '';
    position: relative;
    display: block;
    width: 5px;
    height: 5px;
    background: var(--c_dark);
    border-radius: 50%;
    margin: auto;
    margin-top: -25%;
}
header nav ul li a i {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: var(--c_dark);
    width: 100%;
    height: 10vh;
    font-size: 5vw;
    padding-top: 1vh;
    opacity: 1;
}
header nav ul li a.active {
    margin-top: 0vh;
}
header nav ul li a.active span {
    opacity: 1;
}
/* TABS */
main {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}
/* TAB HOME */
main #tab1 {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 1;
}
main #tab1 .home-bg {
    position: fixed;
    display: block;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/background_movile/movile_img_01.jpg);
    background-size: cover;
    background-position: right;
    z-index: 0;
}
main #tab1 .container__center {
    display: none;
}
main #tab1 .container__center .container__gallery {
    display: none;
}
main #tab1 .container__gallery--glitch {
  display: none;
}
main #tab1 .container__center .ctrl {
  display: none;
}
main #tab1 .ctrl__al, .ctrl__ar {
  display: none;
}
main #tab1 .ctrl__bottom {
  display: none;
}
main #tab1 .ctrl__pause {
  display: none;
}
main #tab1 .ctrl__dash {
  display: none;
}
main #tab1 .ctrl__dash--select {
  display: none;
}
main #tab1 #home {
    width: 100vw;
    height: 100vh;
    }
main #tab1 #home .container {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 55%;
    transform: translate(-50%,-70%);
    z-index: 10;
}
main #tab1 #home .container .titles svg {
    width: 85vw;
    height: auto;
    display: block;
    box-sizing: border-box;
}
main #tab1 #home .container .text-s {
    display: block;
    font-size: 3.57vw;
    margin-bottom: 0;
    color: var(--c_light);
    font-family: Prime-Light;
    text-transform: uppercase;
    letter-spacing: 0.585vw;
}
main #tab1 #home .container .text {
    display: block;
    font-size: 3.5vw;
    color: var(--c_light);
    font-family: Prime-Regular;
    text-transform: uppercase;
    margin-top: 3vh;
    letter-spacing: 0.25vw;
}
main #tab1 #home .container .social-network {
    display: block;
    width: 60%;
    margin-top: 5vh;
    text-align: center;
}
main #tab1 #home .container .social-network ul {
    list-style: none;
    display: flex;
    margin-top: 1vh;
    border: 0.1vw solid var(--c_light);
    border-bottom-left-radius: 5vw;
    justify-content: space-around;
}
main #tab1 #home .container .social-network ul li {
    padding-top: 2vh;
    padding-bottom: 2vh;
}
main #tab1 #home .container .social-network ul li a {
    font-size: 3.5vw;
    text-decoration: none;
    color: var(--c_light);
}
main #tab1 #home .button-scroll {
    z-index: 10;
    position: absolute;
    bottom: 30%;
    left: 85%;
}
main #tab1 #home .button-scroll .arrow {
    position: relative;
    display: block;
}
main #tab1 #home .button-scroll .arrow .chevron {
  position: absolute;
  width: 10vw;
  height: 2vw;
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
          animation: move-chevron 3s ease-out infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
          animation: move-chevron 3s ease-out 1s infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
          animation: move-chevron 3s ease-out 2s infinite;
}
main #tab1 #home .button-scroll .arrow .chevron:before,
main #tab1 #home .button-scroll .arrow .chevron:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--c_thin);
}
main #tab1 #home .button-scroll .arrow .chevron:before {
  left: 0;
  -webkit-transform: skewY(30deg);
          transform: skewY(30deg);
}
main #tab1 #home .button-scroll .arrow .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skewY(-30deg);
          transform: skewY(-30deg);
}
main #tab1 #home footer {
    position: absolute;
    text-align: left;
    width: 60%;
    bottom: 22%;
    padding-left: 5%;
    z-index: 10;
}
main #tab1 #home footer span {
    display: block;
    font-family: Prime-Light;
    color: var(--c_medium);
    letter-spacing: 0.3vw;
    font-size: 2.5vw;
}
main #tab1 #home footer a {
    display: block;
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_medium);
    letter-spacing: 0.1vw;
    margin-right: 3vw;
    font-size: 2.5vw;
}
main #tab1 #home footer a:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
main #tab1 #sponsor {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    }
main #tab1 #sponsor .title {
        position: absolute;
        z-index: 10;
        width: 100%;
        margin: 0;
        text-align: center;
        padding-top: 5vh;
        font-family: Prime-Light;
        text-transform: uppercase;
        letter-spacing: 1.5vw;
        font-size: 4vw;
        color: var(--c_thin);
    }
main #tab1 #sponsor .title:after {
        content: '';
        position: absolute;
        display: block;
        width: 10vw;
        height: 0.3vh;
        background: var(--c_light);
        margin-top: 1vh;
        left: 45%;
    }
main #tab1 #sponsor a {
        text-decoration: none;
        color: var(--c_dark);
    }
main #tab1 #sponsor a .up {
        position: absolute;
        display: block;
        bottom: 20%;
        right: 2vw;
        width: 10vw;
        height: 6vh;
        z-index: 99;
        text-align: center;
        line-height: 6vh;
        font-size: 3vw;
        background: rgba(255,255,255,0.7);
        border-bottom-left-radius: 1vw;
    }
/* LETTERS GDR */
#letters {
    animation: fill 0.5s ease forwards 3s;
}
#letters path:nth-child(2){
    stroke-dasharray: 426px;
    stroke-dashoffset: 426px;
    animation: line-anim 2s ease forwards;
}
#letters path:nth-child(3){
    stroke-dasharray: 294px;
    stroke-dashoffset: 294px;
    animation: line-anim 2s ease forwards 0.1s;
}
#letters path:nth-child(4){
    stroke-dasharray: 214px;
    stroke-dashoffset: 214px;
    animation: line-anim 2s ease forwards 0.2s;
}
#letters path:nth-child(5){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.3s;
}
#letters path:nth-child(6){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.4s;
}
#letters path:nth-child(7){
    stroke-dasharray: 276px;
    stroke-dashoffset: 276px;
    animation: line-anim 2s ease forwards 0.5s;
}
#letters path:nth-child(8){
    stroke-dasharray: 329px;
    stroke-dashoffset: 329px;
    animation: line-anim 2s ease forwards 0.6s;
}
#letters path:nth-child(9){
    stroke-dasharray: 137px;
    stroke-dashoffset: 137px;
    animation: line-anim 2s ease forwards 0.7s;
}
#letters path:nth-child(10){
    stroke-dasharray: 300px;
    stroke-dashoffset: 300px;
    animation: line-anim 2s ease forwards 0.8s;
}
#letters path:nth-child(11){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 0.9s;
}
#letters path:nth-child(12){
    stroke-dasharray: 444px;
    stroke-dashoffset: 444px;
    animation: line-anim 2s ease forwards 1s;
}
#letters path:nth-child(13){
    stroke-dasharray: 253px;
    stroke-dashoffset: 253px;
    animation: line-anim 2s ease forwards 1.1s;
}
#letters path:nth-child(14){
    stroke-dasharray: 245px;
    stroke-dashoffset: 245px;
    animation: line-anim 2s ease forwards 1.2s;
}
#letters path:nth-child(15){
    stroke-dasharray: 278px;
    stroke-dashoffset: 278px;
    animation: line-anim 2s ease forwards 1.3s;
}
main #tab2 {
    position: relative;
}
main #tab2 .background-event {
    position: absolute;
    width: 100%;
    height: 100vh;
}
canvas {
    position: absolute;
    background: linear-gradient(330deg, rgba(46,21,94,1) 0%, rgba(65,31,134,1) 100%);
}
main #tab2 .section.one .content{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: relative;
    }
main #tab2 .section.one .titles,
main #tab2 .section.one p,
main #tab2 .section.one .gdr,
main #tab2 .section.one .info,
main #tab2 .section.one .info p,
main #tab2 .section.one .info p.city {
    display: none;
    }    
main #tab2 .section.one .poster {
        display: block;
        width: 100%;
        height: 87%;
        margin-top: -18%;
    }
main #tab2 .section.one .poster .poster-glass {
        width: 100%;
        height: 100%;
        position: relative;
        background: rgba(255,255,255,0.1);
        overflow: hidden;
    }
main #tab2 .section.two .slide_event {
    position: relative;
    top: -7%;
}
main #tab2 .section.two .slide_event .content {
    transform: rotate(180deg);
    }
main #tab2 .section.two .slide_event .content .table {
    width: 100%;
    position: relative;
    transform: rotate(-180deg);
}
main #tab2 .section.two .slide_event .content .table .box {
        display: flex;
        width: 85%;
        margin-left: 7.5%;
        background: rgba(255,255,255,0.3);
        border: 1px solid #fff;
        border-bottom-left-radius: 1vw;
        margin-bottom: 2vh;
    }
main #tab2 .section.two .slide_event .content .table .box:last-child {
        margin-bottom: 0;
    }
main #tab2 .section.two .slide_event .content .table .box .name {
    display: block;
    padding-top: 2.5vh;
    padding-bottom: 2vh;
    text-align: center;
    width: 50%;
    font-family: Prime-Regular;
    color: var(--c_thin);
    font-size: 3vw;
}
main #tab2 .section.two .slide_event .content .table .box .price {
    display: block;
    width: 25%;
    font-family: Prime-Light;
    color: var(--c_thin);
    padding-top: 2.5vh;
    padding-bottom: 2vh;
    font-size: 3vw;
    text-align: center;
}
main #tab2 .section.two .slide_event .content .table .box .button {
        display: block;
        width: 25%;
        padding-top: 2.5vh;
        padding-bottom: 2vh;
        text-decoration: none;
        color: var(--c_ultra);
        text-transform: uppercase;
        background: rgba(255,255,255,0.3);
        font-family: Anurati;
        font-size: 2.6vw;
        text-align: center;
    }
main #tab2 .section.two .slide_event .content .category {
    width: 100%;
    overflow: hidden;
    transform: rotate(-180deg);
}
main #tab2 .section.two .slide_event .content .category .name {
        color: var(--c_thin);
        font-family: Prime-Light;
        text-transform: uppercase;
        font-size: 5vw;
        letter-spacing: 0.5vw;
        position: relative;
        text-align: center;
    margin-bottom: 4vh;
    }
main #tab2 .section.two .slide_event .content .category .name:before {
        content: '';
        position: absolute;
        background: var(--c_thin);
        width: 10vw;
        height: 0.2vh;
        top: 7vw;
    }
main #tab2 .section.two .slide_event .content .category .slogan {
        display: none;
    }    
/* 2020 */
#anio {
    display: none;
}
/*TAB ABOUT*/
main #tab3 {
    position: relative;
    background-image: url(../img/background_movile/movile_img_03.jpg);
    background-position: right;
    background-size: cover;
    overflow-y: scroll;
    }
main #tab3 .container {
    width: 100%;
    height: 100%;
    overflow-y: scroll !important;
}
main #tab3 .bg-about {
    display: none;
}
main #tab3 .container .titles {
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 10%;
        font-size: 4vw;
        font-family: Prime-Regular;
        color: var(--c_thin);
    }
main #tab3 .container .titles i {
        position: relative;
        display: inline-block;
        width: 75px;
        height: 1px;
        top: -1vw;
        background: var(--c_thin);
        margin-left: 10px;
        margin-right: 10px;
    }
main #tab3 .container .logo img {
        display: block;
        width: 70%;
        margin: auto;
    margin-top: 10%;
    margin-bottom: 3%;
    }
main #tab3 .container .logo span {
        padding-bottom: 3vh;
        color: var(--c_thin);
        font-family: Prime-Light;
        display: block;
        width: 95%;
        margin: auto;
        text-align: center;
        font-size: 3vw;
        letter-spacing: 0.3vw;
    }
main #tab3 .container .info {
        display: block;
        margin: auto;
        width: 90%;
        margin-top: 1vh;
    }
main #tab3 .container .info .row {
        width: 100%;
        display: block;
        position: relative;
    }
main #tab3 .container .info .row .card {
        width: 100%;
        border: 1px solid var(--c_medium);
        position: relative;
    }
main #tab3 .container .info .row .card .name {
    margin-top: 4vw;
    margin-bottom: 0vw;
    font-family: Prime-Light;
    font-size: 4vw;
    padding-left: 3vw;
    color: var(--c_light);
    border-left: 3px solid var(--c_light);
    letter-spacing: 1px;
}
main #tab3 .container .info .row .card .tag {
        font-family: Prime-Regular;
        font-size: 3vw;
        padding-left: 3.5vw;
        padding-bottom: 4vw;
        color: var(--c_medium);
        text-transform: uppercase;
    }
main #tab3 footer {
    margin-top: 5vh;
    margin-bottom: 30%;
    text-align: center;
    width: 100%;
}
main #tab3 footer span {
    display: block;
    font-family: Prime-Light;
    color: var(--c_light);
    letter-spacing: 2px;
    font-size: 2.5vw;
}
main #tab3 footer a {
    text-decoration: none;
    font-family: Prime-Regular;
    color: var(--c_thin);
    letter-spacing: 0.5vw;
    margin-right: 30px;
    font-size: 2.8vw;
}
main #tab3 footer a:last-child {
    margin-right: 0;
}
.swiper-slide .poster img {
    width: 65vw;
    display: block;
    margin: auto;
}
.swiper-slide:nth-child(3) .poster img,
.swiper-slide:nth-child(6) .poster img {
    width: 95vw;
}
.swiper-slide .details {
    text-align: center;
    padding: 2vw 5vw;
}
.swiper-slide .details h3 {
        font-family: Prime-Regular;
        text-align: center;
        font-size: 5vw;
        margin-bottom: 2%;
    color: var(--c_medium);
}
.swiper-slide .details p {
        font-family: Prime-Light;
        font-size: 3.5vw;
        letter-spacing: 0.5vw;
    color: var(--c_thin);
}
.swiper-slide .details p .button {
        background: #000;
        display: block;
        padding: 1vh 0;
        margin-top: 2vw;
        border-bottom-left-radius: 5vw;
        text-decoration: none;
        color: var(--c_light);
        font-weight: bold;
        background: var(--c_bold);
        text-align: center;
    }    
/**MODAL*/
.modal {
    width: 100%;
    background: var(--c_grey);
}
.modal a.close-modal {
  display: none;
}    
.modal .title {
        text-align: center;
        font-size: 5vw;
        text-transform: uppercase;
        font-family: Prime-Regular;
        margin-bottom: 2vh;
        margin-top: 2vh;
        color: var(--c_dark);
        letter-spacing: 0.3vw;
    }
.modal .text {
        font-size: 4vw;
        font-family: Prime-Light;
        letter-spacing: 0.2vw;
        color: var(--c_ultra);
        margin-bottom: 1vh;
    }
.modal table {
    font-family: Prime-Regular;
    font-size: 3vw;
    border-collapse: collapse;
}
.modal th, td {
    padding: 0.7vw 0;
    border-collapse: collapse;
}
/* LOGIN */
main #tab4 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Prime-Regular;
}
main #tab4 .background {
    position: absolute;
    overflow: hidden;
    margin: auto;
    width: 100%;
    height: 100vh;
    background-image: url(../img/background_movile/movile_img_04.jpg);
    background-size: cover;
    z-index: 1;
}
main #tab4 .container {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0,-65%);
    z-index: 10;
}
main #tab4 .container .text {
    font-family: Prime-Regular;
    position: relative;
    display: block;
    width: 90%;
    margin: auto;
}
main #tab4 .container .text .text-type {
    widows: 75%;
    display: block;
}
main #tab4 .text .text-type span.type_login {
    position: relative;
    color: #fff;
    font-size: 5vw;
    letter-spacing: 3px;
    width: 75%;
    margin: auto;
}
main #tab4 .text .text-type span.typed-cursor {
    font-size: 5vw;
    color: #fff;
    animation: 1s blink ease infinite;
}
main #tab4 span.title {
    color: var(--c_light);
    font-size: 3.5vw;
}
main #tab4 .form-box {
    margin-top: 5vh;
}
main #tab4 .form-box form .input-box {
    display: block;
    position: relative;
    width: 90%;
    margin: auto;
    border: 1px solid var(--c_light);
    letter-spacing: 2px;
}
main #tab4 .form-box form .input-box.password {
    margin-top: -1px;
}
main #tab4 .form-box form .input-box .label {
    display: block;
    width: 100%;
    height: 50%;
    padding-left: 3vw;
    padding-top: 3vw;
    padding-bottom: 1vw;
    color: #fff;
    font-size: 3vw;
    z-index: 1;
    font-family: Prime-Light;
    letter-spacing: 0.7vw;
}
main #tab4 .form-box form .input-box input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--c_thin);
    padding-left: 3vw;
    padding-bottom: 3vw;
    font-size: 3.5vw;
    letter-spacing: 0.5vw;
    font-family: Prime-Regular;
}
main #tab4 .form-box form .input-box input::placeholder {
    color: var(--c_light);
    letter-spacing: 3px;
    font-family: Prime-Light;
}
input:focus{
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
main #tab4 .form-box form .email:after {
    content: '';
    position: absolute;
    background: var(--c_medium);
    width: 5px;
    height: 102%;
    top: -1px;
    left: -1px;
    z-index: 3;
}
main #tab4 .form-box form .button-box {
    display: flex;
    margin: auto;
    width: 90%;
    margin-top: 3vh;
}
main #tab4 .form-box form .button-box button {
    display: block;
    width: 50%;
    padding-top: 3vw;
    padding-bottom: 3vw;
    border: none;
    letter-spacing: 0.5vw;
    font-size: 3.5vw;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: Prime-Light;
}
main #tab4 .form-box form .button-box button:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-130px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 30%;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-150deg);
}
main #tab4 .form-box form .button-box button:hover:before {
    transform: translateX(400px) skewX(-150deg);
    opacity: 0.6;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button:hover:after {
    transform: translateX(400px) skewX(-150deg);
    opacity: 1;
    transition: 0.7s;
}
main #tab4 .form-box form .button-box button.login {
    background: rgba(255,255,255,0.3);
    border: 0.1vw solid rgba(255,255,255,0.1);
}
main #tab4 .form-box form .button-box button.register {
    background: transparent;
    border: 0.1vw solid rgba(255,255,255,0.3);
    border-left: transparent;
}
main #tab4 .form-box .social-login {
    width: 95%;
    margin: auto;
    display: flex;
    margin-bottom: 4vw;
}
main #tab4 .form-box .social-login .card {
        width: 45%;
        border: 0.1vw solid var(--c_light);
        border-radius: 0.7vw;
        margin: auto;
        overflow: hidden;
        position: relative;
    }
main #tab4 .form-box .social-login .card a {
        text-decoration: none;
        color: var(--c_light);
        display: flex;
        justify-content: center;
        align-content: center;
        line-height: 3.5vh;
        overflow: hidden;
    }
main #tab4 .form-box .social-login .card a:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-130px) skewX(-150deg);
}
main #tab4 .form-box .social-login .card a:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 30%;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-150deg);
}
main #tab4 .form-box .social-login .card a:hover:before {
    transform: translateX(400px) skewX(-150deg);
    opacity: 0.6;
    transition: 0.8s;
}
main #tab4 .form-box .social-login .card a:hover:after {
    transform: translateX(400px) skewX(-150deg);
    opacity: 1;
    transition: 0.8s;
}
main #tab4 .form-box .social-login .card a p {
        display: block;
        width: 80%;
        padding-left: 3vw;
        padding-top: 2vw;
        padding-bottom: 1vw;
        text-transform: uppercase;
        letter-spacing: 1vw;
        font-size: 2.5vw;
        font-family: Prime-Light;
        color: var(--c_thin);
    }
main #tab4 .form-box .social-login .card a i {
        display: block;
        padding-top: 3vw;
        width: 20%;
        border-right: 1px solid var(--c_light);
        text-align: center;
        font-size: 3vw;
    }
}
