/* applies to everything */
* {
  margin: 0;
  padding: 0;
}

body{
  color: black;
  font-family: Verdana, sans-serif;
}
h1, h2, h3, h4 {
  margin-bottom: 6px;
}

h1{
  color: #00b2ca;
  font-family: 'Lato', sans-serif;
}
h2, h3, h4{
  color: black;
}

.header {
  min-height: 60vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),
  url(images/banner2.jpg);
  background-size:cover;
  background-position: center;
}
.header .logo {
  color: orange;
  font-size: 30px;
  padding: 12px;
}
.text-box {
  width: 100%;
  color: white;
  position: absolute;
  top: 40%;
  bottom: 30%;
  text-align: center;
}
.text-box h1{
  font-size: 50px;
}
.text-box p{
  margin-top: 10px;
  margin-right: 20px; margin-left: 20px;
  font-size: 20px;
  color: white;
}

/*navigation bar's unerline hover effect */
.navigation{
  text-align: right;
}
.navigation ul li {
  list-style-type: none;
  display: inline-block;
  padding: 12px 12px;
  position: relative;
}
.navigation ul li:after{
  content: '';
  width: 0%;
  height: 2px;
  background-color: #00b2ca;
  display: block;
  margin: auto;
}
.navigation ul li:hover:after{
  width: 100%;
}
.navigation a:link, a:visited{
  color: white;
  text-decoration: none;
}
/* end of navigation bar's unerline hover effect */

.content {
  width: 80%;
  margin: auto;
  text-align: left;
  padding-top: 60px;
}

.content .container p{
  color: grey;
  overflow-wrap: break-word;
}

/*for the meet the team floating boxes*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.content .column {
  float: left;
  width: 33.3%;
  margin-bottom: 20px;
  padding: 0 8px;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.container {
  padding: 0 14px;
  padding-bottom: 20px;
}
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}
/*end for the meet the team floating boxes*/




/* footer information, columns style */
.footer{
  background-color: orange;
  padding-bottom: 20px;
}
.footer h1 {
  color:
}
.footer a:link, a:visited {
  color: white;
}
.footer:after{
  content: "";
  display: table;
  clear: both;
}
.column {
  float: left;
  width: 33%;
}
.column p{
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 22px;
}
.column h3 {
  padding-left: 20px;
  padding-top: 25px;
  color: #00b2ca;
}
/*end of footer css */

/*FOR RESPONSIVE DESIGN */
@media screen and (max-width: 640px){
  .text-box h1{
    font-size: 40px;
  }
  .text-box p{
    font-size: 14px;
  }
  .navigation {
    text-align: center;
    background-color: #f79256;
  }
  .header {
    text-align: center;
  }
  .footer {
    text-align: center;
  }
  .navigation ul li {
    padding: 5px 15px;
  }
  .column {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .content .column {
    width: 100%;
    display: block;
  }
}
