#top{
    width: 100%;
    height: 70vh;
    background-image: url('/media/pages.jpg');
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #236d5e;
}

#top header{
    font-size: 60px;
    color: white;
}




/* ABOUT US */ 

#aboutUs{
    width: 100%;
    height: 80vh;
    padding: 50px 0px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #inAboutUs{
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #aboutImage{
    background-image: url('/media/aboutUsImg.jpg');
  }
  
  #inAboutText{
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .aboutHdr{
    font-size: 40px;
    margin: 10px 50px;
    text-decoration: underline 3px solid #236d5e;
    text-underline-position: under;
    padding: 10px 0px;
  }
  
  .aboutP{
    font-size: 20px;
    margin: 10px 50px;
    line-height: 40px;
  }
  
  /* PROFITS */
  
  div#profits{
    width: 80%;
    margin-left: 10%;
    height: auto;
    display: flex;
  }
  
  #trust{
    width: 100%;
    padding: 50px 0px;
    background-image: url('/media/aboutBg.jpg');
    height: 70vh;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 0px 50px 2px #37312e; 
    box-shadow: 0px 0px 50px 2px #37312e;
  }
  
  div.profit{
    border-radius: 10px;
    padding: 50px 0px;
    width: 30%;
    margin: 10px auto;
    text-align: center;
    color: white;
  }
  
  div.profit img{
    width: 20%;
  }
  
  div.profit header{
    font-size: 18px;
    margin-top: 20px;
  }
  
  div.profit p{
    margin: 15px 30px;
  }
  


  
  
  /* CTA */
  
  
  
  #toContactForm{
    height: 60vh;
    border-top: 5px solid #236d5e;
    background-image: url('/media/cta.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
  }
  
  .container {
    width: 60%;
    margin: auto;
  }
  #toContactForm header {
    font-size: 50px;
    color: white;
    padding: 25px 0px;
  }
  .button {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0px 24px;
    height: 44px;
    line-height: 44px;
    transition: all 0.25s;
    vertical-align: top;
    margin-right: 10px;
  }
  .button:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .button-readmore {
    display: inline-block;
    background-color:rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.3);
    height: 44px;
    width: 44px;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.35s;
  }
  .button-readmore:hover {
    width: 159px;
    border: 1px solid #fff;
    color: #fff;
  }
  .button-readmore span {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 37px;
    width: 159px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    transition: left 0.25s;
  }
  .button-readmore:hover span {
    left: 0;
  }
  .button-readmore:before {
    position: absolute;
    top: 0;
    left: 0;
    content:"...";
    display: block;
    height: 44px;
    width: 44px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    transition: left 0.35s;
  }
  .button-readmore:hover:before {
    left: -37px;
  }
  
  
  /* FOOTER */
  
  #footer{
    background-color: black;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
  }
  
  
  #copyright{
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
  }
  
  #copyright p{
    margin-left: 10% !important;
    color: white;
  }
  
  #social{
    width: 50%;
    height: 100%;
    display: flex;
  
  }
  
  #social a{
    width: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    color: white;
    transition: 0.2s;
  }
  
  #social a:hover{
    opacity: 0.7;
  }
  
  #reg{
    background-color: #236d5e;
  }
  
  #pol{
    background-color: #37312e;
  }
  
  #rodo{
    background-color: #236d5e;
  
  }
  
  
  
  
  #madeBy{
    width: 100%;
    padding: 30px 0px;
    text-align: center;
    background-color: white;
  }
  
  #madeBy header{
    font-size: 18px;
    font-weight: bold;
    color: black;
    cursor: default;
  }
  
  #madeBy header a{
    text-decoration: none;
    color: #4d5be4;
    border-bottom: 2px solid white;
  }
  