@import url('https://fonts.googleapis.com/css?family=Dancing+Script');
@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
    margin: 0;
    padding: 0;

}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    
    background-color: #e9e7e7;
    
    font-family: sans-serif;
}

main {
    font-family: 'Roboto', sans-serif;
}

.wrapper {
    max-width: 90%;
    
    margin: 0 auto;
    
}

.clear {
    clear: both;
}


/* ------ NAVBAR ------ */


nav {
    position: -webkit-sticky;                   /* Safari */
    position: sticky;
    top: 0;
    z-index: 1;

    height: 80px;
    
    background-color: #FFF;
    color: #4a5252;
        
    transition: height .5s;
}

.brand {
    font-family: 'Dancing Script', cursive;
    
    display: flex;
    float: left;
    align-items: center;
    margin-left: 20px;
    height: 80px;
    
    transition: .5s;
}

.brand a {
    text-decoration: none;
    color: #4a5252;
}

.brand a h1 {
    margin: 0;
    font-size: 2em;
}

.logo {
    height: 80px;
    float: right;
    
    transition: .5s;
}

.logo img {
    height: 80px;
    
    transition: .5s;
}

.navbarToggle {
    
    display: none;
    position: relative;
    
    transition: .5s;

}

.navbarSmall {
    height: 60px;
    opacity: 1;
    
    transition: .5s;
}

.navbarSmall .navbarToggle {
    display: flex;
    float: right;
    justify-content: space-around;
    width: 40%;
    align-items: center;
    height: 60px;
    margin: 0;
    position: relative;
    
    font-size: .7em;
    
    margin-right: 5%;
}

.navbarSmall .navbarToggle ul {
    
    list-style: none;
    
    margin: 0;
    padding: 0;
    
    overflow: hidden;
       
}

.navbarSmall .navbarToggle li {

    display: flex;
    float: left; 
    width: 200px;
    justify-content: center;
}

.navbarSmall .navbarToggle a {
    color: #4a5252;
    text-decoration: none;
    font-size: 1.6em;
    text-transform: uppercase;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 60px;
    padding: 0 20px;
    width: 100%;
         
}

.navbarSmall .navbarToggle a::before {
 
    content: '';
    width: 100%;
    position: absolute;
    border-bottom: 6px solid #4a5252;
    bottom: 0;
    right: 330px;
    
    transition: 0.5s all;
         
}

.navbarSmall .navbarToggle a:hover::before,
.navbarSmall .navbarToggle a.active::before
 {
    
    right: 0;
}

.navbarSmall .brand {
    height: 60px;
                
    transition: .5s;
}

.navbarSmall .brand h1 {
    font-size: 1.5em;
}

.navbarSmall .logo img {
    height: 60px;
}

.menu-icon{
    display: none;
    
    cursor: pointer;
}

.menu-icon i {
    display: flex;
    float: right;
    height: 60px;
    
    align-items: center;
}



/* ------ SLIDESHOW ------- */

.intro {
    height: 100vh;
    background: #FFF;
}

#accordion {
    height: 35em;
    background: url(img/accordion01.jpg) no-repeat 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    
    border-bottom: solid 50px #4a5252;
}

.adress {
    display: block;
    padding: 30px;
    float: right;
    z-index: 0;
    
    position: absolute;
    top: 10em;
    right: 10em;
    
    background: rgba(242, 241, 233, 0.8);
    
    border-radius: 15px;
    
    text-align: right;
    color: #4a5252;
    
}

.adress h2 {
    margin: 5px 0;
    text-transform: uppercase;
    font-size: 2em;
}

.adress p {
    font-weight: 600;
}

