@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);
#main {
    width: 100%;
    padding: 0;
}
.margin-top-10 {
    padding-top: 10px;
}
.margin-bot-10 {
    padding-bottom: 10px;
}
#parallax h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: black;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 25px;
}
#parallax h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 70px;
    letter-spacing: 10px;
    text-align: center;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
}
.slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    line-height: 0;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: black;
}
#parallax p {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.fa {
    opacity: 1;
    color: #3b8595;
}
h4 {
    font-size: 1.8em;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    color: #3b8595;
    opacity: 0.8;
}
.fa,
.fa-heartbeat {
    position: relative;
    animation: open-page 2.4s;
    position: relative;
}
@keyframes open-page {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.icons {
    padding-top: 25px;
    display: inline-block;
    text-align: center;
    transform: scale(1);
    transition-duration: 0.5s;
    cursor: pointer;
}
.icons:hover {
    transform: scale(1.2);
    transition-duration: 1s;
}
.icons >.fa {
    animation: pulse 5s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
h5 {
    font-size: 1.1em;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
}
.container {
    position: relative;
    width: 49%;
    padding-bottom: 10px;
    padding-right: 5px;
}
.photo {
    display: block;
    width: 100%;
}
.flex2 .container:nth-child(1) {
    margin-bottom: 35px;
}
.flex2 .container:nth-child(2) {
    margin-bottom: 35px;
}
.flex2 .container:nth-child(3) {
    margin-bottom: 35px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 99%;
    height: 96%;
    opacity: 0;
    transition: .5s ease;
}
.container:hover .overlay {
    opacity: 0.6;
}
.overlay_description {
    font-size: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.button {
    font-size: 1.2em;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    padding: 12px;
    width: 30%;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid grey;
    margin:0 auto;
    display: block;
    text-align: center;
    background-color: #3B8595;
    transition-property: background-color;
    transition-duration: 0.5s;
}
.button:hover {
    transition-property: background-color;
    transition-duration: 0.5s;
    color: #3B8595;
    background-color: #fff;
    cursor: pointer;
}
.fa-chevron-down{
    margin-bottom: 20px;
    color: white;
}
/* Section - Title */
/**************************/

#parallax .title {
    background: white;
    padding: 45px;
    margin: 0 auto;
    text-align: center;
}
#parallax .title h1 {
    font-size: 2.4em;
    letter-spacing: 8px;
       font-family: 'Oswald', sans-serif;
    
    font-weight: 400;
    text-transform: uppercase;
    color: black;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 25px;
}
/* Section - Block */
/**************************/

#parallax .block {
    background: white;
    padding: 45px;
    width: 820px;
    margin: 0 auto;
    text-align: justify;
}
/* Section - Parallax */
/**************************/

#parallax .parallax-one {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../img/1.jpg');
    animation: filter-animation 6s;
    -webkit-animation: filter-animation 6s;
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
@keyframes filter-animation {
    0% {
        filter: grayscale(1);
        -webkit-filter: grayscale(1)
    }
    100% {
        filter: grayscale(0);
        -webkit-filter: grayscale(0)
    }
}
#parallax .parallax-two {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(../img/3.jpg);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#parallax .parallax-three {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(../img/2.jpg);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.flex1 {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
    padding-bottom: 35px;
}
.testimonial {
    width: 50%;
    background-color: #eeeeee;
    padding: 15px;
    text-align: center;
    border-right: 7px solid white;
}
.testimonial img {
    border-radius: 50%;
}
.testi {
    font-size: 1.2em;
}
.letter {
    background-color: #424242;
    text-align: center;
    color: white;
    padding-top: 1px;
    padding-bottom: 40px;
}
.contact {
    text-align: center;
    padding-top: 20px;
}
footer {
    text-align: center;
    display: block;
    padding-top: 25px;
}
#credits {
    font-family: 'Arial';
    font-size: 0.8em;
    text-decoration: none;
}
#mylink {
    text-decoration: none;
}
#parallax .line-break {
    border-bottom: 1px solid black;
    width: 150px;
    margin: 0 auto;
}

