@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:700');


/**NAVIGATION BAR**/
*{
  margin: 0;
  padding: 0;
  //**box-sizing: border-box;**/
}

nav{
  font-family: 'Poppins',sans-serif;
  position: fixed;
  background: #FFFFFA;
  width: 100%;
  padding: 10px 0;
  z-index: 12;  
} 
nav .menu{
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.menu .logo {
  position: relative;
}
.logo-icon {
  position: absolute;
  top: 8px; /* adjust the value as needed */
  left: 5px; /* adjust the value as needed */
  width: 35px; /* adjust the value as needed */
  height: auto;
}
.menu .logo a {
  margin: 70px;
  text-decoration: none;
  color: black;
  font-size: 33px;
  font-weight: 600;
}
.menu ul{
  display: inline-flex;
}
.menu ul li{
  list-style: none;
  margin-left: 7px;
}
.menu ul li:first-child{
  margin-left: 0px;
}
.menu ul li a{
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.menu ul li a:hover{
  background: black;
  color: #FFFFFA;
}

.center{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

/**SIDEBAR**/
.sidenav {
	font-family: 'Poppins', sans-serif;
  width: 250px;
  position: fixed;
  z-index: 1;
  bottom: 40px;
  left: 10px;
  overflow-x: hidden;
  padding: 8px 0;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 16px;
  color: black;
  display: block;
  border-left: 3px solid black;
}

.sidenav a:hover {
  color: #2c5363;
}


@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Dropdown menu */
.menu li.dropdown ul.dropdown-menu {
  background-color: #FFFFFA;
  border: 1px solid #ddd;
  border-radius: 5px;
  
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  display: none;
  
  min-width: 160px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  
}
.menu li.dropdown ul.dropdown-menu li {
  padding: 10px;
}
.menu li.dropdown:hover ul.dropdown-menu {
  display: block;
}
.menu li.dropdown:hover .dropdown-toggle {
  background-color: #f1f1f1;
  color: #000;
}


/**HEADER**/
.video-container {
    height: 250px;
    width: 100%;
    position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  z-index: 0;
}

/* Just styling the content of the div, the magic in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 10px;
 }
.video-container .caption h1 {
  margin-top:-175px;
  font-family: poppins, sans-serif;
	font-size: 100px;
	text-transform: uppercase;
	font-weight: 800;
 }'
 
/**CONTENT**/
hr {
	width: 10%;
	height: 1px;
	background-color: black;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

#content {
	width: 70%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 100px;
	padding-bottom: 100px;
}
.head-title {
	font-family: 'Poppins', sans-serif;
	padding-top: 30px;
	padding-bottom: 70px;
	font-size: 45px;
	
}

.head-paragraph {
	font-family: 'Poppins', serif;
	font-size: 20px;
	padding-bottom: 30px;
	padding-top:30px;
	text-align: center;
	line-height: 30px;
}

.paragraph {
	font-family: 'Poppins', serif;
	font-size: 20px;
	text-align: justify;
	padding-right: 50px;
	padding-left: 50px;
	line-height: 30px;
	padding-bottom: 70px;
	padding-top: 70px;
}


/**IMAGES**/
img.head-image{
	padding-bottom: 50px;
}

img.content-image{
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 80%;
}

img.content-image:hover{
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

html {
	scroll-behavior: smooth;
}