@font-face {
    font-family: 'serapineitalic';
    src: url('../fonts/serapine-italic-webfont.woff2') format('woff2'),
         url('../fonts/serapine-italic-webfont.woff') format('woff'),
         url('../fonts/serapine-italic-webfont.ttf') format('truetype'),
         url('../fonts/serapine-italic-webfont.svg#serapineitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #777;
}

* [x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.txtShadow {
    -webkit-text-stroke: 0.1vw rgba(0,0,0,0.5);
    text-shadow: 0 0 1vw #000;
}

a, 
a:visited {
    cursor: pointer;
    text-decoration: none;
}
a:visited {
    color: inherit;
}

hr {
    width: 80%;
    border: 0;
    height: 1px;
    background-color: yellowgreen;
    margin: 1vw auto;
}

body {
    background-color: #fff;
    font-size: 4vw;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.js-reveal {
    opacity: 1;
    transition: opacity 1s ease-in, margin-top 1s ease-out;
}		
.js-reveal--hidden {
    opacity: 0;
    margin-top: 3vh;
}

.frame-t {
    display: flex;
    width: 50vw;
    font-size: 3.5vw;
    font-weight: 500;
    text-align: left;
    justify-content: flex-start;
    border-radius: 0 2vw 70% 0;
    margin: 1vw auto 2vw 0;
    padding: 2vw 0vw 2vw 5vw;
}

@keyframes blurOut {
    from {
        filter: blur(100px);
    } to {
        filter: blur(0px);
    }
}

.toppanelW {
    position: absolute;
    width: 100vw;
}
.toppanelW2 {
    display: flex;
    width: 100vw;
    justify-content: flex-start;
    padding: 2vw 0;
    background: #c4000d;
    background: -moz-linear-gradient(-33deg, #c4000d 0%,#ff0015 51%,#005bc4 52%,#ff0015 53%,#005bc4 54%,#0077ff 100%);
    background: -webkit-linear-gradient(-33deg, #c4000d 0%,#ff0015 51%,#005bc4 52%,#ff0015 53%,#005bc4 54%,#0077ff 100%);
    background: linear-gradient(113deg, #c4000d 0%,#ff0015 51%,#005bc4 52%,#ff0015 53%,#005bc4 54%,#0077ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4000d', endColorstr='#0077ff',GradientType=1 );
}

#home {
    display: none;
    align-self: center;
    margin-left: 5vw;
}

.homeLogo {
    width: 11vw;
    height: 11vw;
}

.homeTxt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 2vw;
}

#menu {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 40vw;
    border-radius: 3vw;
    right: 12vw;
    top: 2vw;
    background: hsla(212, 100%, 25%, 0.85);
    animation: blurOut 1s ease-out;
    animation-duration: 3s;
    z-index: 25;
}
.menu-itm,
.menu-itm2,
.menu-icn {
    display: none;
    color: #fff!important;
    font-size: 4vw;
    font-weight: 500;
    padding: 2vw;
    margin: 1vw;
    border-radius: 54vw;
}
.toppanelW2 .menu-icn {
    top: 2vw;
}
.menu-lang {
    display: flex;
    position: absolute;
    left: 2vw;
    top: 2vw;
    background: hsla(355, 100%, 40%, 0.4);
    color: #fff!important;
    font-size: 3.3vw;
    font-weight: 500;
    padding: 1vw 2vw;
    margin: 1vw;
    border-radius: 55vw;
    z-index: 33;
}
.menu-icn {
    display: flex;
    position: absolute;
    right: 2vw;
    width: 5vw;
    padding: 2vw;
    border-radius: 0;
    z-index: 33;
}
.menu-vis {
    display: flex;
}

.introW {
    display: flex;
    width: 100vw;
    height: 57vw;
}

.introBg {
    display: flex;
    width: 100vw;
    height: 56.25vw;
    margin: 0;
    padding: 0;
}

#introBgVid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56.25vw;
    margin: 0;
    padding: 0;
    z-index: 11;
}

#introOver {
    background-image: url('../img/sys/dot.png');
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56.25vw;
    pointer-events: none;
    z-index: 12;
    opacity: 0.2;
}

.intro {
    display: flex;
    opacity: 1;
    z-index: 21;
    background: #e6192a;
    padding: 1.5vw;
    margin: 0 auto;
    align-self: center;
    border-radius: 99vw;
    animation: intro 3s ease-in;
}
@keyframes intro {
    0% {
        opacity: 0;
        filter: blur(100px);
    } 100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.introLogo {
    width: 15vw;
    height: 15vw;
    margin-right: 1vw;
}

.introTxt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 2vw;
}


    /********  NEWS  *******/

#newsW {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding: 4vw 0 7vw 0;
}

