@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&family=Roboto:wght@300&display=swap');

*{
  font-family: 'Roboto', sans-serif;
}

@font-face {
  font-family: "Awakenregular";
  src: url("/static/custom/fonts/AwakenRegular-eZoyn.otf"); 
  font-stretch: normal;
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato";
  src: url("/static/custom/fonts/Lato-Light.ttf"); 
  font-stretch: normal;
  font-weight: normal;
  font-style: normal;
}

.box-shadow{
  box-shadow: 0px 0px 25px -10px rgb(150, 150, 150);
}
#navbar {
  position: fixed;
  top: 0;
  transition: 1s;
  transition-property: transform;
  background-color: #ffffff;
  border-bottom: 1px solid #ffcfc3;
  z-index: 2;
  min-width: 100%;
}  


.upcomingHeading {
  color: #576980;
}
.custom_blue_black{
  background-color: #d8efff;
  border: 1px solid #67B4E6;
  color: #000;
}
.custom_blue{
  background-color: #67B4E6;
  color: #fff;
}

#navbar a{
  font-family: lato, sans-serif;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
} 

#navbar a:hover{
  color: #ff3535;
}

.navbar-brand img{
  height: 50px;
}

#youtube-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
  background-image: linear-gradient(to bottom, #e24646, #e24646);
  display: flex;
  justify-content: center;
  align-items: center;
}

#linkedin-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
  background-image: linear-gradient(to bottom, #0077b5, #0077b5);
  display: flex;
  justify-content: center;
  align-items: center;
}

#instagram-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
  background-image: linear-gradient(to bottom right, #eec10d, #ee0d0d);
  display: flex;
  justify-content: center;
  align-items: center;
}
#fb-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
  background-image: linear-gradient(to bottom, #16A6FB, #0063E0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-height {
  padding-top: 78px;
}
#navbar .navbar-nav .nav-item .nav-link {
  padding: 0rem 1rem;
}
@media only screen and (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
  .nav-height {
    padding-top: 67px;
  }
}
