	@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
/* CSS Document */
* {
	
	margin: 0;
	padding: 0;
	
	}


.box1 {
	display: inline-block;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
	
}

.img_nav {
    width: 80%;
}
.nav__links {
   	padding-left: 220px;
	list-style: none;
}

.nav__links li {
    
	display: inline-block;
    
	padding: 0px 0px;
   
}

.nav__links li a {
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
	opacity: 50%;
}


body {
	background-image: url("images/bkgd.jpg");
	background-size: 120%;
	background-repeat: repeat;
	background-position: center;
	
}

.bio {
    padding-top: 40px;
    width: 560px;
    height: 555px;
    background-image: url("images/bioframe3.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center; 
    
}
.container {
    width: 653px;
	height: 1024px;
	background-image: url("images/headermed.png");
	background-size: 95%;
	background-repeat: no-repeat;
	background-position: top;
	
}


.logo {
	width: 100%;
}

.logo img{
	width: 80%;
    
}

.logo a:hover {
	filter: brightness(1.3);
	transition: 0.35s ease;
	
}

.logo img:hover {
    transform: scale(1.02);
    transition: 0.35s ease;
}

.foot {
	height: 60px;
	font-family: "montserrat", sans-serif;
	font-weight: 550;
	font-size: 16px;
	color: #005EA2;
	text-decoration: none;
}

.loader-wrapper {
    width: 100%;
    height: 500%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #505380;
  left: 50%;
    top: 10%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #505380;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}


