/* 

ALL STYLES HERE

*/


/*** General ***/

body, html{
    margin: 0;
    font-family: 'Lato', sans-serif;
}

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

p{
    margin: 0;
}

a:focus, a:hover{
    text-decoration: none;
    outline: 0;
}

.clearfix:after{
    display: block;
    content: "";
    clear: both;
}

ul, ol{
    list-style:circle;
    padding-left: 0;
}

.wrapping-container{
    max-width: 850px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

/*** header ***/

header{
    position: relative;
    background: #fff;
    width: 100%;
    height: 100px;
}

.main-menu-nav {
    background: #86bcc3;
}

.main-menu-nav ul {
    margin: 0;
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-menu-nav ul li {
    position: relative;
    list-style: none;
}

.main-menu-nav ul li a {
    padding: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-menu-nav ul li ~ li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    margin: 0 -5px;
}

.main-menu-nav ul li a:hover {
    text-decoration: underline;
}

header .logo{
    position: absolute;
    left: -279px;
    top: 0;
}

header .logo h1{
    margin: 0;
    padding: 0;
}

header .menu{
    float: right;
    margin-top: 35px;
    transition: all .5s;
    -webkit-transition: all .5s;
    opacity: 1;
    display: none;
}

header .menu.hide-btn{
    opacity: 0;
}

header .menu-opened{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #e6766c;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: 20px;
}

header .menu-opened a.close-btn{
    display: inline-block;
    margin: 15px 0 30px;
}
header .menu-opened{
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    z-index: -11;
}

header .menu-opened.visible-menu{
    opacity: 1;
    z-index: 999;
}

header .menu-opened ul{
    width: 50%;
    margin: 0 auto 25px;
    list-style: none;
}

header .menu-opened ul li{
    padding: 15px 0 13px;
    border-bottom: 1px solid #f3bbb6;
}

header .menu-opened ul li:last-child{
    border-bottom: none;
}

header .menu-opened ul li a{
    font-size: 17px;
    text-transform: uppercase; 
    line-height: 20px;
    color: #fff;
    font-weight: bold;
}

header .menu-opened ul li a:hover{
    text-decoration: underline;
}

/* Out Team */
.our-team {
    margin-top: 100px;
}

.our-team .team-member {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.our-team .team-member-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
}

/* Cookie bar */
.cookie-container{
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width: 85%;
    margin: auto;
}

#cookies{
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
    display: none;
}

.cookies{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookies a{
    text-decoration: none;
    font-weight: 500;
    color: #86bcc3;
}

#cookies-btn{
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: black;
    color: white;
}

/* content homepage */

#content{
    margin-top: 0px;
    text-align: left;
}

.top-content{
    margin-bottom: 28px;
}

.left{
    width: 100%;
    float: left;
    padding: 0px 15px;
    box-sizing: border-box;
}

.right{
    width: 45%;
    float: right;
    padding: 0px 15px;
    box-sizing: border-box;
}

.left .welcome{
    padding-left: 8px;
}

.left .welcome h2{
    font-size: 24px;
    line-height: 30px;
    color: #3c3c3b;
    display: block;
    margin-bottom: 13px;
    font-weight: bold;
    margin-top: 0;
}

.left .welcome p{
    font-size: 20px;
    line-height: 28px;
    color: #3c3c3b;
    margin-bottom: 10px;
}

.left .welcome small{
    font-size: 14px;
    line-height: 28px;
    color: #3c3c3b;
    margin-bottom: 10px;
}

.right .right-list h2{
    font-size: 24px;
    line-height: 30px;
    color: #7dc298;
    margin-bottom: 21px;
    font-weight: bold;
    padding-left: 8px;
    margin-top: 0;
}

.right .right-list ul li{
    font-size: 17px;
    line-height: 20px;
    color: #7dc298;
    text-transform: uppercase;
    padding: 5px 0 8px 8px;
    border-bottom: 1px solid #7dc298;
    font-weight: bold;
    margin-bottom: 6px;
}

.right .right-list ul li:last-child{
    border-bottom: none;
}

.green-btn{
    font-size: 19px;
    color: #7dc298;
    text-transform: uppercase;
    display: inline-block;
    background: #e5f3ea;
    padding: 9px 16px;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
    margin-left: 10px;
    margin-top: 4px;
}

.green-btn img{
    margin-right: 12px;
}

.green-btn:hover{
    -webkit-box-shadow: 0px 10px 40px 0px rgba(229,243,234,1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(229,243,234,1);
    box-shadow: 0px 10px 40px 0px rgba(229,243,234,1);
}

.wrapping-image{
    max-width: 850px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.img-holder{
    height: 540px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,1);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,1);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,1);
    padding: 15px 20px;
    margin-bottom: -12px;
    background: #fff;
}

.img-holder .image-inner{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../img/sprachtherapie_hannover_11.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.img-holder .image-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-list {
    text-align: left;
}

.img-holder .col-img{
    width: 32%;
    height: 175px;
    overflow: hidden;
    float: left;
    margin-right: 16px;
}

.img-holder .col-img:last-of-type{
    margin-right: 0px;
}

.img-holder .col-img img{
    width: 100%;
}

.page-image-holder{
    height: 175px;
}


/*** page style ***/

.full-text .full-text-inner{
    width: 90%;
    padding-left: 24px;
}

.full-text .full-text-inner h2{
    font-size: 24px;
    line-height: 30px;
    color: #3c3c3b;
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.full-text .full-text-inner p{
    font-size: 16px;
    line-height: 24px;
    color: #3c3c3b;
    margin-bottom: 10px;
}


/*** footer ***/

footer{
    background: url(../img/bgi/footer-img.png) no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.footer-top{
    padding: 65px 0 58px;
    background: url(../img/bgi/footer-top-bg.jpg) no-repeat;
    background-size: cover;
}

.footer-top p{
    font-size: 31px;
    line-height: 37px;
    font-style: italic;
    letter-spacing: -0.3px;
    margin-bottom: 7px;
}

.footer-top small{
    font-size: 17px;
    line-height: 37px;
    text-transform: uppercase;
}

.footer-bottom{
    padding-top: 20px;
    background: #86bcc3;
    padding-bottom: 168px
}

.footer-bottom a.footer-logo{
    margin-bottom: 18px;
    display: inline-block;
}

.footer-bottom p{
    font-size: 20px;
    text-transform: uppercase;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-bottom ul{
    margin-top: 10px;
    list-style: none;
}

.footer-bottom ul li, .footer-bottom ul li a{
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}

.footer-bottom ul li a:hover{
    text-decoration: underline;
}