body {
  overflow-x: hidden;
  font-family: Sans-Serif;
  margin: 0;
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #f3f0ef;
  color: #0d0c0c;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.menu-logo {
  line-height: 0;
  margin: 0 20px;
}

.menu-logo img {
  max-height: 50px;
  max-width: 140px;
  flex-shrink: 0;
}

.menu-container a {
  text-decoration: none;
  color: #f3f0ef;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #ff7812;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #0d0c0c;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px,-1px);
  background: #f3f0ef;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px,11px);
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 10px 0;
  font-size: 15px;
}

/* mobile styles */
@media only screen and (max-width: 767px) { 
  .menu-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-logo img {
    max-height: 50px;
  }

  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    left: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #0d0c0c;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(100%);
  }
}

/* desktop styles */
@media only screen and (min-width: 768px) { 
  .menu-container {
    width: 100%;
  }

  .menu-container a {
    color: #0d0c0c;
  }

  .menu-container input {
    display: none;
  }

  /* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
}
.box {
  border: 2px solid #c4c4c4;
  padding: 30px 25px 10px 25px;
  background: white;
  margin: 30px auto;
  width: 360px;
}
h1.box-logo a {
  text-decoration:none;
}
h1.box-title {
  color: #AEAEAE;
  background: #f8f8f8;
  font-weight: 300;
  padding: 15px 25px;
  line-height: 30px;
  font-size: 25px;
  text-align:center;
  margin: -27px -26px 26px;
}
.box-button {
  border-radius: 5px;
  background: #d2483c;
  text-align: center;
  cursor: pointer;
  font-size: 19px;
  width: 100%;
  height: 51px;
  padding: 0;
  color: #fff;
  border: 0;
  outline:0;
}
.box-register
{
  text-align:center;
  margin-bottom:0px;
}
.box-register a
{
  text-decoration:none;
  font-size:12px;
  color:#666;
}
.box-input {
  font-size: 14px;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 25px;
  padding-left:10px;
  border-radius: 5px;
  width: 347px;
  height: 50px;
}
.box-input:focus {
    outline: none;
    border-color:#5c7186;
}
.sucess{
	text-align: center;
	color: white;
}
.sucess a {
	text-decoration: none;
	color: #58aef7;
}
p.errorMessage {
    background-color: #e66262;
    border: #AA4502 1px solid;
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 3px;
}

.buttonA {
	
	background-color:#ff7c10;
	border-radius:10px;
	border:1px solid #ff7513;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:8px 16px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.buttonA:hover {
	background-color:#ffd591;
}
.buttonA:active {
	position:relative;
	top:1px;
}
table.project_list {
  border: 1px solid #FF9C00;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.project_list td, table.project_list th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.project_list tbody td {
  font-size: 13px;
}
table.project_list tr:nth-child(even) {
  background: #F5E6DC;
}
table.project_list thead {
  background: #FF9C00;
  background: -moz-linear-gradient(top, #ffb540 0%, #ffa619 66%, #FF9C00 100%);
  background: -webkit-linear-gradient(top, #ffb540 0%, #ffa619 66%, #FF9C00 100%);
  background: linear-gradient(to bottom, #ffb540 0%, #ffa619 66%, #FF9C00 100%);
  border-bottom: 2px solid #444444;
}
table.project_list thead th {
  font-size: 13px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  border-left: 2px solid #D0E4F5;
}
table.project_list thead th:first-child {
  border-left: none;
}

table.project_list tfoot td {
  font-size: 14px;
}
table.project_list tfoot .links {
  text-align: right;
}
table.project_list tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.summary{
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:linear-gradient(to bottom, #FFFFFF 5%, #cfcfcf 100%);
	background-color:#FFFFFF;
	border-radius:5px;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#000000;
	font-family:Arial;
	font-size:12px;
	padding:5px 5px;
	text-decoration:none;
}
.parent {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 0.1fr 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 3; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 2 / 2 / 3 / 3; }

table.releve {
  border: 1px solid #CFCFCF;
  background-color: #FFF9F4;
  text-align: left;
  border-collapse: collapse;
}
table.releve td, table.releve th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.releve tbody td {
  font-size: 13px;
}
table.releve tr:nth-child(even) {
  background: #FFE1B5;
}
table.releve thead {
  background: #FFCC7A;
  background: -moz-linear-gradient(top, #ffd99b 0%, #ffd187 66%, #FFCC7A 100%);
  background: -webkit-linear-gradient(top, #ffd99b 0%, #ffd187 66%, #FFCC7A 100%);
  background: linear-gradient(to bottom, #ffd99b 0%, #ffd187 66%, #FFCC7A 100%);
  border-bottom: 2px solid #AB741B;
}
table.releve thead th {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  border-left: 2px solid #D0E4F5;
}
table.releve thead th:first-child {
  border-left: none;
}
.title {
	font-size: 15px;
	text-align:center;
	font-weight: bold;
	width:100%;
	padding:16px 31px;
		
}
.form {
	font-size: 12px;
	border: 1px solid #cfcfcf;
	border-radius:5px;
	width:auto;

	
	
}
.subtitle {
	font-size: 12px;
	text-align: center;
	
}
