/*-- Body Reset --*/
body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #616971;
}

/*============= TOP BAR HEADER =============*/

.top-bar{
  background: #b83672ff;
  
  height: 2.8rem;
  padding: 0.5rem 0;
  

}

.top-bar a{
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/*============= NAVIGATION =============*/
.navbar-brand img{
  height:5rem;
  float:left;
}
.navbar{
  font-size: 1rem;
  font-weight: 600 ;
  letter-spacing: .05rem;
  box-shadow: 0 .5rem .5rem rgba(0,0,0, .1);
  z-index: 1;
}
.nav-item{
  padding: .5rem;
}
.nav-link{
  color:#b83672ff!important;
}
.nav-link.active, .nav-link:hover{
  color:#0d657dff!important;
}
/*============= CAROUSEL =============*/

#carousel{
  box-shadow: 0 1rem 1rem rgba(0,0,0, .1);
}

.carousel-inner
{
  max-height: 35rem!important;
}
/*---Change Carousel Transition Speed --*/
.carousel-item-next,.carousel-item-prev,.carousel-item.active{
  transition: transform 1.2s ease;
}

/*-- Carousel Content --*/
.carousel-caption{
  position: absolute;
  top:35%;
  transform: translatey(-50%);
  text-transform: uppercase;
}
.bg-custom{
  background-color: rgba(0,0,0,.4);
  color: white;
  border-radius: 1rem;
}

.carousel-caption h1{
  font-size: 2.2rem;
  text-shadow: .1rem .1rem .3rem rgba(0,0,0,.1);
}
.border-primary{
  border-top:.2rem solid #4981b3!important;
}
.carousel-caption h3{
  font-size:1.8rem;
  text-shadow: .1rem .1rem .2rem rgba(0,0,0,.1);
}
.btn-lg{
  border-radius:0;
  text-transform: uppercase;
  font-size:1rem;
  border-width:medium;

}
.btn-danger{
  background-color: #b83672ff;
  border:0.5rem solid #b83672ff;
}
.btn-danger:hover,.btn-danger:focus{
  background-color: #b83771bf!important;
  border:0.5rem solid #b83771bf!important;
  text-decoration:underline ;
}
.col-md-2:hover,.col-md-2:focus{
  color:#0d657dff!important;
  cursor:grab;
  text-decoration:underline ;
}
.col-md-3:hover,.col-md-2:focus{
  color:#0d657dff!important;
  cursor:grab;
  text-decoration:underline ;
}
.btn-primary{
  background-color: #0d657dff;
  border:0.5rem solid #0d657dff;
}
.btn-primary:hover,.btn-primary:focus{
  background-color: #68a0d2!important;
  border:0.5rem solid #68a0d2!important;
}
.carousel-control-prev{
  left:10%;
}
.carousel-control-next{
  right:10%;
}

/*===== FIXED BACKGROUND IMG =====*/

.fixed-background {
  overflow: hidden; /*-- Correction for iOS --*/
  padding: 5rem 0;
  
}


/*-- Emoji Navbar --*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(13, 101, 125, 0.7), rgba(22, 168, 208, 0.7));
  z-index: -1;
}
.icon {
  width: 90px;
  height: 90px;
  background: #b83672ff;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.icon i {
  font-size: 36px;
}

/*============= FOOTER =============*/



/*============= SOCKET =============*/

.socket {
  background-color: #b83672ff;
  border-top:.1rem solid #4981b3;
}

/*============= MEDIA QUERIES =============*/

/* Devices under 1199px (xl) */
@media (max-width: 1199.98px) {
  .carousel-caption h1{
    font-size: 2rem;
   
  }
  .border-primary{
    border-top:.2rem solid #4981b3!important;
  }
  .carousel-caption h3{
    font-size:1.6rem;
    
  }

}
/* Devices under 992px (lg) */
@media (max-width: 991.98px) {
  .carousel-caption h1{
    font-size: 0.9rem;
   
  }

  .carousel-caption h3{
    font-size:0.7rem;
    
  }
  .btn-lg{
    font-size: 0.5rem;
  }
  }
  @media (max-width: 576px) {
    .carousel-caption h1{
      font-size: 1.2rem;
     
    }
  
    .carousel-caption h3{
      font-size:0.8rem;
      
    }
    .btn-lg{
      font-size: 0.5rem;
    }
    }


/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/*-- Fixed Background Image --*/
.fixed-background {
  position: relative;
  width: 100%;
  z-index: 1000!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -999 !important;
}
.fixed {
  z-index: -999!important;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}