body {opacity: 0;transition: all .5s;position: relative;}
.loaded body {opacity: 1;}

.enter-y { transform: translateY(50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -webkit-transform: translateY(50px); -moz-transform: translateY(50px); -ms-transform: translateY(50px); -o-transform: translateY(50px); -webkit-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -moz-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -ms-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); -o-transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1); }
.enter-y-r {transform: translateY(-50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.enter-x {transform: translateX(50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.enter-x-r {transform: translateX(-50px); opacity: 0; transition: opacity 1s, transform 1.2s cubic-bezier(.165,.84,.44,1);}
.show .delay-1, .ready #hero .delay-1 {transition-delay: .2s !important;}
.show .delay-2, .ready #hero .delay-2 {transition-delay: .4s !important;}
.show .delay-3, .ready #hero .delay-3 {transition-delay: .6s !important;}
.show .delay-4, .ready #hero .delay-4 {transition-delay: .8s !important;}
.show .delay-5, .ready #hero .delay-5 {transition-delay: 1s !important;}
.show .delay-6, .ready #hero .delay-6 {transition-delay: 1.2s !important;}
.show .delay-7, .ready #hero .delay-7 {transition-delay: 1.4s !important;}
.show .delay-8, .ready #hero .delay-8 {transition-delay: 1.6s !important;}
.show .delay-9, .ready #hero .delay-9 {transition-delay: 1.8s !important;}
.show .delay-10, .ready #hero .delay-10 {transition-delay: 2s !important;}
.show .delay-11, .ready #hero .delay-11 {transition-delay: 2.2s !important;}
.show .delay-12, .ready #hero .delay-12 {transition-delay: 2.4s !important;}
.show .delay-13, .ready #hero .delay-13 {transition-delay: 2.6s !important;}
.show .delay-14, .ready #hero .delay-14 {transition-delay: 2.8s !important;}
.show .delay-15, .ready #hero .delay-15 {transition-delay: 3s !important;}
.loaded .show .enter-y, .loaded .show .enter-x, .loaded .show .enter-y-r, .loaded .show .enter-x-r {opacity: 1; transform: translate(0);}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}



/* -----------------------------------------------------------------------------------------
------------------------------HEADER-------------------------------------------------
-----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------- */

.header{
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
    z-index: 1000;
}

.wrapperh{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.logo-svg-pie{
    width: 90px;
    filter: invert(1);
}

.title{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-family: 'DIN Condensed';
}

.burguer{
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.bar{
    height: 2px;
    width: 40px;
    background-color: #fff;
}

/* -----------------------------------------------------------------------------------------
------------------------------SECTION1-------------------------------------------------
-----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------- */

.hero-wall{
    position: relative;
    background-color: #000;
    height: 85vh;
    background-image: url(./images/maxresdefault.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.arrow{
    height: 10px;
    width: 10px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    animation: arrow 2s linear infinite;
}

@keyframes arrow{
    0%,100%{
        bottom: 10%;
        left: 45%;
    }
    50%{
        bottom: 5%;
        left: 45%;
    }
}

/* -----------------------------------------------------------------------------------------
------------------------------SECTION2--------------------------------------------------
-----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------- */
.section2{
    padding: 80px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.wrapper-grid{
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 320px);
    grid-row-gap: 30px;
    grid-column-gap: 60px;
}

.g-item {
    width: 340px;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.athlete-img{
    width: 100%;
}

.athlete-position{
    position: absolute;
    top: 33%;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 5px 40px;
    transform: translateX(-14px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.athlete-position__p{
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 1px;

}

.athlete-position__w{
    font-family: 30px;
    font-weight: 700;
}

.athlete-info{
    position: absolute;
    bottom: 0;
    width: 340px;
    height: 280px;
    background-color: #e2e2e2;
    padding: 20px 20px;
}

.ath-name{
    margin: 0;
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;

}

.ath-from{
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 30px;

}

.ath-uni{
    font-size: 10px;
    margin: 0;
    color:#152a42;
    letter-spacing: 2px;
}

.ath-uniwhich{
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 30px;
    color:#152a42;
}

.ath-uniwhere{
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 15px;
    color:#000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ath-what{
    font-size: 10px;
    margin: 0;
    color:#152a42;
    margin-bottom: 10px;
}

.ath-sponsor{
    display: flex;
    justify-content: space-between;
    width: 150px;
}

.sponsor-img{
    width: 40px;
}

/* -----------------------------------------------------------------------------------------
------------------------------FOOTER--------------------------------------------------
-----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------- */

.footer{
    background-color: #000;
    color: #ffff;
    padding: 60px 80px;
}

.wrappfoot{
    display: flex;
    justify-content: space-between;
}

.foot__l{
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
}

.foot__h4{
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    pointer-events: none;
}

.foot__sm{
    display: flex;
    flex-direction: flex-start;
    margin-bottom: 20px;
}

.foot__sm-link img{
    width: 25px;
    height: 25px;
    margin-right: 30px;
    opacity: .8;
    transition: .5s;
}


.foot__sm-link:hover img{
    width: 25px;
    height: 25px;
    margin-right: 30px;
    opacity: 1;
    transform: scale(1.2);
}

.foot__l-p{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    pointer-events: none;
}

.foot__r-p{
    text-align: end;
    pointer-events: none;
    color: white;
}

.foot__r-p span{
    font-weight: 700;
    letter-spacing: 2px;
}





.section1{
    padding-left: 80px;
    padding-right: 80px;
}

.wrapper1{
    display: flex;
    margin-bottom: 150px;
    flex-wrap: wrap;
    justify-content: center;    
}

.wrapper1__rside{
    width: 50%;
}


.wrapper1__lside{
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.wrapper1__lside-sup{
    display: flex;
    flex-direction: column;
}

.article-h2{
    font-size: 56px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 10px;
    pointer-events: none;
}

.article-p{
    font-size: 20px;
    font-weight: 300;
    width: 350px;
    margin-bottom: 60px;
    pointer-events: none;
}

.button{
    background-color: #000;
    height: 30px;
    width: 100px;
    transition: .5s;
    border: 1px solid  #000;
}

.button:hover{
    background: #ffff;
}

.blink{
    color: #ffff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: medium;
    transition: .5s;
    display: block;

}

.button:hover .blink{
    color: #000;
}


.wrapper1__lside-inf{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.p__left,
.p__right{
    font-size: 14px;
    font-weight: 300;
    width: 200px;
    margin-bottom: 20px;
    margin-right: 30px;
}

.p__right{
    margin-right: 200px;
}

.s1img{
    min-width: 300px;
    height: 550px;
    object-fit: cover;
}

.section-of-pre-talent {
    padding-top: 100px;
}

/* BURGER MENU */
  
.burger {
    position: relative;
    width: 1.25rem;
    height: 14px;
    transform: translateZ(0);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    pointer-events: auto;
  }
  
  .burger__line {
    height: 2px;
    background-color: #000;
    transform-origin: right;
    width: 2.25rem;
  }
  
  .burger-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    height: 2px;
    width: 2.25rem;
  }
  
  .burger-close__line {
    background-color: #fff;
      
  }
  
  .burger-close__line:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left;
  }
  
  .burger-close__line:last-child {
    position: absolute;
    left: calc(50% - 1px);
    top: calc(2.25rem/2*-1 + 1px);
    width: 2px;
    height: 2.25rem;
    transform-origin: bottom;
  }


/* DROPDOWN */

.c-dropdown {
    position: fixed;
    overflow: hidden;
    visibility: hidden;
  }
  
  .c-dropdown,.c-dropdown__inner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .c-dropdown__inner {
    position: fixed;
    display: flex;
    align-items: flex-start;
    background-color: #000;
    z-index: 130;
  }
  
  .is-device .c-dropdown__inner {
    padding: 0 8vw;
  }
  
  .is-desktop .c-dropdown__inner {
    justify-content: center;
  }
  
  .c-dropdown__content {
    width: 100%;
    height: 100%;
    padding-top: 10vw;
    position: relative;
  }
  
  .c-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .c-dropdown-menu__item:not(:last-child) {
    margin-bottom: 2rem
  }
  
  .c-dropdown-menu__link {
    position: relative;
    display: block;
    line-height: 1.2;
    overflow: hidden;
    font-family: 'f1';
    transition: color .25s cubic-bezier(.19,1,.22,1);
    cursor: pointer;
  }
  
  .c-dropdown-menu__link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .9s cubic-bezier(.19,1,.22,1);
  }
  
  .c-dropdown-menu__link:hover div {
    color: #fff;
  }
  
  .c-dropdown-menu__link.is-active:after,.c-dropdown-menu__link:hover:after,.current-menu-item .c-dropdown-menu__link:after {
    transform-origin: left;
    transform: scaleX(1);
  }
  
  .c-dropdown-menu__link.is-active,.current-menu-item .c-dropdown-menu__link {
    pointer-events: none;
  }
  
  .c-dropdown-menu--main .c-dropdown-menu__link,.is-desktop .c-dropdown-menu--sub .c-dropdown-menu__link {
    color: #fff;
    font-size: 45px;
    text-transform: uppercase;
  }

  .row-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact__redes__list {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  
  .contact__redes__item:not(:last-child) {
    margin-right: 10px;
  }
  
  .contact__redes__link {
    transition: background-color .65s ease-in-out;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  
  .contact__redes__link > svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    transition: all .65s ease-in-out;
  }
  
  .contact__redes__link:hover {
  }
  
  .contact__redes__link:hover > svg {
    transform: scale(1.1) !important;
  }
  
  .f-t {
    color: #fff;
    font-size: 1.8rem;
    position: relative;
  }

  .f-t:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .9s cubic-bezier(.19,1,.22,1);
}
  
.f-t:hover:after {
    transform: scaleX(1) !important;
    transform-origin: left;
}

.ath-nota {
    margin: 0;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;

}

.sct-wrapper {
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
  }

.s-section-p {
    margin-bottom: 50px;
}
  
.uni-t {
    font-weight: 600;
    font-size: 55px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}
  
.uni-p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

@media only screen and (max-width:980px){

    .header {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .footer {
        padding: 100px 6vw;
    }

    .wrappfoot {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot__l {
        width: 100%;
        margin-bottom: 30px;
    }

    .foot__r-p {
        text-align: left;
        line-height: 1.8;
    }

    .c-dropdown-menu__item:not(:last-child) {
        margin-bottom: 2rem;
    }

    .c-dropdown-menu__link {
        font-size: 25px !important;
    }

    .c-dropdown__content {
        padding-top: 0 !important;
    }

    .f-t {
        font-size: 14px;
    }

    .c-dropdown__content {
        display: flex;
        justify-content: center;
        align-items: center;
    }



    
    .section1 {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .section-of-pre-talent {
        padding-top: 30px;
    }

    .wrapper1 {
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }

    .wrapper1__lside {
        margin-left: 0;
    }

    .wrapper1__rside {
        width: 100%;
    }

    .s1img {
        min-width: 100%;
        height: 30rem;
        object-fit: cover;
    }

    .wrapper-grid {
        grid-template-columns: repeat(1, 100%);
    }
    
    .uni-t {
        font-size: 45px;
    }

    .uni-p  {
        width: 90%;
        text-align: left;
    }

    .uni-p br {
        display: none;
    }

    .sct-wrapper {
        align-items: flex-start;
        padding: 0 6vw;
    }

    .section2 {
        padding: 30px 40px;
    }
}