@import "reset.css"; 

body {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #707070;
}

header {
    background: #F6F6F6;
    padding: .545rem 0;
    position: relative;

}
/* header::before {
    content:url(../images/path.png);
    display:block;
    height: 330px;
    position: absolute;
    z-index: 1;
    top: 83px;
    left: -1160px;
} */
.header-container {
    display:flex;
    justify-content: space-between;
    max-width: 1170px;
    width: 100%;
    margin: auto;

}
.container {
    /* display: flex; */
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}
.logo {
    position: relative;
    z-index: 3;
}

nav {
    display:flex;
    align-items: center;
}
.main-nav   {
    color: #704242;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    
}
.main-nav a {
    padding: 1rem 1.5rem;
}

.main-nav a:hover {
    opacity: .6;
    transition: .3s ease-in-out;
}

#hero  {
    background: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 1rem;
    min-height: 450px;
}

#hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.411);
    display: block;
}
.slogan {
    font-size: 2.5rem;
    color: 
    #fff;
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    line-height: 1.2;
}
.container.bg-white {
    display: flex;
    background: #fff;
    margin-top: -120px;
    position: relative;
    z-index: 3;
}
.shadow-me {
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  }
  
  .shadow-2 {
    box-shadow: 0 1px 0px rgba(0,0,0,0.16), 0 1px 10px rgba(0,0,0,0.23);
}


.secondary-image {
    background: url(../images/about.jpg);
    background-size: cover;
    min-height: 300px;
    width:500px;
    max-width: 100%;
    
}
.about-us {
    width: calc(100% - 500px);
    padding: 2.45rem;
}

#services {
    padding: 5rem 0;
    overflow: hidden;
    background: url(../images/ship-2.jpg);
    background-repeat: no-repeat;
    background-position: 75% center;
    min-height: 490px;
    background-size: contain;
}
#services .container {
    display: flex;
}

h2 {
    color:#704242;
    font-size:1.5rem;
    padding: 0 0 .875rem 0;
    font-weight: 100;
    text-transform:uppercase;
    position: relative;
    margin-bottom: 1.5rem;
}
h2::before {
    content: "";
    background:#704242;
    height: 3px;
    width: 80px;
    display: block;
    position: absolute;
    bottom: 0;

}
p{
    margin:0;
  }
  p + p{
    margin-top:10px;
  }

  .contact-btn {
    background: #704242;
    color: #fff;
    border-radius: 30px;
}

.services-list {
    width:40%;
    padding-left: 2rem;
}


  .services-list ul {
      list-style-type:none;
      padding: 3rem 0 0 ;
  }
  .services-list li {
    font-size: 1rem;
    padding: 0 0 2rem 3rem;
    position: relative;
    color: #7A6547;
  }
  a {
    color: #704242;
    text-decoration: none;

  }
  .services-list li::before {
      content: "";
      width: 24px;
      height: 24px;
      display: block;
    border-right:3px solid #7A6547;
    border-top:3px solid #7A6547;
    border-left:0;
    position: absolute;
    left: 0;

  }


  footer {
      background-color:#F6F6F6;
      margin-top: 6rem;
     

  }
  footer .container {
      display: flex;
      flex-wrap: wrap;
      }

      .map-area {
          width: 70%;
      }
      .contact-details {
          width:30%;
          padding: 2rem;
      }
      .map-area, .contact-details {
          margin-top: -77px ;
      }
      .copyright {
          padding: 3rem 0;
      }