.news-itm {
    display: flex;
    width: 92vw;
    margin: 3vw auto;
    justify-content: flex-start;
}

.news-itm-top {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 1vw 0;
    background: #0077ff;
    background: -moz-linear-gradient(top,  #0077ff 0%, #005bc4 100%);
    background: -webkit-linear-gradient(top,  #0077ff 0%,#005bc4 100%);
    background: linear-gradient(to bottom,  #0077ff 0%,#005bc4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0077ff', endColorstr='#005bc4',GradientType=0 );
}

.news-itm-dt {
    display: flex;
    color: #fff;
    padding: 1vw 0;
    font-size: 2.7vw;
    margin: 0px 17vw;
}

.news-itm-img-annmt {
    display: flex;
    color: #fff;
    font-size: 2.5vw;
    letter-spacing: 0.6vw;
    padding: 1vw 0;
    text-align: center;
}
.news-itm-img {
    width: 92vw;
    height: 57.5vw;
    border: 0.5vw solid #005bc4;
    border-top: none;
}

.news-itm-rgt {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.news-itm-ttl {
    width: 100%;
    text-align: center;
    font-size: 4vw;
    padding: 2vw 0;
    font-weight: 500;
}

.news-itm-txt {
    width: 100%;
    text-align: justify;
    line-height: 150%;
    font-size: 3.5vw;
}

.newsArchive {
    color: #0088ff !important;
}


    /********    ABOUT    *******/

#aboutW {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100vw;
    height: 50vw;
    background: url(../img/sys/bg-dark.jpg);
    background-size: cover;
}

#aboutW * {
    text-shadow: 0 0 0.1vw #000;
}

.aboutWbg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 1s ease;
}
.aboutWbg-scroll { 
}

#aboutWin {
    display: flex;
    justify-content: flex-start;
    width: 100vw;
    z-index: 33;
}

#aboutLst {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 5vw 0;
    border-bottom: 0.1vw solid #fff;
}

.aboutLst-itm {
    margin: 0vw auto;
    padding: 7vw 0;
    color: #fff !important;
}

#history {
    display: flex;
    width: 100%;
    padding: 0vw 4vw;
}

#historyTtl {
        margin: 0 auto 7vw auto;
    color: #fff;
}

#historyTxt {
    display: none;
}


    /*******  Programs ******/

#programsW {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    padding: 5vw 0;
}

#programs-t {
    color: rgba(255,255,255,0.9);
    border-bottom: 1vw solid hsl(277,100%,50%);
    background: hsl(277,91%,29%);
    background: -moz-linear-gradient(left,  hsl(277,82%,49%) 0%, hsl(277,91%,29%) 90%);
    background: -webkit-linear-gradient(left,  hsl(277,82%,49%) 0%, hsl(277,91%,29%) 90%);
    background: linear-gradient(to right,  hsl(277,82%,49%) 0%, hsl(277,91%,29%) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e51616', endColorstr='#8c0707',GradientType=1);
}

.prog-itms {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
}

.prog-itm {
    display: flex;
    flex-direction: column;
    width: 45vw;
    transition: all 0.2s ease;
    margin: 8vw 2vw;
}

.prog-itm img {
    width: 40vw;
    height: 25vw;
    margin-bottom: 2vw;
}

.prog-itm-ttl {
    width: 100%;
    display: flex;
    text-align: center;
    color: #9859c0;
    letter-spacing: 0;
    font-size: 4.4vw;
}


    /******** PROJECTS *********/

#projectsW {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 99vw;
    padding: 1vw 1vw 3vw 0;
}