#mu-contact {
    background-color: #fff;
    display: inline;
    float: left;
    width: 100%;
}

.mu-contact-area {
    display: inline;
    float: left;
    
    width: 100%;
}

.mu-contact-header {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
}

.mu-contact-content {
    display: inline;
   
    margin-top: 50px;
    width: 100%;
    padding: 0 20%;
}

.mu-contact-form {
    text-align: center;
    padding-bottom: 10px;
}

.mu-contact-form .form-group input {
    background: transparent;
    color: #333;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 15px;
    height: 45px;
    margin-bottom: 24px;
}

.mu-contact-form .form-group textarea{
    color: #333;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 18px;
    padding: 15px;
    height: 190px;
}

.mu-contact-form .form-control:focus {
    background-color: #fff;
    outline: 0;
    box-shadow: none;    
} 

.mu-contact-form .form-control::-webkit-input-placeholder {
    color: #888;
    font-size: 15px;
}

.mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */
    color: #888;
    font-size: 15px; 
}

.mu-contact-form .form-control::-moz-placeholder {  /* Firefox 19+ */
    color: #888;
    font-size: 15px;
}

.mu-contact-form .form-control:-ms-input-placeholder {  
    color: #888;
    font-size: 15px;
}

.mu-contact-form .button-default::after,
.mu-contact-form .button-default > span {
    padding: 12px 40px;  
}

#form-messages {
    margin-bottom: 10px;
    background-color: #fff;
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.mu-send-msg-btn {
    margin-top: 10px;
}

/* Media Queries */
/**************************/

@media screen and (max-width: 959px) and (min-width: 768px) {
    #parallax .block {
        padding: 40px;
        width: 620px;
    }
   .slogan {
        font-size: 10px;
    }
    #parallax .title h1 {
        font-size: 29px;
    }
}
@media screen and (max-width: 767px) {
    #parallax .block {
        padding: 30px;
        width: 420px;
    }
    .slogan p {
        font-size: 9px;
    }
    #parallax .title h1 {
        font-size: 22px;
    }
    #parallax h2 {
        font-size: 28px;
    }
    h4 {
        font-size: 1.6em;
    }
    #parallax .block {
        padding: 30px;
    }
    #parallax .parallax-one,
    #parallax .parallax-two,
    #parallax .parallax-three {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .flex1 {
        display: flex;
        justify-content: space-between;
        width: 99%;
        margin: 0 auto;
        padding-bottom: 35px;
    }
}
@media screen and (max-width: 438px) {
    .slogan {
        font-size: 8px;
    }
    #parallax .title h1 {
        font-size: 18px;
    }
    h4 {
        font-size: 1.3em;
    }
    h5 {
        font-size: 0.9em;
    }
    #parallax .block {
        padding: 30px 15px;
        width: 290px;
    }
    .flex1 {
        display: block;
        width: 99%;
    }
    .testimonial {
        width: 98%;
    }
    .testi {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 374px) {
    .slogan {
        font-size: 8px;
    }
    #parallax .title h1 {
        font-size: 18px;
    }
    h4 {
        font-size: 1.3em;
    }
    h5 {
        font-size: 0.9em;
    }
    #parallax .block {
        padding: 30px 15px;
        width: 290px;
    }
    .flex1 {
        display: block;
        width: 99%;
    }
    .testimonial {
        width: 98%;
    }
    .testi {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 320px) {
    .slogan {
        font-size: 5px;
    }
    #parallax .title h1 {
        font-size: 18px;
    }
    h4 {
        font-size: 1.3em;
    }
    h5 {
        font-size: 0.9em;
    }
    #parallax .block {
        padding: 30px 15px;
        width: 290px;
    }
    .flex1 {
        display: block;
        width: 99%;
    }
    .testimonial {
        width: 98%;
    }
    .testi {
        font-size: 1em;
    }
}