*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background: white;
  padding: 0 50px;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    background-color: white;
}

.logo {
  cursor: pointer;
}

.nav__links li {
  display: inline-block;
  padding: 0px 10px;
}


.nav__links li a {
  transition: all 0.3s ease 0s;
     text-decoration: none;
}

.nav__links li a:hover {
  color: #F54927;
}


b{
  font-weight: 1000;
  font-size: 16px;
}

p{
  font-weight: 100;
  font-size: 16px;
  padding: 10px 4%;
}




h1{
  
}

h2{
  
}

h3{
  font-weight: 150;
  font-size: 18px;
  padding: 10px 4%;
}


A:link { COLOR: black; TEXT-DECORATION: none; font-weight: normal }
A:visited { COLOR: black; TEXT-DECORATION: none; font-weight: normal }
A:active { COLOR: black; TEXT-DECORATION: none }
A:hover { COLOR:  #F54927; TEXT-DECORATION: none; font-weight: none }



.left-col, .right-col, .center-col{
  background-color: white;
  width: 50%;
  float: right;
  padding: 0px;
}


a { text-decoration: none; }

section{
  border: 10px white;
  border-bottom: 20px
}


.container{
  border: 10px white;
  max-width: 700px;
  margin: auto;
}


.column {
  float: left;
  width: 33.33%;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}


.image-container {
            position: relative;
            display: inline-block;
        }

        .image-container img {
            display: block;
            width: 100%;
            height: auto;
        }

        .link-overlay {
            position: absolute;
            width: 40%;
            top: 20px;  
            left: 50px;
            padding: 10px;
            border-radius: 30px;
        }






