/* font */
@font-face {
    font-family: 'Montserrat-Light';
    src: url('../assets/fonts/RobotoSlab-Light.ttf');
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../assets/fonts/RobotoSlab-Regular.ttf');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../assets/fonts/RobotoSlab-Bold.ttf');
}
/* font end */


/* nav */
ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: white;
    width: 100%;
    position: fixed;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.27);
    z-index: 10;
}

.logo{
    position: absolute;
    width: 95px;
    height: 95px;
    margin-left: 100px;
    padding: 15px 5px;
    transition: 250ms;
}

.logo:hover{
    height: 100px;
    width: 100px;
    transition: 250ms;
}

ul.topnav li {
    float: left;
}

.right {
    float: right;
    margin-right: 8%;
    padding: 10px;
}

ul.topnav li a {
    display: block;
    color: #8b7d68;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat-Bold';
    font-size: 14px;
    letter-spacing: 1px;
}

ul.topnav li a.active {
    color: #4CAF50;
}

ul.topnav li a:hover {
    text-decoration: underline;
    transition: 500ms;
}

.burger{
    display: none;
    cursor: pointer;
}

.hearth{
    color: red;
    font-size: 15px;
}

/* quote */

.quote{
    position: relative;
    margin-top: 300px;
}

.quote-symbol{
    position: absolute;
    background-image: url("../assets/pics/quote.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 9vw;
    width: 9vw;
}

.quote-text{
    color: white;
    font-size: 3vw;
    padding: 3vw 3vw;
}

.quote-text strong{
    font-family: Montserrat-Bold;
}

.quote hr{
    width: 15vw;
    margin: 0px;
    border-top: 2px solid white;
    margin-left: 54px;
    margin-top: -20px;
}

@media screen and (max-width: 800px) {
    .slider2{
        height: 100%;
    }

    .quote-symbol{
        height: 14vw;
        width: 14vw;
    }

    .quote-text{
        font-size: 6vw;
        padding: 6vw 6vw;
    }

    .quote hr{
        width: 24vw;
        margin-left: 30px!important;
    }

    .quote{
        margin-top: 150px;
    }

    .button-down{
        margin-top: 50px;
        margin-left: 20px;
    }

}

/* quote end */

@media screen and (max-width: 800px) {

    ul.topnav li.right, ul.topnav li {
        float: none;
        top: -30px!important;
    }

    .right{
        position: fixed;
        background-color: white;
        top: 0;
        left: 0;
        right: 0;
        z-index: -1;
        margin: 0!important;
    }

    .burger{
        display: block!important;
        width: 25px;
        height: 25px;
        padding: 30px;
        float: right;
    }

    .logo{
        margin: 0px!important;
        width: 60px;
        height: 60px;
        padding: 10px;
        position: relative;
    }

    .logo:hover{
        height: 60px;
        width: 60px;
    }
}
/* nav end*/

/* footer */
.footer{
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #8b7d68;
}
.footer a{
    color: #8b7d68;
    text-transform: uppercase;
    font-family: Montserrat-Bold;
    text-decoration: none;
    font-size: 13px;
}
/* footer end */