body {
    padding: 0;
    margin: 0;
    background: #0096FF;
    font-family: 'Orbitron', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('assets/css/font-awesome-4.7.0/css/font-awesome.min.css') format('woff2');
    font-display: swap;
}
/*Navbar css*/
.navbar {
    background:#3F00FF;
}
.nav-link,
.navbar-brand {
    color: #fff;
    cursor: pointer;
}
.nav-link {
    margin-right: 1em !important;
    color:#ddd !important;
    font-size: 18px;
}
.nav-link:hover {
    color: #000;
}
.navbar-collapse {
    justify-content: flex-end;
}

.white-toggler-icon {
    color: white !important;
}

/*Welcome text/ Background*/
.header {
    background-size: cover;
    background-position: center;
    background-color: #0096FF;
    position: relative;
    min-height: 500px;
    margin-top: 25%;
}

.description {
    text-align: center;
}

.description h1 {
    color: #3F00FF;
}

.description p {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
}

.description button {
    border: 1px solid #3F00FF;
    background: #3F00FF;
    border-radius: 0;
    color: #fff;
}

.description button:hover {
    border: 1px solid #fff;
    background: #fff;
    color: #000;
}

/*Features*/
.features {
	margin: 4em auto;
	padding: 1em;
	position: relative;
}
.feature-title {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.features img {
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
	margin-bottom: 16px;
}

/* Footer */
.page-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 30px;
    width: 100%; /* Set width to 100% */
}
.footer-copyright {
    color: #666;
    padding: 40px 0;
}


/*Extra*/
.border-4 {
    border-width:4px !important;
}

.border-5 {
    border-width:5px !important;
}

.pt-10 {
    padding: 10px;
}

/*Thumbnail*/
.thumbnail {
    height: 100px;
    width: 100px;
}

/*Top banner*/
.top-banner {
    background-color: #3F00FF;
    height: 200px;
    display: flex;
    padding: 50px;
}

.ads {
    margin: auto;
    width: 70%;
    height: 100px;
    font-size: 60px;
    color: #fff;
  }

/*Back to top button*/
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

  .col-sm > .item {
    text-align: center; 
    width: 164px;
    height: 180px;
    padding:10px; 
    margin-bottom:15px; 
    background:#007AB9; 
    color:#FFFFFF;
    transition: transform 0.3s ease;
  }

  .col-sm > .item:hover {
    transform: scale(1.1);
  }

  .item {
    transition: transform 0.1s ease;
  }

  .item:hover {
    transform: scale(1.1);
  }

  .hideme {
    opacity:0;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}

  .sidebar {
    position: absolute;
    top: 50px;
    right: 11px;
    width: 50px;
    min-width: 25px;
    height: 90%;
    overflow: hidden;
    font-size: 0px;
    border-radius: 5px;
    padding: 15px;
    background-color: #05BFDB;
    transition: fadeIn 1s, width 0.3s;
    .fade-in {
        display: none;
        animation: fadeIn ease 1s;
      }
  }

  .sidebar:hover {
    display: block;
    width: 20%;
    font-size: 17px;
    .fade-in {
        display: block;
        animation: fadeIn ease 1s;
      }
  }

  .game {
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 20px;
    margin: 0px;
    border: 15px solid #FDDA0D;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3F00FF;
    position: fixed;
    text-align: left;
}

iframe {
    margin-right: 20px;
    width: 95%; 
    height: 100%;
    border: none;
}

  @keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

@keyframes bg{
    100% {
        background-color: #FF0000;
    }

    50% {
        background-color: #000;
    }

    0% {
        background-color: #FF0000;
    }
}

/*Carousel*/
.MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; height: 270px;}
    .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
        .MultiCarousel .MultiCarousel-inner .item { float: left;}
        .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px; margin:10px; background:#007AB9; color:#FFFFFF;}
    .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:calc(50% - 20px); }
    .MultiCarousel .leftLst { left:0; }
    .MultiCarousel .rightLst { right:0; }
    
        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; }
        .pad15 {
            height: 170px;
        }


/*Search bar*/
.search{
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

.search input{
    height: 60px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;
}

.search input:focus{
    box-shadow: none;
    border: 3px solid blue;
}

.search .fa-search{
    position: absolute;
    top: 20px;
    left: 16px;
}

.search button{
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    width: 110px;
    background: #3F00FF;
}

.search_results {
    background-color: #FFFFFF;
    padding: 5px;
    font-size: 15px;
    text-align: left;
    max-height: 250px;
    overflow-y: auto;
    border: 2px solid blue;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.search_results a {
    color: #000;
}

.search_results img {
    width: 75px;
    height: 75px;
}

.search_results h5 {
    margin-left: 5px; 
    text-align: center;
}

.search_border {
    background-color: #FFFFFF;
}

.search_border:hover {
    filter: brightness(90%);
    text-decoration: underline;
}