html,body {
	font-family: 'Lato', sans-serif;
}
a, a:hover{
	color:#0b3f8b;
	text-decoration:none;
}
nav{
	z-index:2;
	padding: 0px !important;
}

.line {
    border-top: 4px solid #0e75b5;
    height: 10px;
    width: 60px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}
.line hr {
    border-top: 4px solid rgb(12, 186, 255);
    width: 40px;
    text-align: center;
    margin-top: 10px;
    position: relative;
    left: 17%;
}
.homepage .bg-dark{
    background-color: #21252940 !important;
}
.homepage {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.homepage video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.homepage .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  opacity: 0.5;
  z-index: 1;
}
.homeBottomLeft{
    position: absolute;
    bottom: 50px;
    left: 120px;
}
.homeBottomLeft h1{
    text-shadow: 3px 3px 5px #000000;
    text-transform: uppercase;
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.slideFromBottom {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromBottom;
}


section{
    padding-top: 70px;
    padding-bottom: 70px;
}
.contact i{
    margin-right: 5px;
    color: #0e75b5;
    font-size: 14px;
}
.contactBox{
    box-shadow: 3px 5px 10px 0px #e3e3e3;
    border-radius: 5px;
    padding: 20px;
    width: 95%;
	max-height: 295px;
}
.about img{
	width: 50%;
}


.news .card-heading {
  font-size: 2.25rem;
}
.news .styled-link {
  text-decoration: none;
  outline: none;
  color: #0d6efd;
  transition: all 0.25s ease-in; 
}
.news .styled-link:hover,
.news .styled-link:focus,
.news .styled-link:active {
  color: #536dfe;
}
.news .shadow-1 {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}
.blue-hover {
  transition: all 0.25s ease-in;
  border-bottom: 5px solid transparent;
}
.news .blue-hover:hover {
  transform: translateY(-5px);
  border: none;
  border-bottom: 5px solid #0d6efd;
}



footer{
	background-color: #212529;
}
footer i{
    height: 30px;
    width: 30px;
    border: 2px solid #8c8c8c;
    font-size: 20px;
    padding: 3px 2px;
    border-radius: 50%;
    color: #8c8c8c;
    transition: all 0.5s;
    text-align: center;
}
footer i:hover {
    background: #0e75b5;
    border-color: #0e75b5;
    color: #ffffff;
}