html{
    width:100%;
    height:100%;
}
body {
    height: 100%;
	width: 100%;
	background-color:#e5e5e5;
	overflow-x: hidden; 
	font-family: "Times New Roman", Times, serif;
	text-align:center;
}

/*-------Header------*/
header {
  background: #35424a;
  color: #ffffff;
  padding-top: 5px;
  min-height: 45px;
  border-bottom: #e8491d 5px solid;
}

header a {
  color: #ffffff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
}

header li {
  float: left;
  display: inline;
  padding: 0 10px 0 10px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
  line-height: 30px;
}

header nav {
  float: right;
  margin-top: 5px;
}

header .highlight,
header .current a {
  color: #e8491d;
  font-weight: bold;
}

header a:hover {
  color: #00cc00;
  font-weight: bold;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 62.5%; /* 8:5 Aspect Ratio */
}
.containerbox {
  width: 90%;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-boxes {
  display: flex;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Showcases */
#showcases {
  min-height: 300px;
  background: url("../images/showcase.jpg") no-repeat 0 center;
  color: #fff;
  text-align: center;
}

#showcases h1 {
  font-size: 45px;
  text-transform: capitalize;
  margin: 70px 0 20px 0;
}
#showcases p {
  font-size: 20px;
}

/* boxes */
#boxes {
  padding: 20px;
}
#boxes .box {
  padding: 10px;
  text-align: center;
}

#boxes .box img {
  width: 90px;
  height: auto;
}

/*------Footer-----*/
footer {
  padding: 5px;
  margin-top: 5px;
  color: #ffffff;
  background-color: #e8691d;
  text-align: center;
}

/*------Media Queries-----*/
@media(max-width: 880px){
    header #branding,
    header nav,
    header nav li,
    #newsletter h1,
    #newsletter form, 
    #boxes .box,
    article#main-col,
    aside#sidebar
    {
        float: none;
        text-align: center;
        width: 100%;
    }

    header{
        padding-bottom: 10px;
    }
    /*Create vertical spacing*/
    li {
        margin-bottom: 1px;
    }
}
@media (max-width: 375px) {
  header ul {
    gap: 0px;
  }
}

@media (max-width: 320px) {
  header a {
    padding: 20px 10px;
  }
}