@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  background: none;
  border: none;
  appearance: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

body {
  color: #ffffff;
}

.header {
  background: #333333;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 10px 20px;
}

.hamburger {
  position: relative;
  margin-left: auto;
  width: 45px;
  height: 35px;
  z-index: 1;
}

.hamburger span {
  position: absolute;
  left: 0;
  background: #ffffff;
  width: inherit;
  height: 5px;
}

.top-line {
  top: 0px;
}

.center-line {
  top: 15px;
}

.bottom-line {
  bottom: 0px;
}

.container {
  width: 100%;
  margin: 10px auto 0;
}

.accordion-btn {
  position: relative;
  width: 100%;
  text-align: left;
  color: #ffffff;
  background: #000000;
  padding: 15px 25px;
  border-bottom: 1px solid #ffffff;
  font-size: 18px;
}

.accordion-btn span {
  position: absolute;
  background: #ffffff;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-line:nth-child(1) {
  top: 50%;
  right: 16px;
  width: 16px;
  height: 4px;
}

.accordion-line:nth-child(2) {
  top: 38%;
  right: 22px;
  width: 4px;
  height: 16px;
}

.accordion-line.active:nth-child(1) {
  opacity: 0;
}

.accordion-line.active:nth-child(2) {
  transform: rotate(90deg);
}

.accordion-list,
.accordion-list-js {
  background: #f7f7f7;
  color: #333333;
}

.accordion-list {
  display: none;
}

.accordion-list-js {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s;
}

.accordion-list-js.open {
  height: 275px;
  opacity: 1;
  visibility: visible;
}

.accordion-item {
  padding: 15px 25px;
  border-bottom: 1px solid #afaeae;
  font-size:14px;cursor: pointer;
}


* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  
}

body {
  padding: 1rem 0;
  /*background: #f9f9fb;*/
  background-color:#0C1627;
}

.card {
  /*width: 300px;*/
  width: 250px;
  display: inline-block;
  margin: 1rem;
  border-radius: 6px;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.card:hover, .card.hover {
  transform: translateY(-4px);
 /* box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 1), 0 0 1px 0 rgba(0, 0, 0, 0.25);*/
  box-shadow: 0 4px 25px 0 rgba(255, 255, 255, 1), 0 0 1px 0 rgba(255, 255, 255, 0.25);
}
.card:hover .card-content, .card.hover .card-content {
  box-shadow: inset 0 3px 0 0 #E42222;
  /*border-color: #ccb65e;*/
  border-color:#E42222;
}
.card:hover .card-img .overlay, .card.hover .card-img .overlay {
  background-color: rgba(25, 29, 38, 0.85);
  transition: opacity 0.2s ease;
  opacity: 1;
}
.card-img {
  position: relative;
  height: 150px;
  width: 100%;
  background-color: #fff;
  transition: opacity 0.2s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.card-img .overlay .overlay-content {
  line-height: 224px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.card-img .overlay .overlay-content a {
  color: #fff;
  padding: 0 2rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}
.card-img .overlay .overlay-content a:hover, .card-img .overlay .overlay-content a.hover {
  /*background: #ccb65e;
  border-color: #ccb65e;*/
  background: #E42222;
  border-color: #E42222; 
}
.card-content {
  width: 100%;
  min-height: 85px;
  /*min-height: 104px;
  background-color: #fff;*/
  background-color:#990000;
  /*border-top: 1px solid #E9E9EB;*/
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 1rem 2rem;
  transition: all 0.2s ease;
  font-family: 'Chivo', sans-serif;
  
	
}
.card-content a {
  text-decoration: none;
  /*color: #202927;
  color:#E42222;*/
  color: #fff;
}
.card-content h2, .card-content a h2 {
  font-size: 1rem;
  font-weight: 500;
}
.card-content p, .card-content a p {
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(32, 41, 28, 0.8);
}

.mainDiv{
	width:65%;
	margin:auto;
}

.mainHeading{
	width:45%;
	margin:auto;
	color:#2D8CFF;
	padding-top:1.5%;
	font-family: 'Chivo', sans-serif;
}

.mainHeadingDiv{
	width:88%;
	background-color:white;
	height:70px;
	border-radius:5px;
}


.mainSubDiv
{
  width:78%;
  margin:auto;
}

/* On screens that are 992px wide or less, the background color is blue */
@media screen and (max-width: 1814px)
 {
	 .mainDiv{
		width:80%;
		margin:auto;
	}

	.mainHeadingDiv{
		width:76%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}

}

@media screen and (max-width: 1440px)
 {
	 .mainDiv{
		width:90%;
		margin:auto;
	}
	
	.mainHeading{
		width:53%;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}

}


@media screen and (max-width: 1364px)
 {
	 .mainDiv{
		width:95%;
		margin:auto;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}
}


@media screen and (max-width: 1265px)
 {
	 .mainDiv{
		width:95%;
		margin:auto;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}
}



@media screen and (max-width: 1199px)
 {
	 .mainDiv{
		width:100%;
		margin:auto;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}
}

@media screen and (max-width: 1140px)
 {
	 .mainDiv{
		width:100%;
		margin:auto;
	}

	.mainSubDiv
	{
	  width:84%;
	  /*margin:auto;*/
		margin-left:16%;
	}
  
  .card{
    margin:0.5rem;
  } 
	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}

}

@media screen and (max-width: 1085px)
 {
	 .mainDiv{
		width:100%;
		margin-left:12%;
	}

	.mainSubDiv
	{
	  width:90%;
	  margin:auto;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}
	.card {
	margin:0.5rem;
	}
}



@media screen and (max-width: 965px)
 {
	 .mainDiv{
		width:100%;
		margin:auto;
	}

	.mainSubDiv
	{
	  width:95%;
	  margin:auto;
	}

	.mainHeadingDiv{
		width:100%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}
}

@media screen and (max-width: 912px)
 {
	 .mainDiv{
		width:100%;
		margin:auto;
	}

	.mainSubDiv
	{
	  width:95%;
	  margin-left:18%;
	}

	.mainHeading{
		width:63%;
	}

	.mainHeadingDiv{
		width:85%;
		background-color:white;
		height:70px;
		border-radius:5px;
	}

	.card {
	  /*width: 300px;*/
	  width: 25%;
	 
	}
}

.sidenav {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
   font-family: 'Chivo', sans-serif;
}
#handbook {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  color: black;	
  background-color: #FF9900;
}

.sidenav ul li {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  display: block;
   font-family: 'Chivo', sans-serif;
}

.sidenav ul li:hover{
  color: #E42222;
}

.sidenav a:hover {
  color: #E42222;
}

.main {
  margin-left: 160px; /* Same as the width of the sidenav */
  font-size: 28px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.menuHead
{
  margin-left:10px;
  font-family: 'Chivo', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/* Style the active class, and buttons on mouse-over */
.active, .btn:hover {
  background-color: red;
  color: white !important;
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .card-content a {
    font-size:21px;
  }
  }