*{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 62.5%;
    font-family: 'Ubuntu', sans-serif;
}

body{
    /* overflow: hidden; */
}

.container{
    padding: 0 calc((100% - 1170px) / 2);
    width: 100%;
}

b{
    font-size: inherit;
}

strong{
    font-size: inherit;
}

q{
    font-size: inherit;
}

q:before,q:after{content:''}


a{
    text-decoration: none;
    color: #000;
}

a:hover{
    color: hsl(107, 29%, 46%);
    text-decoration: none;
}

main{
    width: 100%;
}   

.button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* width: 300px;
    height: 30px; */
    border: 1px #639754 solid;
    color: #639754;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 1.6rem;
    transition: all 0.2s ease-in-out;
}

.button:hover{
    color: #fff;
    background-color: #639754;
}

.nav-wrapper-buttons .button-hover{
    color: #fff;
    background-color: #639754;      
}

.text-preline{
    white-space:pre-line;
}

/* Banner */
.banner{
    width: 100%;
    height: 500px;
}

.banner-slide{
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.banner-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}

.banner-title{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 4.8rem;
    font-weight: normal;
    border-bottom: 1px solid #639754;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 10px;
    font-weight:300;
    /* margin-bottom: 15 px; */
}

.banner-info{
    width: 50%;
}

.banner-info-right{
    width: 50%;
    margin-left: 50%;
}

.banner-text{
    padding-bottom: 60px;
    font-size: 2.8rem;
    white-space: pre-line;
    font-weight:300;
}

.banner-button{
    padding: 16px 28px;
    background: none;
    border: 1px #000 solid;
    border-radius: 5px;
    cursor: pointer;
    font-size: 2rem;
    font-weight:300;
    transition: all 0.2s ease-in-out;
}

.banner-button:hover{
    color: #fff;
    background-color: #639754;    
    border: 1px #639754 solid;

}
/* Header */


.header-wrapper{
    /* border-top: 1px #a0a0a0 solid; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 12px;
    /* margin-top: 12px; */
}

.header-info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.header-info-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
}

.header-info-time{
    font-size: 1.6rem;
}

.header-info-phone{
    font-size: 2.5rem;
}

.header-info-item-img{
    padding-right: 10px;
    -o-object-fit: contain;
       object-fit: contain;
}

.header-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header-nav-list{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 140px;
}

.header-nav-list-item a{
    font-size: 1.8rem;
    padding-right: 30px;
}

.logo{
    font-size: 40px;
}

.nav-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 13px 102px;
}

.nav-wrapper-buttons{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(4, 1fr);
    /* grid-gap: 30px; */
    grid-column-gap: 50px;
    grid-row-gap: 30px;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    padding: 25px 25px;
    /* background-color: #f0f0f085; */
    margin-bottom: 25px;
}

.nav-wrapper-buttons a{
    background-color: #f0f0f0;
}

.nav-wrapper-buttons-container{
    background: url('/img/nav-buttons-bg.png');
    border-radius: 5px;
}

.nav-wrapper-card{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
    -webkit-transition: 0.5s hover ease-in-out;
    -o-transition: 0.5s hover ease-in-out;
    transition: 0.5s hover ease-in-out;
    border-bottom: 1px solid transparent;
    width: 100%;
    flex-grow: 1;
}


.nav-wrapper-card a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: right;
}

.nav-wrapper-card:hover{
    border-bottom: 1px solid #639754;
    -webkit-transition: 0.5s hover ease-in-out;
    -o-transition: 0.5s hover ease-in-out;
    transition: 0.5s hover ease-in-out;
}


.nav-wrapper-card-text{
    padding: 0 20px;
}


.nav-wrapper-card-title{
    font-size: 2.6rem;
}

.nav-wrapper-card-subtitle{
    font-size: 1.6rem;
    color: #639754;
}

/* Info Section */


.info-section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #f0f0f085;
    background-size: contain;
    border-radius: 5px;
}

.info-section-img{
    width: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

.info-text-wrapper{
    width: 60%;
    padding: 50px 20px;
font-size: 1.6rem;
}

.info-text-wrapper-full{
    width: 100%;
    padding: 50px 20px;
font-size: 1.6rem;
}


.info-title{
    font-size: 2.2rem;
    padding-bottom: 30px;
    text-align: justify;	
}

.info-text{
    padding-bottom: 25px;
    text-align: justify;
font-size: 1.6rem;
}


.info-quote{
    white-space: pre-line;
    font-size: 1.6rem;
    font-style: italic;
    border-top: 1px solid #639754;
    margin-top: 20px;
}

.info-quote-top{
    white-space: pre-line;
    font-size: 1.6rem;
    font-style: italic;
    /* border-top: 1px solid #639754; */
    text-align: right;
    margin-bottom: 20px;
}



/* Footer */

footer{
    background-color: #639754;
}

.footer-wrapper{
    padding: 20px 15px;
}

.footer-links-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
}

.footer-links-container div {
    display:flex;
}

.footer-links-container div .footer-links-wrapper {
    padding-right: 30px;
}


.footer-links-title{
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
}

footer a{
    color: #fff;
}

footer a:hover{
    color: #fff;
}

.footer-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    color: #fff;
}

.footer-map-link{
    padding-top: 10px;
}

.footer-map-link a{
    color: #000;
    text-decoration: underline;
}

.footer-map-link a:hover{
    color: #000;
}


.footer-links-item a{
    font-size: 1.6rem;
}

.footer-links-item a:hover{
    color: black;
}

.footer-links-item{
    font-size: 1.6rem;
}

.footer-social-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15px;
}



.social-links-title{
    font-size: 1.8rem;
    color: #000;
    padding-left: 20px;
font-weight: 700;
}

.social-links-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.social-links{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social-links a{
    padding-left: 10px;
}

.hit-link{
    height: 0;
}

@media screen and (max-width: 860px){
    nav{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    nav a{
        margin: 10px 0;
    }

    .button{
        width: auto;
    }

    .nav-wrapper{
        width: 50%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 0 auto;
    }
}

.mainmenubtn {
    border: none;
    cursor: pointer;
    background: none;
    font-size: 1.8rem;
    padding-right: 30px;
}
    
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-child {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    display: none;
    background-color: #FFF;
    width: max-content;
    padding: 10px;
    z-index: 100;
}
.dropdown-child a {
    color: #639754;
    padding: 7px;
    text-decoration: none;
    display: block;
    margin: 0;
}

.dropdown-child a:hover {
    color: #000;
}

.dropdown:hover .dropdown-child {
    display: block;
}