/* Box Model Hack */

html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }



  /* * * * * * * * * * * * *    GLOBAL    * * * * * * * * * * * *  */



  body {
      font-family: 'Open Sans', sans-serif;
      background-color: #000000;
  }

  a[href^="tel"] {
      color: white;
  }

  h1 {
      color: white;
      font-size: 48px;
      font-weight: 300;
  }

  .blue_text {
      color: #00a1e4;
  }

  p {
      color: white;
      font-size: 16px;
      font-weight: 300;
      letter-spacing: .05em;
      line-height: 1.5;
      margin: 0;
  }

  .secondary_text {
      font-size: 13px;
      color: #999999;
      padding-top: 10px;
  }

  section {
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    width: 70%;
    padding: 30px 0;
    margin: 121px auto 0;
  }

  /* div {
      border: 1px solid red;
  } */


  @media (max-width: 768px){

    h1 {
        font-size: 40px;
        padding-left: 15px;
        padding-right: 5px;
    }

    section {
        border-top: 2px solid #404040;
        border-bottom: 2px solid #404040;
        width: 95%;
    }

}


  @media (max-width: 480px){

    h1 {
        font-size: 22px;
        padding-left: 15px;
        padding-right: 5px;
    }

    section {
        border-top: 1.5px solid #404040;
        border-bottom: 1.5px solid #404040;
        width: 95%;
        padding: 35px 0 20px;
        margin: 132px auto 0;
      }

    p {
        font-size: 14px;
        padding: 0 15px 0;
    }
}


  /* * * * * * * * * * * * *    HEADER    * * * * * * * * * * * *  */



  header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 50px 50px 25px;
  }

  .header_bar {
      background-color: black;
      height: 120px;
      width: 100%;
      position: fixed;
      top: 0;
      z-index: 9999;
  }

  .nav_group {
      display: flex;
      justify-content: right;
  }

  .nav {
      padding-left: 50px;
  }
  
  .nav a {
      color: white;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
  }

  .active {
        border-bottom: 1.5px solid white;
        padding-bottom: 8px;
  }
  
  .nav a:hover {
      border-bottom: 1.75px solid #00a1e4;
      padding-bottom: 8px;
  }


  @media (max-width: 768px){

    header {
        padding: 50px 30px 25px;
    }

}


  @media (max-width: 480px){

    header {
        display: inline-block;
        padding: 25px 25px 25px;
    }

    .header_bar {
        height: 130px;
    }

    .nav {
        /* justify-content: center; */
        padding-top: 20px;
        padding-left: 0;
        padding-right: 35px;
        /* text-align: center; */
    }

    header img {
        width: 85%;
    }
}



/* * * * * * * * * * * * *    PORTFOLIO    * * * * * * * * * * * *  */



    .full_width {
        margin: 15px 0;
    }

    .added_margin {
        margin: 15px 0;
    }

    .two-column {
        display: flex;
        justify-content: space-between;
        margin: 15px 0;
    }

    .half_width_left {
        width: 100%;
        height: 100%;
        padding-right: 15px;
    }

    .half_width_right {
        width: 100%;
        height: 100%;
        padding-left: 15px;
    }

    .text_container {
        width: 49%;
        margin: 15px 0 50px;
    }


    @media (max-width: 480px){
    
        .full_width {
            margin: 5px 0;
        }
    
        .added_margin {
            margin: 5px 0;
        }
    
        .two-column {
            display: inline-block;
        }
    
        .half_width_left {
            width: 100%;
            padding-right: 0;
            margin-bottom: 8px;
        }
    
        .half_width_right {
            width: 100%;
            padding-left: 0;
            margin-top: 8px;
        }

        .text_container {
            width: 100%;
            margin: 5px 0 10px;
        }

        .text_container:nth-of-type(2) {
            margin-top: 25px;
        }
    }
    


/* * * *    HOVER    * * * */



    .holder {
        position: relative;
    }

    .holder02 {
        position: relative;
    }

    .overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: black;
      }

      .holder:hover .overlay {
        opacity: .85;
      }

      .holder02:hover .overlay {
        opacity: .75;
      }

      .photo_text_01 {
        color: white;
        font-weight: 300;
        font-size: 36px;
        text-align: center;
      }

      .photo_text_02 {
        color: #00a1e4;
        font-size: 36px;
        font-weight: 300;
        top: 50%;
        left: 50%;
        text-align: center;
      }

      a {
        text-decoration: none;
        }
        
      a:visited {
        text-decoration: none;
      }


      @media (max-width: 768px){

        .photo_text_01 {
            font-size: 30px;
          }
    
          .photo_text_02 {
            font-size: 30px;
          }
    
    }


      @media (max-width: 480px){
    
        /* .holder:hover, .holder:focus, .holder:active {
            opacity: .85;
        }
    
        .holder02:hover, .holder02:focus, .holder02:active {
            opacity: .75;
        } */

        .photo_text_01 {
            font-size: 18px;
            font-weight: 600;
          }
    
          .photo_text_02 {
            font-size: 18px;
            font-weight: 600;
          }
    }



/* * * * * * * * * * * * *    CONTACT    * * * * * * * * * * * *  */



.container_two-column {
    display: flex;
    justify-content: space-between;
}

.container_left {
    padding-right: 25px;
}

form {
    width: 1800px;
    padding-left: 25px;
  }

.form_text {
    color: white;
    font-size: 8.5pt;
    letter-spacing: .05em;
    font-weight: 600;
    margin: 15px 0 4px;
}

input[type="text"]{
    border: none;
    background-color: #262626;
    color: white;
    font-size: 12px;
    padding: 15px;
    width: 100%;
}
  
textarea {
    border: none;
    background-color: #262626;
    width: 100%;
    padding: 15px;
    color: white;
    font-size: 12px;
    line-height: 1.75;
    height: 125px;
}

label {
    width: 0;
    height: 0;
    overflow: hidden;
    display: block;
    visibility: hidden;
}

input[type="submit"]{
    border: none;
    background-color: #262626;
    color: white;
    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 600;
    padding: 15px 45px;
    margin-top: 35px;
}

.border {
    border: 2px solid #00a1e4;
}


@media (max-width: 768px){

    .container_two-column {
        display: block;
    }

    .container_left {
        padding: 0;
    }

    form {
        width: 100%;
        padding: 0 15px;
        margin-top: 50px;
    }

    .form_text {
        font-size: 10pt;
    }

}


@media (max-width: 480px){

    .container_two-column {
        display: block;
    }

    .container_left {
        padding: 0;
    }

    form {
        width: 100%;
        margin-top: 30px;
    }

      .form_text {
        font-size: 9pt;
        padding: 0;
    }
}


/* * * * * * * * * * * * *    FOOTER    * * * * * * * * * * * *  */

  

  footer {
      width: 70%;
      margin: 0 auto;
      padding: 25px 0 100px;
      display: flex;
      justify-content: space-between;
  }

  .footer_text {
      color: white;
      font-size: 8.5pt;
      letter-spacing: .05em;
      line-height: 1.75;
      font-weight: 600;
      text-decoration: none;
  }


  @media (max-width: 768px){

    footer {
        width: 95%;
    }

}


  @media (max-width: 480px){
      
    footer {
        width: 100%;
        margin: 0 auto;
        padding: 25px 25px 50px;
        display: inline-block;
    }

    .footer_text {
        color: white;
        font-size: 9pt;
        letter-spacing: .05em;
        line-height: 3;
    }

    footer p {
        padding-left: 0;
    }
}