@import "variables.css";
html{
    font-family: 'Mulish', sans-serif;
    background-color: var(--color0);
    color:var(--text);
    height: 100%;
    max-width: 100%;
    overflow-x:hidden;
    overflow-y: auto;
}

body{
    min-height: 100%;
    background: #09101a url(/upload/bg2.jpg) no-repeat center;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-size: cover;
    background-attachment: fixed;
    color:#262626;
   
}
h2{
    font-weight: bold;
    font-size: 18pt;
    color:#4d4d4d;
    position:relative;
    z-index: 1;
    padding: 10px 10px 10px 0
}
h3::before,h2::before{
    content: " ";
    background: #cae3f7;
    height: 100%;
    width: 55px;
    display: block;
    position: absolute;
    left: -10px;
    top: 0;
    z-index: -1;
    transform: skew(20deg, 0deg);
}
h2 i{
    font-weight: bold;
    font-size: 18pt;
    color:var(--color5);
}
h3{
    font-weight: bold;
    font-size: 14pt;
    color: #4d4d4d;
    position: relative;
    z-index: 1;
    padding: 10px 10px 10px 0;
}
p{
    margin:20px 10px;
    line-height: 20pt;
    margin-bottom: 50px;
}
    *::-webkit-scrollbar {
        width: 10px;height: 10px;
        overflow: overlay;
    }
    *::-webkit-scrollbar-track {
        background-color: transparent;
    }
    *::-webkit-scrollbar-thumb {
        background-color: rgba(169, 169, 169, 0.3);
        border-radius: 5px;
    }
    *{
        scrollbar-width: thin;
        -webkit-font-smoothing: antialiased;
    }

a{
    color:var(--color3);
    text-decoration: none;
}
a:hover{
    color:var(--color4);
}
.whitebody a{
    color:var(--color2);
    text-decoration: none;
}

.whitebody a:hover{
    color:var(--color3);
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-g{
    flex-grow: 1;
}
.flex-s0{
    flex-shrink: 0;
}
.flex-center{
    align-items: center;
}
.container{
    max-width: 1296px;
    margin: 0 auto;
    width: 100%;
}
.logo{
    min-width: 200px;
    background-image: url('/assets/img/logo.png');
    width:200px;
    height:45px;
    background-size: 200px;
    background-repeat: no-repeat;
    font-size: 0.01pt;
    margin:10px;
    max-width: 100%;
}

.imgfit{
    max-width: 100%;
    min-width: 100px;
}
/* MARGIN PADDING*/
.m-tb-60px{
    margin-top: 60px;
    margin-bottom: 60px;
}

.m-r-10px{
    margin-right: 10px;
}
/* END: MARGIN PADDING*/
.reveal{
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0px);
    
  }
  
  .reveal.revealed{
    transition: all 1s;
    transform: translateY(0);
    opacity: 1;
}
.bg-grey{
    background: #f1f1f1;
}
.bg-white{
    background:#fff;
}
.whitebody{
    background:#fff;
    min-height:100px;
    padding:60px 20px;
    box-sizing: border-box;
    /*box-shadow: 0px 0 20px 0px rgb(0 0 0);*/
    
}
.t-a-r{
    text-align: right;
}
.t-a-c{
    text-align: center;
}
.p-10px{
    padding:10px;
}
.font-50{
    font-size: 15pt;
    line-height: 20pt;
}
.lightbutton{
    border-radius: 1px;
    background-color: var(--color4);
    color:var(--color1);
    display: inline-block;
    padding:10px;
    margin:10px 0;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    transition: all 200ms ease-in-out;
}
.lightbutton:hover,
.lightbutton:active
{
    color:var(--color3);
    background-color: var(--color1);
}
@media screen and (min-width: 480px) {
    .font-30{
        font-size: 30pt;
    }
    .font-50{
        font-size: 20pt;
        line-height: 25pt;
    }
}
@media screen and (min-width: 780px) {
    .font-30{
        font-size: 30pt;
    }
    .font-50{
        font-size: 30pt;
        line-height: 40pt;
    }
}

@media screen and (min-width: 1024px) {
    .font-30{
        font-size: 30pt;
    }
    .font-50{
        font-size: 40pt;
        line-height: 50pt;
    }
}
@media screen and (min-width: 1200px) {
    .font-30{
        font-size: 30pt;
    }
    .font-50{
        font-size: 50pt;
        line-height: 60pt;
    }
}


