

/*************************
    GENERAL
**************************/
body {
    margin: 0;
    padding: 0;
    background-image: url('images/white-waves.png');
    font-family: 'Lato', sans-serif;
}

.container {
    padding-bottom: 70px;
    background-color: #fff;
}


/*************************
    HEADER
**************************/
header {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
}

#logo {
    padding: 20px;
    float: left;
    background-color: #4aaaa5;
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-left: 149px;
    text-shadow: 1px 1px 2px #000;
    font-family: Arial, Helvetica, sans-serif;
}


/*************************
    NAVIGATION
**************************/

.menu {
    float: right;
    margin-right: 50px;  
}

.menu ul {
    margin-top: 20px;
    padding: 0;
    list-style-type: none;
}

li {
    margin-left: 10px;
    display: inline;
}

a {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

li, 
label,
footer,
a:link, a:visited {
    color: #777777;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}

a:hover {
    color: #4aaaa5;
    border-bottom: 1px solid #4aaaa5;
    transition: 2s;
}


/*************************
    MAIN
**************************/
main {
    padding: 10px;
    border: .5px solid #ddd;
    clear: both;
    background-color: #fff;
    max-width: 960px;
    margin: 20px auto;
    min-height: calc(100vh - 180px);
}

h2 {
    color: #4aaaa5;
    width: 200px;
    font-family: 'Georgia', Times, Times New Roman, serif;
}

h3 {
    font-size: .8rem;
    color: #666;
    text-decoration: underline;
}

p {
    margin: 12px 12px 12px 0;
    color: #777777;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 24px;
}

img.profile-pic {
    margin-top: 30px; 
    height: 100px;
    width: 100px;
    float: left;
    background: #4aaaa5;
    margin-right: 15px;
    shape-outside: circle();
    clip-path: circle();
    border-radius: 50%; 
}


.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.icons-services {
    color: #4aaaa5;
}

/*************************
    FORM
**************************/
fieldset {
    color: #bbb;
}
form {
    width: 600px;
    margin: auto;
    padding: 10px;
}

label {
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 1px;
}

input, textarea {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 5px;
}


input, .btn {
    padding: 3px;
    border-radius: 2px;
}

textarea {
    resize: none;
    border-color: #ccc;
}

.btn {
    background-color: #4aaaa5;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    color: #fff;
    padding: 5px;
    width: 100px;
    outline: none;
    border: none;
    border-radius: 25px;
}

.btn:hover {
    text-transform: uppercase;
    transition: 1s;
    background-color: #fff;
    border: 1px solid #4aaaa5;
    color: #4aaaa5;
}

input[type=text], input[type=email], textarea {
    outline: none;
    color: #000;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
}

input[type=text]:focus, input[type=email]:focus, textarea:focus {
    background-color: rgb(255, 250, 250);
}


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

footer {
    background-color: #666666;
    text-align: center;
    font-size: small;
    color: #bbb;
    padding: 20px 0 10px;
    clear: both;
    border-top: 8px solid #4aaaa5;
}

#webLink {
    color: #4aaaa5;
}

.socialIcons {
    width: 100px;
    border-top: 1px solid #4aaaa5;
    margin: 10px auto;
    padding-top: 5px;
}
.socialIcons i {
    margin: 0 5px;
}
.contactInfo {
    width: 200px;
    margin: 0 auto;
    padding-top: 10px;   
}
.contactInfo a {
    color: #bbb;
    margin-top: 3px;
}


/*************************
    GALLERY
**************************/
.picture-wrapper  {
    margin: 1.66%;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.picture-wrapper .image-tabs {
    width: 33.33%;
    float: left;
    position: relative;
}

.text {
    text-align: center;
    position: absolute;
    top: 78%;
    left: 0;
    background-color: rgb(74, 170, 165, .8);
    text-shadow: 1px 1px 1px #000;
    padding: 3px;
    color: #fff;
    width: 95%;
}

.contact {
    margin-left: 177px;
}

hr {
    border-color: #4aaaa5;
}

.active {
    color: #4aaaa5 !important;
    border-bottom: 1px solid #4aaaa5;
    padding: 3px;
    font-size: .8rem;
    text-transform: uppercase;  
}

.hero-image {
    background-image: linear-gradient(to  bottom right, rgba(52, 151, 151, .4), rgba(151, 151, 151, 0.6 )), url("images/heroPage.jpg");
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }



.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 200;
    letter-spacing: 1px;
    transform: translate(-50%, -50%);
    color: white;
  }


  /* The animation code */
@keyframes example {
    0% {
        color: #4aaaa5;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #ff9800;
    }
  }
  
  /* The element to apply the animation to */
  span, h1 {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 4rem;
  }

  span {
    text-shadow: 2px 2px 3px #000;
    animation-name: example;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  #homeBtn  {
      color: #fff;
      text-decoration: none;
      outline: none;
      border: none;
      padding: 10px 40px;
      background-color: #4aaaa5;
      padding: 5px 40px;
      border-radius: 20px;
      font-size: 20px;
      box-shadow: 0 2px;
      margin-top: 100px;
  }

  #homeBtn a:hover {
      color: #fff;
      text-decoration: none;
  }

  #homeBtn a:active {
      text-shadow: none;
  }

  .hero-text p {
      color: #fff;
  }


