body{
    font-family: Poppins;
    background-color: #f8f6f4;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 80px;
  }
#navbar{
    height: 80px;
}
.navbar.fixed-bottom {
    box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.8);
}
#highlighted {
    opacity: 0.7;
}
.btn{
    color: #0c0c0c;
    border-radius: 30px;
    text-align: center;
    background-color: #01c3e7;
    border-color: #01c3e7;
    box-shadow: 5px 5px 10px 0 rgba(12, 12, 12, 0.5);
}
.btn:hover{
    color: #0c0c0c;
    background-color: #01c3e7;
    border-color: #01c3e7;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}
.btn-white{
    color: #0c0c0c;
    border-radius: 30px;
    text-align: center;
    background-color: #f8f6f4;
    border-color: #f8f6f4;
    box-shadow: 5px 5px 10px 0 rgba(12, 12, 12, 0.5);
}
.btn-white:hover{
    color: #0c0c0c;
    background-color: #f8f6f4;
    border-color: #f8f6f4;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}
#circle
{
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 5px 20px 0 rgba(12, 12, 12, 0.5);
}
#bContainer{
    margin: 50px;
    padding:50px;
    background-color: rgba(12, 12, 12, 0.5);
    border-radius: 30px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2); 
    color: #f8f6f4;
    text-align: justify;
}
#bContainer img{
    border-radius: 15px;
    width: 100%; 
    height: auto;   
}
.iframe{
    width: 100%;
}
.masthead {
  padding-top: 200px;
  height: 300px;
  color: #f8f6f4;
  text-align: justify;
  min-height: 475px;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("./asset/mastH.jpg");
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo:hover, .navbar-brand:hover, .nav-item1:hover {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

/* LOADER ANIMATION */


.loader-wrapper{
    z-index: 99999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color:  #0c0c0c;
}

.loader{
    width:200px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: aquamarine;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shade{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(127,255,212,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shade .5s alternate infinite ease;
}

@keyframes shade{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shade:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shade:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.loader span{
    position: absolute;
    top:75px;
    font-size: 20px;
    letter-spacing: 12px;
    color: aquamarine;
    left:15%;
}