.f-i{
    font-style: italic;
}
.f-b{
    font-weight: bold;
}
.nobreak{
    white-space: nowrap;
}
.light-color{
    color:#ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ------------------------------------------------------------------  */
.language-dropdown{
    position:relative;
    display: inline-block;
    right:0;
}
.language-dropdown .dropdown-button{
    border:0;
    padding:5px;
    cursor: pointer;
    display: flex;
    box-sizing: border-box;
    color:#ffffff;
    font-weight: bold;
    margin:2px;
    margin-right: 0;
    border-radius: 3px;
    background:rgba(0, 0, 0, 0.2);
    
}
.language-dropdown .dropdown-button>img{
    width:24px;
    margin-right:5px;
    border:1px solid rgba(148, 148, 148, 0.5);
}
.language-dropdown .dropdown-button>span{
    
    line-height: 17px;
}
.language-dropdown .dropdown-options{
    overflow: hidden;
    transition: all 500ms;
    max-height:0px;
    position:absolute;
    background-color: #fff;
    z-index: 1;
    min-width: 50px;
    right: 0;
}
.language-dropdown .dropdown-options a{
    display: flex;
    flex-direction: row;
    text-align: left;
    color:#5a5a5a;
    white-space: nowrap;
    padding:3px;
    margin:5px;
    font-size:0.9em;
    font-weight: bold;
    border:1px solid transparent;
}
.language-dropdown .dropdown-options a>img{
    width:24px;
    margin-right:5px;
    border: 1px solid #d9d9d9;
}
.language-dropdown .dropdown-options a>span{
   line-height: 18px;
}
.language-dropdown .dropdown-options a:hover,
.language-dropdown .dropdown-options a:active,
.language-dropdown .dropdown-options a.active{
    border-radius: 3px;
    border: 1px solid #ccc;
    background-color: #fff;
}
/* ------------------------------------------------------------------  */
.keepinview{

}


.anim-slide-fl{
    transform:translateX(-100vh);
    animation: 800ms cubic-bezier(0.075, 0.82, 0.165, 1) 0s 1 slideInLeft forwards;
}
.anim-slide-fr{
    transform:translateX(100vh);
    animation: 800ms cubic-bezier(0.075, 0.82, 0.165, 1) 0s 1 slideInRight forwards;
}
.anim-delay-1{
    animation-delay:200ms;
}
.anim-delay-2{
    animation-delay: 400ms;
}
.anim-delay-3{
    animation-delay: 600ms;
}
.anim-delay-4{
    animation-delay: 800ms;
}
.anim-delay-5{
    animation-delay: 1000ms;
}
@keyframes slideInbottom {
    0% {
        
      transform: translateY(150px);
    }
    
    100% {
      transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
      transform: translateX(calc(-100vh));
    }
    100% {
      transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
      transform: translateX(calc(100vh));
    }
    100% {
      transform: translateX(0);
    }
}
.gridlist{
    display: grid;
    padding: 40px 0;
  grid-template-columns: repeat(auto-fill, minmax(320px, 2fr));
  grid-gap: 20px;
  align-items: stretch;
}
.gap-30px{
    grid-gap: 30px;
}
.gridcard{
    box-shadow: 3px 3px 5px 0px rgb(0 0 0 / 15%);
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    color: var(--color3);
    min-height:40px;
}
.gridcard h4{
    padding: 10px;
    font-size: 20pt;
    color:var(--color2);
}
.gridcard h4 i{
    margin-right:20px;
}
.gridcard h4 span{
    color:var(--color2)
}
.gridcard p{
    color: var(--color1);
    padding:20px;
    margin:0;

}
.cardicon{
    font-size: 80pt;
    text-align: center;
    padding:30px;
    
    color:var(--color2);
}
.cardheader{
    font-size: 18pt;
    text-align: center;
    padding:20px;
}
.locationcard{
    box-shadow: 3px 3px 5px 0px rgb(0 0 0 / 15%);
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    color: #959595;
}

.locationcard iframe{
    width:100%;
    margin-bottom: 10px;
}
.locationcard>div{
    padding:5px 10px;
    font-size:10pt;
}
.locationcard>div:last-child{
    margin-bottom: 10px;
}
.locationcard h3{
    padding:5px 10px;
    color:#696969;
    font-weight: bold;
}
.rightpad{
    padding:10px;
    text-align: right;
}

.footer h4{
    padding:10px 0;
    margin-bottom:10px;
    color:#fff;
    border-bottom:2px dotted #fff;
}
.footer-links{
    line-height: 18pt;
}
.fsize-10{font-size: 10pt;}
.fsize-8{font-size: 8pt;}

.sporttypecard{
    font-size: 15pt;
    font-family: arial black;
    color:var(--color0);
}
@media only screen and (max-width: 780px) {
    .flex-row{
        flex-direction: column;
    }
    .container{padding:10px;box-sizing: border-box;}
    .m-r-10px{
        margin-right:30px;
    }
  }