@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@media (min-width: 1900px){ 
    html { 
      zoom: 140%;
      -ms-zoom: 1.4;
      -webkit-zoom: 1.4;
      -moz-transform:  scale(1.4,1.4);        
      transform-origin: center top ;
    } 
    body {  /* use only for IE */
      zoom: 1.4;        
      /* -ms-transform-origin: left top; */
    }
  }

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color:#fff;
    background: #000;
    overflow-x:hidden;
}

/* Core */
/* Colors */

a, a:hover{
    color:#57c8e7;
    text-decoration: none;
}

.turq, .turq p{
    color:#57c8e7!important;
}
.black{
    color:#000!important;
}
.white{
    color:#fff!important;
}
.red{
    color:#da0000!important;
}

.bg-white{
    background:#fff!important;
}

.bg-turq{
    background:#57c8e7!important;
}

.bg-black{
    background:#000!important;
}

.bg-gray{
    background:#151515!important;
}

.bg-darkgray{
    background:#0D0D0D!important;
}

.bg-cover{
    background-repeat: no-repeat!important;
    background-size: cover!important;
}

.bg-pos-top{    
    background-position: top center!important;
}

.bg-pos-bottom{    
    background-position: bottom center!important;
}

.bg-pos-center{    
    background-position: center!important;
}

/* Pdummies */

.pd10{ padding-top: 10%; }
.pd20{ padding-top: 20%; }
.pd30{ padding-top: 30%; }
.pd40{ padding-top: 40%; }
.pd50{ padding-top: 50%; }
.pd60{ padding-top: 60%; }
.pd70{ padding-top: 70%; }
.pd80{ padding-top: 80%; }
.pd90{ padding-top: 90%; }
.pd100{ padding-top: 100%; }
.pd110{ padding-top: 110%; }
.pd120{ padding-top: 120%; }
.pd130{ padding-top: 130%; }
.pd140{ padding-top: 140%; }
.pd150{ padding-top: 150%; }

/* Typography */
h1{
    font-size: 3.5em;
    font-weight: 300;
}

.text-bolder{
    font-size: 4em;
    font-weight: 600;
}

.text-boldest{
    font-size: 8em;
    font-weight: 600;
}

.text-thin{
    font-weight:100!important
}

.text-lite{
    font-weight:300!important
}

.text-bold{
    font-weight:600!important
}

.text-bolder{
    font-weight:800!important
}

.text-small{
    font-size: 0.9em;
}

.text-tiny{
    font-size: 0.75em;
}

h2{
    font-size: 2.5em;
    font-weight: 300;
}

h3{
    font-size: 2em;
    font-weight: 300;
}

.text-justify{
    text-align: justify;
}

/* Images */

img {
    outline: none;
    border: none;
}

.hunimg img{
    width:100%;
    height:auto;
}

.objfit {
    width: 100%;
    height: 100%;
    position: relative;
}

.objfit img {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    transform: none;
    object-fit: cover;
    object-position: 50% 0;
    transform: translate(-50%, 0);
}

.img169{
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Navbar */
#mainheader{
    background: #000;
    height: 120px;
    align-items: center;
    position: relative;
    z-index: 5;
}

@media(max-width: 990px){ 
    #mainheader{
        align-items: flex-start;
    }
}

.navbar{
    padding: 3rem 0;
}

.navbar-nav{
    position: relative;
}

nav ul li a{
    font-size: 0.9em;
    color:#fff;
    padding-left: 1.2em;
    text-decoration: none;
    text-transform: uppercase;
}

nav ul li a:hover{
    color: #57c8e7;
}

nav ul li:last-child a{
    background: #57c8e7;
    padding: 5px 1em;
    margin-left: 1.2em;
    border-radius: 10px;
}

nav ul li:last-child a:hover{
    color: #000;
}

.logo img {
    width: 245px;
    height: auto;
    border: 0;
    position: absolute;
    top: 0;
    z-index:2;
}

@media(max-width: 768px){ 
    .navbar-collapse{
        background: #000;
        padding-top: 3rem;
    }
}


/* DropDown */

.navbar-nav li:hover > .sub-menu{
    display: block;
}

.sub-menu{
    background: #151515;
    max-width: 300px;
    line-height: 90%;
    top: 100%;
    display: none;
    list-style: none;
    position: absolute;
    margin: 0;
    padding: 0;
    z-index:9;
}

