* {box-sizing: border-box;}

body {
  background-color: #ee8e22;
  background-attachment: fixed;
  margin: 10px;
  font-family: optima, helvetica neue; sans-serif;
}

h1{     color: #ee8e22;
        margin-top: 50px;
        }
h2{     color: #fff;
        }

.header {
          overflow: hidden;
          padding: 20px 10px;
          background: linear-gradient(110deg, #f1f1f1 44%, #ed8e22 44%);

        }
.logo {
        float: left;
        margin-right: 20px;
        }

.logo a {
          outline: none;
          display: block;
        }

.logo img {
            float: left;
            width: 150px;
            height: 100px;
            display: block;
        }

  nav {
        overflow: hidden;
        }

  nav ul   {
        list-style: none;
        margin: 0;
        padding: 0;
        float: right;
        }

  nav li {
          display: inline-block;
          margin-left: 25px;
          height: 70px;
          line-height: 70px;
          transition: .5s linear;
        }
  nav a {
          text-decoration: none;
          display: block;
          position: relative;
          color: black;
          font-size: 16px;
          line-height: 45px;
          border-radius: 4px;
        }

  nav a:after {
          content: "";
          width: 0;
          height: 2px;
          position: absolute;
          left: 0;
          bottom: 10px;
          background: #595757;
          transition: width .5s linear;
        }
  nav a:hover:after {
          width: 100%;
        }

  @media screen and (max-width: 660px) {
          header {text-align: right;}
          .logo {
            float: none;
            display: inline-block;
            margin: 0 0 16px 0;
          }
          nav ul {float: right;}
          nav li:first-of-type {margin-right: 0;}
        }
  @media screen and (max-width: 550px) {
        nav {overflow: visible;}
        nav li {
          display: block;
          margin: 0;
          height: 40px;
          line-height: 40px;
        }
        nav li:hover {background: rgba(0,0,0,.1);}
        nav a:after {content: none;}
        }

        /* Create two equal columns that floats next to each other */
    .column {
        float: left;
        width: 50%;
        padding: 10px;
        height: 320px; /* Should be removed. Only for demonstration */
      }

      .column img.engineers {
        width: 360px;
        height: 350px;
        padding-bottom: 10px;
        margin-left: 45px;
        position: static;
      }

      /* Clear floats after the columns */
      .row:after {
        content: "";
        display: table;
        clear: both;
      }

      /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
      @media screen and (max-width: 650px) {
        .column, .column img.engineers, .column img.home {
          width: 100%;
          display: inline-block;
        }
      }


  /* Style the footer */
  .footer {
    background-color: #0f0e0e;
    padding: 10px;
    color: #ffffff;
    overflow: hidden;
  }

  .footer a {
    float: right;
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 16px;
  }

  /* Change the color of links on hover */
  .footer a:hover {
    background-color: #ddd;
    color: black;
  }

  /* Create a right-aligned (split) link inside the navigation bar */
  .footer p.split {
    float: left;
  }

  .footer-text-center {
    float: left;
  }

  @media screen and (max-width: 650px) {
    .footer {
      display: block;
      flex: 100%;
      max-width: 100%;
    }
  }

  /*---------------------------------------
      ABOUT
  -----------------------------------------*/
  /* Style the content */
  .content {
    background-color: #ddd;
    padding: 10px;
  }

    table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }

  th, td {
    text-align: left;
    padding: 8px;
  }

  td.section{     padding-left: 3px;
                  border-left: dashed 1pt #595757;
                  color: #0f0e0e;
                  text-align: right;
                  vertical-align: right;
                  width: 33%;
                  }
  td.sectiondash2{  padding-left: 3px;
                    border-left: dashed 1pt #595757;
                    color: #0f0e0e;
                    text-align: right;
                    vertical-align: right;
                    width: 33%;
                    }
  td.sectiondash3{  margin: 5px;
                    padding-left: 3px;
                    border-left: dashed 1pt #595757;
                    color: #0f0e0e;
                    text-align: right;
                    vertical-align: right;
                    width: 33%;
                    }
  table.explore{    width: 85%;
                    background-color: #f4f4f3;
                    border: none;
                    margin: auto;
                    }

  td.bord {       border-top: solid 1pt #bd7b37;
                  }

  dl{     font-size: 11pt;
          }

  dd{     text-align:left;
          margin-left: 5px;
          margin-bottom: 5px;
          }

  @media screen and (max-width: 650px) {
    .table, .content, table.explore, .container, {
      flex: 100%;
      max-width: 100%;
      }
  }

  /*---------------------------------------
      Scroll To Top Button
  -----------------------------------------*/
  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 25px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #595757; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }

  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }


  /*---------------------------------------
      SERVICE
  -----------------------------------------*/

  .list{
  padding: 0;
  margin: 70px;
  list-style-type: none;
  font-size: 20px;
}
.icon{
  background: url('../images/icons/icon.png') no-repeat left top;
  background-size: 28px 28px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon1{
  background: url('../images/icons/icon1.png') no-repeat left top;
  background-size: 28px 28px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon2{
  background: url('../images/icons/icon2.png') no-repeat left top;
  background-size: 28px 15px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon3{
  background: url('../images/icons/icon3.png') no-repeat left top;
  background-size: 28px 23px;
  padding-left: 40px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon4{
  background: url('../images/icons/icon4.png') no-repeat left top;
  background-size: 28px 23px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon5{
  background: url('../images/icons/icon5.png') no-repeat left top;
  background-size: 26px 23px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon6{
  background: url('../images/icons/icon6.png') no-repeat left top;
  background-size: 28px 28px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.icon7{
  background: url('../images/icons/icon7.png') no-repeat left top;
  background-size: 28px 28px;
  padding-left: 45px;
  margin-bottom: 10px;
  padding-top: 2px;
}

@media screen and (max-width: 650px) {
    .list, .ul {
     display: inline-grid;
     max-width: 100%;
    }
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/

  .container {
    margin:  auto;
    margin-left:30px;
    padding: 7px;
    text-align: left;
  }

  input[type=text], textarea, select {
    margin-bottom: 5px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }

  form {
    align-content: center;
  }
  label {
    margin-bottom: 5px;
    display: block;
  }

  @media screen and (max-width: 650px) {
    form, input[type=submit], input[type=text], textarea, select {
      flex: 100%;
      width: 100%;
    }
  }

  /*---------------------------------------
      RESPONSE
  -----------------------------------------*/
  .column img.home {
    width: 400px;
    height: 250px;
    float: none;
    margin-top: 30px;
    margin-left: 80px;
  }
