*{
  margin: 0;
  padding: 0;
}
html,body{
  width: 100%;
  height: 100%;
}

.container{
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}
.header{
  flex: 0.3;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.headercontent{
  width: 80%;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing:border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}
.headercontent ul{
  list-style: none;
  display: flex;
  flex-direction: row;
}
.headercontent ul li{
  color: #009EE9;
  cursor: pointer;
  margin-right: 25px;
  font-size: 16px;
}
.content{
  flex: 2;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
.footer{
  flex: 0.4;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #009EE9;
}
.content_one{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1A9CE2;
  width: 100%;
}
.content_two{
  flex: 1;
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: center;
  background-color: white;
}

.content_two  div{
  flex: 1;
  height: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.content_two  div h4{
  color: #333;
  margin-top: 15px;
}
.footer span{
  color: white;
}