#projects-t {
    color: rgba(255,255,255,0.9);
    border-bottom: 1vw solid hsl(0,100%,50%);
    background: hsl(0,91%,29%);
    background: -moz-linear-gradient(left,  hsl(0,82%,49%) 0%, hsl(0,91%,29%) 90%);
    background: -webkit-linear-gradient(left,  hsl(0,82%,49%) 0%, hsl(0,91%,29%) 90%);
    background: linear-gradient(to right,  hsl(0,82%,49%) 0%, hsl(0,91%,29%) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e51616', endColorstr='#8c0707',GradientType=1);
}

.proj-itm {
    display: flex;
    width: 80vw;
    text-align: center;
    margin: 0 auto 2vw auto;
}

.proj-nonCur {
    font-size: 1.8vw;
    color: #aaa;
}
.proj-itm.proj-Cur {
    margin: 0vw auto 2vw auto;
    font-size: 2vw;
    color: #777;
}

.Wlink {
    align-self: flex-end;
    margin-right: 7vw;
    font-size: 4vw;
    color: #0088ff !important;
    border-left: 0.3vw solid transparent;
    border-right: 0.3vw solid transparent;
    text-align: right;
    padding: 0.5vw 0;
    transition: all 0.3s ease;
}

    /********  MEDIA  **********/

#mediaW {
    display: flex;
    width: 100vw;
    height: 160vw;
    justify-content: center;
    align-items: center;
    background: url(../img/sys/mediaBg90.jpg);
    background-size: cover;
}

.media {
    display: flex;
    width: 100%;
}

.media-itm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.media-itm-img {
    width: 48vw;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: -0.1vw -0.1vw 0.5vw rgba(0,0,0,0.2);
    border-radius: 4vw;
    transition: all 0.3s linear;
}
#media-itm-img1 {
    margin-left: -35vw;
}
#media-itm-img2 {
    margin: -10vw 0 auto 0;
}
#media-itm-img3 {
    margin: -10vw 0 auto 35vw;
}

.media-itm-vid {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 22vw;
}
#media-itm-vid-img {
    margin: 0px 0 0px -40vw;
    width: 70vw;
}

.media-itm-vid-over {
    width: 20vw;
    pointer-events: none;
    margin-left: -44vw;
}

#gogall {
    margin: 3vw 0 0 60vw;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}


        /********   FOOTER  ******/

#footer {
    background: #09111b;
    display: flex;
    width: 100vw;
    padding: 3vw 0;
    justify-content: center;
    font-size: 2.5vw;
    align-items: center;
}
#contactus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
#felix {
    color: steelblue;
    margin-top: 3vw;
}

        /****** GO TO TOP *******/

#goToTop {
    display: flex;
    width: 10vw;
    height: 10vw;
    position: fixed;
    right: 10vw;
    bottom: 10vw;
    background: #607d8b;
    border-radius: 100vw;
    box-shadow: 0.5vw 0.5vw 3vw #555;
    z-index: 99999;
    transition: all 1s ease;
    visibility: hidden;
    opacity: 0;
    animation: goToTop 2s ease 5;
}
#goToTop img {
    width: 5vw;
}

@keyframes goToTop {
    0% {
        bottom: 2vw;
        opacity: 0;
    } 30% {
        opacity: 1;
    } 70% {
        bottom: 7vw;
        opacity: 1;
    } 100% {
        bottom: 7vw;
        opacity: 0;
    }
}


        /****** CONTAINER  *******/

#container {
    display: flex;
    flex-direction: column;
    width: 90vw;
    min-height: 90vh;
    font-size: 4vw;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 150%;
    padding: 5vw;
    background: url(../img/sys/z.png);
}
.cont-ttl {
    width: 100%;
    font-weight: 500;
    text-align: center;
    color: #0077ff;
    font-size: 5vw;
    margin-bottom: 5vw;
    line-height: 160%;
}

table.winners {
    min-width: 100%;
    align-self: center;
    font-size: 4vw;
    text-align: initial;
}
table.winners td {
    padding: 2vw 1vw;
    vertical-align: middle;
    border-bottom: 1px solid #ffd5a8;
}

.nopadding {
}