.sub-menu .sub-menu{
    top:0; 
    left:100%;
}

.sub-menu li{
	padding:10px;
	border-bottom:1px solid #868e96;
    margin: 0;
    position: relative;
}

.sub-menu li a{
    letter-spacing: .1em;
    color: #fff;
	font-size: 0.8em!important;
    line-height: 1em;
    margin: 0;
    background: none!important;
    padding: 0!important;
    margin: 0!important;
    border-radius: 0!important;
}

.sub-menu li a:hover{
    color: #57c8e7!important;
}

/* Elements */

.topeeeborder{
    border-top: 1px solid #eee;
}

.bottomeeeborder{
    border-bottom: 1px solid #eee;
}

.topturqborder{
    border-top: 2px solid #57c8e7;
}

.bottomturqborder{
    border-bottom: 2px solid #57c8e7;
}

.blockturqbtn{
    clear: both;
    background: #57c8e7;
    color:#fff;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8em;
    width: fit-content;
}

.blockturqbtn:hover{
    color:#000;
}

/* Header */

.pageheader{
    width:100%;
    background: #0D0D0D;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.phcontent{
    width: 100%;
    position: absolute;
    bottom:5%;
}

.phnbp{
    bottom: -30px!important;
}

.phcontent .pagelogo{
    background:#fff;
    padding: 5px;
    max-width: 300px;
}

.phcontent .pagelogo img{
    width: 100%;
    max-width:300px;
    height:auto;
}

@media(max-width: 768px){ 
    .phcontent h1{
        font-size: 2em;
    }
}

@media(max-width: 400px){ 
    .phcontent h1{
        font-size: 1.2em;
        font-weight: 400;
    }
}

.phcontent .black{
    text-shadow: 2px 2px 2px #fff;
}

.phcontent .white{
    text-shadow: 2px 2px 2px #000;
}

/* Home */

#bgvideo{
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    margin: 0;
    object-position: center;
    max-height: 650px;
}

.vcontain{
    position: absolute;
    bottom: 3%;
    background: none !important;
    width: 100%;
}

.vcontain h1 {
    width: 100%;
    color: #fff;
    padding: 10px 0;
    margin: 0;
    font-size: 3em;
    letter-spacing: 1px;
    text-align: left;
    line-height: 110%;
    font-weight: 600;
    display: block;
    text-shadow: 4px 4px 2px #000;
}

.vcontain h2 {
    color: #57c8e7;
    padding: 10px 0 2em;
    margin: 0;
    font-size: 2em;
    letter-spacing: 1px;
    text-align: left;
    font-weight: 400;
    width: 100%;
    clear: both;
    text-shadow: 2px 2px #000;
}

/* Block */

.tnablock{
    width:100%;
    background: #151515;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #57c8e7;  /* Ribbon color */
    border-left: 60px solid transparent;
}
  
.tnablock h3{
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 1px;
}
  
.tnablock p{
    line-height: normal;
    text-align: left;
}

.tnablock icon img{
    height:64px;
    width:auto;
    max-width: 64px;
}

/* Partner Logos */
.plogos{
    width:100%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.plogos img{
    position: absolute;
    max-width: 80%;
    height: auto;
    max-height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

/* Event */
.eventblock{
    width: 100%;
    position: relative;
}

.eventdetails{
    width: 100%;
}

.eventdetails h4{
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.eventregbtn{
    clear: both;
    background: #57c8e7;
    color:#fff;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8em;
}

.eventregbtn:hover{
    color:#000;
}

/* Connect */
.connectsocial{
    padding: 0;
    list-style: none;
    margin: 0;
}

.connectsocial li{
    display: inline-block; 
}

.connectsocial li a{
    color:#fff;
    font-size: 3em;
    padding:0 10px;     
}

.connectsocial li a:hover{
    color: #57c8e7;
}

/* Footer */

footer p{
    color:#fff;
    font-size:0.8em;
    text-align: justify;
}

.footersocial{
    padding: 0;
    margin: 10px 0;
    list-style: none;
}

.footersocial li{
    display: inline-block; 
}

.footersocial li a{
    color:#fff;
    font-size: 1.8em;
    padding:0 5px;     
}

.footersocial li a:hover{
    color: #57c8e7;
}

.copywrite{
    font-size:0.6em;
    color:#555;
    text-align:left;
    font-weight:300;
    letter-spacing: 0;
}