.icon-banner {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.menu-btn {
    box-sizing: border-box;
    cursor: pointer;
    
    display: inline-block;
    position: relative;
    top: -90px;
    padding: 5%;
    margin: 0 6%;
    
    background: rgba(150, 126, 105, 1);
    text-align: center;
    
    border-radius: 35px;
    border: 2px solid white;
    box-shadow: 0 0 0 10px rgb(150, 126, 105), 5px 5px 10px rgba(0, 0, 0, 0.4);
    
    transition: .5s;
}

.menu-btn a {
    text-decoration: none;
}

.menu-btn:hover {
    background:  #786554;
    
    position: relative;
    top: -100px;
    
    box-shadow: 0 0 0 10px #786554, 10px 10px 20px rgba(0, 0, 0, 0.4);    
}

.menu-btn h3{
    display: block;
    
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.5em;
    color: #faf8eb;
}

.menu-btn .icon {
    margin-top: 20px;
    color: #faf8eb;
}


.card {
    margin: 0;
    padding: 80px 40px;
        
    text-align: center;
    
    color: #4a5252;  
}

.card h2 {
    margin-bottom: 30px;
    padding: 10px;
    
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 15px;
    font-size: 2.3em;
    font-weight: 700;
    
    border-bottom: solid 1px #4a5252;
}

.card p {
    margin-bottom: 40px;
}

.card_content {
    width: 80%;
    margin: 0 auto;
}

.card-text {
    display: inline-block;
    width: 100%;
    float: right;
        
    margin: 20px;
    margin-right: 0px;
    padding: 40px;
    
    border-radius: 5px;
    
    text-align: right;
    font-size: 1.3em;    
}

.card-text table {
    text-align: left;
    width: 100%;
    
    font-size: .9em;
    
    cursor: default;
}

.card-text th {

    padding: 5px;
    padding-left: 15px;
    
    text-transform: uppercase;
    letter-spacing: 3px;
}

.card-text tr {
    line-height: 40px;
    
    transition: .3s;
}

.card-text tr:first-child:hover {
    background: rgba(255, 255, 255, 0);
    border: none;
}

.card-text tr:hover {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px grey;
}

.card-text tr td {
    padding-left: 15px;
}

.more {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 1.2em;
    
    width: 30%;
    padding: 20px;  
    margin: 60px auto 0;
    
    transition: .5s;
    
}

.more > i {
    padding-left 0;
    
    color: #6b734d;
    
    transition: .5s;
}

.more:hover > i {
    padding-left: 10px;
    color: #f2f2f2;
}

.card_1 {
    background: url(img/contacts-bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}

.card_1 .card-text {
    background: rgba(107, 115, 77, .4);
}

.card_1 .more {
    border: solid 2px #6b734d;
    color: #6b734d;
    background: none;
    
    transition: 0.3s;
}

.card_1 .more:hover {
    background: #6B734D;
    color: #f2f2f2;
}

.card_2 {
    background: #99a375;
    color: #f2f2f2;
}

.card_2 h2 {
    border-color: #f2f2f2;
}

.card_2 .box_em {
    display: inline-block;
    float: left;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 20%;
    height: 15vw;
    margin: 20px;
    
    border-radius: 20px;
    border: solid 3px #f2f2f2;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    background: #99a375; 
    
}

.card_2 .box_em:hover {    
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
}

.card_2 .box_em img {
    width: 50%;
}

.card_2 .box_em a {
    display: block;
    margin-top: 5%;
    
    font-size: 2em;
    text-decoration: none;
    color: #f2f2f2;
}

.card_2 .more {
    width: 35%;
    background: #99a375;
    border: solid 3px #f2f2f2;
}

.card_2 .more > i {
    color: #f2f2f2;
}

.card_3 {
    color: #f2f2f2;
    background: url(img/accordion01.jpg) no-repeat bottom;
    background-size: cover;
    background-attachment: fixed;
}

.card_3 .card_content {
    background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    padding: 40px;
}

.input-line {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    width: 50%;
}

.input-line .input-label{
    background: pink;
    margin: 0;
    display: inline-block;
    color: black;
    padding: 20px;
    width: 60px;
    float: left;
}

.card_3 input[type=text], .card_3 input[type=password] {
    display: flex;
    width: 100%;
    padding: 12px 20px;
    color: grey;
}

.card_3 button {
    display: block;
    
    margin: 20px auto;
    padding: 20px;
    width: 50%;
    
    background: pink;
    border: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #f2f2f2;
    font-weight: bold;
}
























/* MEDIA QUERIES */

@media screen and (max-width: 800px){
    .brand {
        font-size: .9em;
        height: 80px;
        width: 70%;
    }
    
    .logo {
        display: none;
    }
    
    .menu-icon {
        display: flex;
        float: right;
        align-items: center;
        height: 80px;
        margin: 0;
        margin-right: 20px;
        
        transition: height 0.5s;
    }
    
    .responsive  {
        position: absolute;
        right: 0;
        top: 80px;
        display: block;
        margin: 0;
        width: 40%;        
    }
    
    .responsive  li {
        display: flex;
        height: 80px;
        justify-content: center;
        
        text-transform: uppercase;
        
        background: #faf8eb;
        border-top: solid 1px #4a5252;
        
    }
    
    .responsive li a {
        display: flex;
        float: right;
        
        align-items:  center;
        height: 80px;
        
        text-decoration: none;
        color: #4a5252;
        font-size: 1.1em;
    }
    
        
    .navbarSmall .brand {
        width: 65%;
    }
    
    .navbarSmall .brand h1 {
        font-size: 1.8em;
        
    }
    
    .navbarSmall .logo {
        display: none;
    }
    
    .navbarSmall .menu-icon {
        height: 60px;
    }
    
    .navbarSmall .navbarToggle {
        display: none;

    }
    
    .navbarSmall .responsive  {
        display: block;
        margin: 0;
        width: 40%;
        
        position: absolute;
        top: 60px;
    }
    
    .navbarSmall .responsive  li {
        display: flex;
        background: #faf8eb;
        width: 100%;
        height: 60px;
        
        border-top: solid 1px #4a5252;
        
    }
    
    .navbarSmall .responsive  li a {
        float: right;
        width: 100px;

    }
    
    .navbarSmall .responsive a::before {
        display: none;
    }
    
    
    
    .adress {
        font-size: .8em;
    }
    
    .menu-btn h3 {
        font-size: 1em;
    }
}
