	@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
/* CSS Document */
* {
	
	margin: 0;
	padding: 0;
	
	}

.box1 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 120px;
	padding-left: 0px;
	grid-column: 1;
	grid-row: 1;
	z-index: 6;
}





.mains {
    width: 100%;
	padding-top: 20px;
	display: grid;
	grid-template-columns: 1fr 6fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	
		
}

._image {
	width: 100%;
}
.box4 {
	padding-top: 0px;
	justify-content: center;
	align-self: center;
	grid-column: 2;
	/*cursor: pointer;
	justify-self: center;
	align-self: center;
	padding-left: 800px;
	padding-right: 800px;
	grid-column: 2;
	grid-row: 1;*/
	
}

.box4 a:hover {
	filter: brightness(1.3);
	transition: 0.35s ease;
	
}

.box4 img:hover {
    transform: scale(1.02);
    transition: 0.35s ease;
}

.nav__links {
	padding-left: 0px;
	list-style: none;
}

.nav__links li {
	display: block;
	padding: 0px 20px;
}

.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: 100
        %;
	background-repeat: repeat;
	background-position: center;
	
}


.container {
	width: 100%;
	height: 100%;
	background-image: url("images/headermed_psm.png");
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: top;
	
}

.footer {
	padding-top: 0px;
	height: 10px;
	font-family: "montserrat", sans-serif;
	font-weight: 500;
	font-size: 10px;
	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%;
  }
}


