@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
	font-family: 'Raleway', sans-serif;
  margin:0;
   padding:0;
   height:100%;
}

#page-container {
  min-height:100%;
  position: relative;
}



  .training-image {
    max-height: 500px !important;
    height: 500px;
    width: 100%;
    background-image: url('../img/training.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }


/*---------------------- Colors ------------------------------------*/
.custom-blue {
	color: #091636 !important;
}
.bg-custom-blue {
	background-color: #091636 !important;
}
.custom-yellow {
	color: #ffd740 !important;
}
.bg-custom-yellow {
	background-color: #ffd740 !important;
}
.text-black {
  color: black;
}
.drop-shadow {
    text-shadow: 5px 5px #424242 !important;
}
/*---------------------- Colors / End ------------------------------------*/



/*---------------------- Navbar ------------------------------------*/
.custome-nav-item {
	color: #091636 !important;
	font-weight: lighter;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	margin-left: 10px;
	margin-right: 10px;
  margin-top: 0px;
  margin-bottom: 0px; 
  padding: 0px;
}
.custome-nav-item a:hover {
  color: #ffd740 !important;
}
.custome-nav-item .on {
  color: #ffd740 !important;
}
.navbar-nav > li > a {
    color: #091636;
    margin-top: 0px;
    margin-bottom: 0px; 
    padding: 0px;
    text-decoration:none;
}
/*---------------------- Navbar / End ------------------------------------*/


.carousel-item:before {
    /*-webkit-box-shadow: inset 0 0 20rem rgba(0, 0, 0, 1);*/
    /*box-shadow: inset 0 0 20rem rgba(0, 0, 0, 1) rgba(255, 191, 0, 1)*/;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100% !important;
    line-height: 16px;
    background-color: #091636;
    font-size: 14px;
}


/*---------------------- social media links ------------------------------------*/
ul.follow-us {
  display: flex;
  top: 50%;
  left: 50%;
}
ul.follow-us li {
  list-style: none;
}
ul.follow-us li a {
  width: 50px;
  height: 50px;
  background: #ffd740;
  text-align: center !important;
  font-size: 25px;
  margin: 20px;
  padding-top: 10px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
ul.follow-us li a i.fab {
  color: #091636;
  position: relative;
  transition: .5s;
}
/*---------------------- social media links / End ------------------------------------*/



/*---------------------- Project page css ---------------------------*/
.info-block {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  position: relative;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: background-position .3s ease-in;
  -moz-transition: background-position .3s ease-in;
  -o-transition: background-position .3s ease-in;
  transition: background-position .3s ease-in;
}
.info-block-content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 40px 20px 25px 30px;
  /* background: #333; */
  transition: padding .2s ease-out;
  /* background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%); */
  /* background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%); */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );
}


#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 1px solid white; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #ffd740; /* Set a background color */
  color: #091636; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 30px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #091636; /* Add a dark-grey background on hover */
  color: white; 
}

