@import url('https://fonts.googleapis.com/css?family=Noto+Serif&display=swap');

:root {
  --site: #1185B3;
  --site-accent: #8FC7DC;
  --site-font: 'Noto Serif', serif;
}

h1, h2 {
  font-family: 'Noto Serif', serif;
}
a {
  color: #1185B3;
  color: var(--site);
}
/*-------------
--Navbar
--------------*/
.navbar {
  position: fixed;
  padding: 10px 0;
  top:0;
  bottom: auto;
  left:0;
  right:0;
  transition: all 0.3s ease-in-out;
  border-bottom: rgba(143,199,220, 0.5) 2px solid;
  z-index: 50;
}
.navbar-dark {
  background-color: rgba(0,0,0,0.7);
}
.navbar-dark .navbar-nav .nav-link {
	color: white;
  font-weight: 600;
}
.nav-link {
  border-bottom: transparent 2px solid;
}
.nav-link.active {
  border-bottom: #8FC7DC 2px solid;
  border-bottom: var(--site-accent) 2px solid;
}
.navbar-brand {
  font-size: 25px;
}
  .navbar-brand i {
	color: #8FC7DC;
	color: var(--site-accent);
  }
.scroll-nav {
  background-color: black;
  border-bottom: #8FC7DC 2px solid;
  border-bottom: var(--site-accent) 2px solid;
  padding: 0;
}
.navbar .dropdown-menu {
  background-color: rgba(0,0,0,0.7);
  border-bottom: rgba(143,199,220, 0.5) 2px solid;
  transition: all 0.3s ease-in-out;
}
.scroll-nav .dropdown-menu {
  background-color: black;
  border-bottom: #8FC7DC 2px solid;
  border-bottom: var(--site-accent) 2px solid;
}
.navbar .dropdown-menu ul {
  padding: 0;
  margin: 0;
}
  .navbar .dropdown-menu li:hover {
	background-color: transparent;
  }
  .navbar .dropdown-menu li a {
	display: block;
	color: white;
  }

.default-nav .navbar-dark {
  background-color: black;
  border-bottom: #8FC7DC 2px solid;
  border-bottom: var(--site-accent) 2px solid;
}
.default-nav .dropdown-menu {
  background-color: black;
  border-bottom: #8FC7DC 2px solid;
  border-bottom: var(--site-accent) 2px solid;
}
/*--------------
--Hero
---------------*/
.hero {
  max-width: 100%;
  height: 700px;
  background: url('site/hero2.jpg');
  background-position: bottom center;
  background-size: cover;
  border-bottom: #1185B3 4px solid;
  border-bottom: var(--site) 4px solid;
  position: relative;
}
  .hero::before {
	position: absolute;
	content: '';
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-color: rgba(0,0,0,0.1);
	z-index: 1;
  }
.hero-container {
  position: relative;
  top: 200px;
  text-align: center;
  width: 700px;
  max-width: 100%;
  background-color: rgba(0,0,0,0.7);
  margin: 0 auto;
  color: #8FC7DC;
  color: var(--site-accent);
  font-family: var(--site-font);
  padding: 15px 0;
  z-index: 2;
}
.hero-container .h1 {
  font-weight: 700;
  text-transform: uppercase;
}
.hero-btn {
  background-color: #1185B3;
  background-color: var(--site);
  color: white;
  font-weight: 600;
  border-radius: 0;
  position: relative;
  width: 120px;
}
  .hero-btn span {
	position: relative;
	z-index: 5;
  }
  .hero-btn:hover {
	color: white;
  }
  .hero-btn-left::before {
	content: '';
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:100%;
	background-color: #8FC7DC;
	background-color: var(--site-accent);
	transition: 0.3s all ease-in-out;
	z-index: 0;
  }
  .hero-btn-left:hover::before {
	right:0%;
  }
  .hero-btn-middle::before {
	content: '';
	position: absolute;
	top:100%;
	bottom:0;
	left:0;
	right:0;
	background-color: #8FC7DC;
	background-color: var(--site-accent);
	transition: 0.3s all ease-in-out;
	z-index: 0;
  }
  .hero-btn-middle:hover::before {
	top:0%;
  }
  .hero-btn-right::before {
	content: '';
	position: absolute;
	top:0;
	bottom:0;
	left:100%;
	right:0;
	background-color: #8FC7DC;
	background-color: var(--site-accent);
	transition: 0.3s all ease-in-out;
	z-index: 0;
  }
  .hero-btn-right:hover::before {
	left:0%;
  }
.hero-d-flex {
  position: relative;
  top: 220px;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.hero-flex {
  flex: 8%;
}
.hero-flex img {
  height: 70px;
}
@media only screen and (max-width: 700px){
  .hero-flex {
	flex: 20%;
  }
  .hero-container {
	top: 100px;
  }
  .hero-d-flex {
	top: 120px;
  }
}
@media only screen and (max-width: 400px){
  .hero-btn {
	width: auto;
  }
}

/*-----------------
--Jumbotron
------------------*/

.jumbotron {
  background: url('site/hero2.jpg');
  background-position: center top;
  background-size: cover;
  padding: 80px 0 30px 0;
  border-radius: 0;
  color: white;
  border-bottom: var(--site-accent) 2px solid;
}
.jumbotron .h1 {
  text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
} 
/*----------------------
--Blocks
-----------------------*/
.section_blockcat-1.sectionid-2.section_blocks.section-block.section_blocks_blocks {
	background-color: white;
	color: var(--dark);
}
/*----------------
--Bottom-Section
------------------*/

.bottom-section {
  background-color: #8FC7DC;
  background-color: var(--site-accent);
  color: white;
  padding: 15px 0;
  border-bottom: var(--site) 4px solid;
}
  .bottom-section a {
	color: white;
  }

/*--------------
--Footer
---------------*/

.foot {
  background-color: black;
  color: white;
  padding: 15px 0;
}
  .foot a {
	color: white;
  }
	.foot a:hover {
	  color: #8FC7DC;
	  color: var(--site-accent);
	}
  .foot ul {
	list-style: none;
	padding:0;
	margin:0;
  }
	.foot li::before {
	  display: inline-block;
	  content: ' ';
	  color: #8FC7DC;
	  color: var(--site-accent);
	  width: 8px;
	  height: 8px;
	  border-radius: 50%;
	  background-color: #8FC7DC;
	  background-color: var(--site-accent);
	  margin-right: 3px;
	}
