/*Style*/
body {
  margin: 0;
  padding: 0;
  font-family: arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
}

p {
  margin: 8px 0;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background-color: #35424a;
  color: #ffffff;
  border-bottom:5px solid #e8491d;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 25px;
}

.branding {
  margin: 0;
  font-size: 36px;
  font-weight: 100;
}

.branding .highlight, .current a {
  color: #e8491d !important;
}

.branding .highlight .svg-inline--fa.fa-w-18 {
  font-size: 32px;
}

.header > nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header > nav > ul > li {
  display: inline-block;
}

.header > nav > ul > li > a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 18px;
  transition: 0.3s;
}

.header > nav > ul > li > a:hover {
  color: #e8491d;
}

.showcase {
  height: 450px;
  background: url(../img/showcase.jpg) no-repeat 0 -400px;
  color: #ffffff;
  text-align: center;
  display: flex;
}

.showcase h1 {
  font-size: 75px;
  margin: 0;
}

.showcase p {
  font-size: 20px;
}

#subscribe-bar {
  color: #ffffff;
  background: #35424a;
}

.subscribe-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
}

.subscribe-bar h1{
  margin: 0;
}

.subscribe-bar form{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  height: 35px;
}

.subscribe-bar form input[type="email"] {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: none;
  width: 70%;
  height: 100%;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  font-size: 17px;
}

.subscribe-bar form input[type="email"]:focus {
  outline: none;
}

.button-1 {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #e8491d;
  width: 30%;
  border: none;
  height: 100%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}

.button-1:hover {
  background-color: #d83b0f;
}

.button-1:focus {
  outline: none;
}

#boxes {
  
}

.boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.boxes .box {
  text-align: center;
  padding: 0 15px;
}

.boxes .box img {
  width: 100px;
}

.boxes .box h2 {
  margin: 10px 0;
}

.boxes .box p {
  margin: 0;
  text-align: justify;
}

.main-col {
  float: left;
  width: 65%;
  margin: 15px 0;
}

.main-col h1 {
  font-size: 36px;
  margin: 0;
}

.main-col p {
  font-size: 18px;
  text-align: justify;
}

.sidebar {
  float: right;
  width: 30%;
  margin: 15px 0;
}

.dark {
  padding:15px;
  background:#35424a;
  color:#ffffff;
  margin-bottom:10px;
  border-radius: 5px;
}

.dark h1 {
  font-size: 22px;
  margin: 0;
}

.dark p {
  font-size: 17px;
  text-align: justify;
}

.services{
  padding: 0;
  margin: 8px 0 0;
}

.services li {
  list-style: none;
  padding: 15px 25px;
  border: #cccccc solid 1px;
  margin-bottom: 10px;
  background: #e6e6e6;
}

.services li h3 {
  margin: 8px 0 0;
}

.sidebarForm {
  margin: 8px 0;
}

.sidebarForm label{
  font-size: 18px;
}

.sidebarForm input,textarea{
  display: block;
  width: 100%;
  border: none;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 5px 0 15px 0;
  font-size: 18px;
  resize: vertical;
}

.button-2 {
  color: #ffffff;
  background-color: #e8491d;
  border-radius: 6px;
  border: none;
  display: block;
  padding: 8px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s all;
}

.button-2:hover {
  background-color: #d83b0f;
}

footer {
  text-align: center;
  color: #ffffff;
  background-color: #e8491a;
}

footer p{
  font-size: 18px;
  margin: 0;
  padding: 25px;
}

