*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #166a14;
}
@font-face {
    font-family: BebasNeue; 
    src: url("../fonts/BebasNeue Book.otf"); 
}
@font-face {
    font-family: RobotoLight; 
    src: url("../fonts/RobotoLight.ttf"); 
}
.BebasNeue{
    text-align: center;
    color: #166a14;
    font-family: BebasNeue;
    font-weight: 400;
}
.container, .wrapper-header{
    padding: 70px 100px 0;
}
.container{
    display: none;
}
.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0 70px;
}
.wrapper-header{
    display: flex;
}
.header__img{
    width: 100%;
    max-width: 350px;
    margin-right: auto;
}
.place{
    display: none;
    padding: 0 30px;
    margin: 0 auto;
}
.place__pos{
    font-size: 43px;
    letter-spacing: 4.73px;
    margin-bottom: 30px;
}
.place__name{
    font-size: 36px;
    letter-spacing: 3.96px;
    margin-bottom: 30px;
}
.place__rate{
    font-size: 30px;
    letter-spacing: 3.3px;
    margin-bottom: 70px;
}
.rate {
    font-size: 48px;
    letter-spacing: 5.28px;
}
/* .section{
    display: flex;
    flex-direction: column;
} */
.section__name{
    display: inline-flex;
    color: #fff;
    font-family: BebasNeue;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.98px;
    background: #718967;
/*background: #a6c59a;*/    
    padding: 20px 40px;
    text-transform: uppercase;
}
.photo{
    max-width: 100%;
    margin-bottom: 100px;
}
.spinload{
    display: flex;
    width: 35px;
    height: 35px;
    margin-top: 45px;
    border: 3px solid #dbd7d8;
    border-top: 3px solid #166a14;;
    border-radius: 50%;
    margin: auto;
    animation-duration: 1.5s;
    animation: spin 1.5s ease-in-out infinite;
}
@keyframes spin {
        0% {
          transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);  

        }
}
.border-footer{
    position: relative;
    border-top: solid 2px #2eA02f;
    margin: 0 100px 100px;
    padding: 50px;
    display: flex;
    justify-content: flex-start;
}
.footer__mail{
    color: #344434;
    font-family: RobotoLight;
    font-size: 20px;
    letter-spacing: 2.25px;
    margin:auto 0 auto calc(50% - 87.57px);
}
.footer__social{
    margin-left: 30px;
}
.social {
    display: flex;
    align-items: center;
}
.social__vk {
    margin-right: 20px;
    width: 35px;
    height: 22px;
    opacity: 0.6;
}
.social__facebook{
    opacity: 0.6;
}
@media screen and (max-width: 900px){
    .container{
        padding: 5%;
    }
    .wrapper-header{
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .wrapper-header{
        padding: -5%;
    }
    .header__img{
        max-width: 533px;
    }
    .place__pos{
        margin-top: 50px;
    }
    .place__name{
        line-height: 60px;
    }
    .border-footer{
        margin: 0;
        padding: 50px 0;
        justify-content: center;
    }
    .footer__mail{
        margin: auto 0;
    }
    .section__name{
        font-size: 17px;
    }
}