.newsTop {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vw;
}
.newsTitle {
    width: 100%;
    text-align: center;
    color: #0077ff;
    font-size: 6vw;
    line-height: 150%;
}
.newsDate {
    width: 100%;
    text-align: right;
    font-size: 3vw;
    color: #999;
    margin: 3vw 0 5vw 0;
}
.newsImg img {
    width: 100vw;
    height: 62.5vw;
    border-radius: 18% 0;
    border-bottom: 1vw solid #ff0015;
    border-top: 1vw solid #0077ff;
}
.news-inheader {
    width: 100%;
    font-weight: 500;
    text-align: center;
    color: #ff8800;
}
.news-inimg-l {
    float: left; 
    width: 70vw;
    height: auto;
    margin: 1vw;
    border: 1px solid #ddd;
}
.news-inimg-r {
    float: right; 
    width: 70vw;
    height: auto;
    margin: 1vw;
    border: 1px solid #ddd;
}

.structure {
    width: 100vw;
    height: auto;
    margin: 0 -5vw;
}

.coaches-icn {
    width: 7vw;
    height: auto;
    vertical-align: middle;
}

.progs {
    padding: 8vw 0;
    border-bottom: 0.1vw solid rgba(152, 89, 192, 0.4);
    width: 100%;
}
.progs:first-child {
    padding: 0 0 5vw 0;   
}
.progs:last-child {
    border: none;
    padding: 5vw 0 0 0;   
}

.progs-block {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 3vw;
}
.progs-block img {
    height: 20vw;
    width: auto;
}
.progs-ttl {
    display: flex;
    height: 100%;
    font-weight: 400;
    text-align: right;
    color: #9859c0;
    font-size: 4.5vw;
    line-height: 150%;
    width: 63vw;
    margin-right: 5vw;
    justify-content: flex-end;
}

#partners {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.partners-itm {
    display: flex;
    flex-direction: row;
    width: 28vw;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10vw;
}
.partners-itm img {
    width: 18vw;
    margin: 0 auto 2vw auto;
}
.partners-name {
    width: 28vw;
    text-align: center;
    line-height: 140%;
    font-size: 3vw;
}

.newsArc-itm {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4vw 0;
}
.newsArc-itm img {
    width: 96vw;
    height: auto;
    box-shadow: 0 0 0.5vw 0.5vw #aaa;
}
.na-ttl {
    width: 68%;
    font-size: 4vw;
    text-align: left;
    padding: 2vw 3% 2vw 0;
    border-right: 1px solid #ddd;
    line-height: 130%;
}
.na-date {
    width: 25%;
    padding-left: 3%;
    font-size: 3.5vw;
    text-align: center;
    line-height: 140%;
    align-self: center;
    color: #aaa;
}

.paging {
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.pg {
    font-size: 3.5vw;
    font-weight: 500;
    padding: 2.5vw;
    line-height: 50%;
}
.pg-txt {
    color: #ff8800 !important;
}
.pg-num {
    color: #0077ff !important;
}
.pg-cur {
    border: 1px solid #aaa;
    border-radius: 50vw;
}

#mediaDiv {
    display: flex;
    width: 100%;
}
.mediaDiv-header {
    display: flex;
    width: 100%;
    justify-content: space-around;
    font-weight: 500;
    margin-bottom: 5vw;
}
.mediaDiv-dt {
    color: #aaa;
}
.mediaDiv-ttl {
    text-align: center;
    margin-top: 3vw;
    font-size: 4.4vw;
    line-height: 150%;
}
.mediaDiv-cont {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 2vw;
}
.mediaDiv-cont-img {
    width: 43vw;
    height: auto;
    margin: 1vw 0;
}
.mediaDiv-cont .media-itm-vid {
    margin: 0;
}
.mediaDiv-cont .media-itm-vid-over {
    display: none;
}

#related {
    display: flex;
    font-weight: 500;
    color: #0077FF;
    margin: 3vw 2vw 0 0;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.related-itm {
    color: #0077ff !important;
    font-weight: 400;
    margin-left: 1vw;
}
.related-itm:before {
    content: "• ";
}

.links {
    display: flex;
    width: 90%;
    align-self: center;
    margin: 1vw;
}
.links-itm {
    color: #0077ff !important;
    font-weight: 500;
    padding: 0 1vw;
    transition: all 0.3s ease;
}