/*************************
    Go top button
**************************/
#myBtn {
    display: none;
    position: fixed;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    display: block;
    background-color: #4aaaa5;
    border-radius: 50%;
    color: rgb(204, 204, 204);
    right: 12%;
    bottom: 80px;
  }
  
  #myBtn:hover {
    background-color: rgb(204, 204, 204);
    color: #4aaaa5;
  }
/*************************
    MEDIA QURRIES
**************************/

/* Landscap Mode */
/* @media screen and (max-width: 768) {
    i {
        visibility: hidden;
    }
    #logo {
        width: 50%;
        margin: 0 auto 10px;
        font-size: 24px;
        text-align: center;
        background-color: #fff;
        color: #4aaaa5;
        text-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    .menu {
        width: 100%;
        margin: 15px auto; 
        float: none;
        text-align: center; 
    }


    a.active {
        border-bottom: none;
    }
    .image-tabs p {
        width: 100%;
        top: 72%;
    }

    .picture-wrapper .image-tabs, img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .contact {
        margin-left: 10px;
    }

    h2 {
        margin-top: 50px;
    }

  } */


  
  @media screen and (max-width: 768px) {
      #logo {
          margin-left: 0;
      }
      .picture-wrapper .image-tabs {
          width: 48.33%;
      }
      .text {
          width: 89%;
          top: 78%;
      }

      .picture-wrapper {
          margin-left: 50px;
      }
  }


/* Portrait Mode */
@media screen and (max-width: 568px) {
    #logo {
        width: 90%;
        margin: 0 auto 10px;
        font-size: 24px;
        text-align: center;
        background-color: #fff;
        color: #4aaaa5;
        text-shadow: none;
        border-bottom: 1px solid #ccc;
    }

    .menu {
        width: 100%;
        margin: 15px auto; 
        float: none;
        text-align: center; 
    }

    a.active {
        border-bottom: none;
    }
    
    i {
        visibility: hidden;
    }

    h2 {
        margin-top: 50px;
        font-size: 16px;
    }


    .contact {
        margin-left: 10px;
    }

    form {
        width: 95%;
    }
    
    .picture-wrapper .image-tabs, img {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .image-tabs p {
        width: 100%;
        top: 72%;
    }

    .landingPara {
        visibility: hidden;
    }

    header {
        background-color: #fafafa;
    }

    #myBtn {
        right: 2%;
    }

    main {
        margin-bottom: 0;
    }

    .picture-wrapper {
        margin-left: 6px;
    }

}

@media screen and (max-width: 900px) {
    #logo {
        margin-left: 0;
    }

    .image-tabs img {
        margin-left: -25px;
    }

    .text {
        top: 74%;
        background-color: transparent;
        top: 74%;
    }
}

