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

body{
    position: relative;
    min-height: 100vh;
}

p{
    margin: 0px;
    padding: 0px;
}

a{
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.information-wrapper{
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.information{
    display: flex;
}

.info{
    display: flex;
    align-items: center;
    margin-right: 50px;
}


.info img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.info p{
    font-size: 16px;
    font-weight: 400;
    color: #00AC59;
}

.info a{
    font-size: 16px;
    font-weight: 400;
    color: #00AC59;
}

.info:last-child{
    margin-right: 0px;
}

@media screen and (max-width:1200px) {
    .info a, .info p{
        font-size: 15px;
    }
}


.header-wrapper{
    width: 100%;
    background-color: #00AC59;
    height: 80px;
    display: flex;
    justify-content: center;
    position: relative;
}

.header{
    display: flex;
    align-items: center;
}

.logo{
    margin-right: 100px;
    margin-top: 5px;
}

@media screen and (max-width:1200px) {
    .logo{
        margin-right: 50px;
    }
}

.menu-link{
    color: white;
    font-size: 15px;
    margin-right: 60px;
}

.menu-link:last-child{
    margin-right: 0px;
}

.active-link{
    font-weight: 700;
}



.recall-button{
    margin-left: 100px;
}

.recall-button:hover{
    cursor: pointer;
}

.recall-button p{
    font-size: 12px;
    font-weight: 300;
    color: white;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.35);
    padding: 12px 13px 12px 13px;
}

@media screen and (max-width:1200px){
    .recall-button{
        margin-left: 50px;
    }
}

.burger-menu{
    display: none;
    margin-left: 20px;
}


.burger-icon{
    width: 20px;
    height: 20px;
}

.burger-icon:hover{
    cursor: pointer;
}

@media screen and (max-width:1110px){
    .burger-menu{
        display: block;
    }

    .menu{
        display: none;
    }

    .recall-button{
        display: none;
    }

    .information{
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
        text-align: center;
    }

    .info{
        margin-top: 15px;
    }

}

.burger-frame{
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    width: 100% !important;
    left: 0;
    top: 80px;
    z-index: 99;
    min-height: auto;
    background-color: #00AC59 !important;
    padding-bottom: 20px;
    visibility: hidden;
}

.burger-frame.active-frame{
    visibility: visible;
}

.br-menu-link{
    color: white;
    font-size: 15px;
    margin-top: 20px;
}

/* СЛАЙДЕР */

/* Собственно сам слайдер */
.slider{
    max-width: 100%;
    position: relative;
    margin: auto;
    height: 700px;
    margin-bottom: 15px;
    background-color: black;
}

/* Картинка масштабируется по отношению к родительскому элементу */
.slider .item img {
    object-fit: cover;
    width: 100%;
    height: 700px;

    border: none !important;
    box-shadow: none !important;
}

/* Кнопки вперед и назад */

.arrows-and-dots-wrapper{
    position: absolute;
    right: 0;
    top: 0;
    height: 700px;
    padding-right: 35px;
    padding-left: 35px;
    background: linear-gradient(270deg, rgba(31, 31, 31, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
}


@media screen and (max-width: 700px) {
    .slider{
        height: 400px;
    }

    .slider .item img{
        height: 400px;
    }

    .arrows-and-dots-wrapper{
        height: 400px;
    }

}




/* .slider .prev, .slider .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
/* При наведении на кнопки добавляем фон кнопок */
.slider .prev:hover,
.slider .next:hover {
    cursor: pointer;
}


/* Кружочки */
.slider-dots {
    display: flex;
    flex-direction: column;
    margin: 35px 0px;
}

.slider-dots_item{
    cursor: pointer;
    height: 6px;
    width: 6px;
    margin: 0px auto;
    margin-bottom: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slider-dots_item:last-child{
    margin-bottom: 0px;
}

.active,
.slider-dots_item:hover {
    width: 10px;
    height: 10px;
    background-color: #2C2634;
}
/* Анимация слайдов */
.slider .item {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}



.main{
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-logo{
    margin-right: 65px;
}

@media screen and (max-width: 720px){
    .main{
        display: flex;
        flex-direction: column;
    }

    .second-logo{
        margin-right: 0px;
    }
}


.description{
    width: 600px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #2C2634;
}

.achieve-wrapper{
    margin-top: 30px;
    padding-bottom: 220px;
}

.first-block-ach{
    display: flex;
    margin: auto;
    max-width: 870px;
}

.second-block-ach{
    display: flex;
    margin: auto;
    max-width: 300px;
    margin-top: 30px;
}

.achieve{
    width: 126px;
    text-align: center;
    margin-right: 125px;
}

.achieve:last-child{
    margin-right: 0px;
}

.achieve-icon{
    width: 60px;
    height: 60px;
    background-color: #00AC59;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 5px;
}

.achieve-icon img{
    width: 35px;
    height: 35px;
}

.achieve p{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2C2634;
}

.adapt-achieve{
    display: none;
}

@media screen and (max-width: 705px) {
    .description{
        text-align: center;
        width: 100%;
    }

    .achieve-wrapper{
        display: none;
    }

    .adapt-achieve{
        display: block;
        padding-bottom: 220px;
    }

    .achieve-icon{
        width: 80px;
        height: 80px;
    }

    .achieve-icon img{
        width: 40px;
        height: 40px;
    }

    .achieve-icon p{
        font-size: 20px;
    }
}


.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.logo-and-buttons-wrapper{
    width: 100%;
    height: 120px;
    background-color: #00AC59;
    padding-top: 30px;
}

.logo-and-buttons{
    max-width: 1088px;
    display: flex;
    align-items: center;
    position: relative;
    margin: auto;
}

.buttons{
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
}

@media screen and (max-width: 595px){
    .logo-and-buttons-wrapper{
        height: 140px;
    }

    .logo-and-buttons{
        display: flex;
        flex-direction: column;
    }

    .buttons{
        position: relative !important;
        padding-top: 10px;
    }

    .buttons .recall-button{
        margin-left: 0px;
    }
}


.call-button{
    margin-left: 35px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 10px 15px 10px 15px;
}

.call-button a{
    font-size: 12px;
    font-weight: 300;
    color: #2C2634;
}

.footer-info{
    width: 100%;
    height: 21px;
    background-color: #2C2634;
}

.footer-info{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info p{
    font-family: 'Kurale', serif;
    font-size: 12px;
    color: #A3A3A3;
}







/* ROOMS */


.rooms-title{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.rooms-title p{
    font-family: 'Kurale', serif;
    font-size: 45px;
    color: #00AC59;
}

.rooms-title span{
    font-size: 16px;
    font-weight: 300;
    color: #2C2634;
}


/* Собственно сам слайдер */
.slider-room{
    max-width: 550px;
    position: relative;
    height: 400px;
    margin-bottom: 15px;
    background-color: black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    margin-right: 25px;
}
/* Картинка мастабируется по отношению к родительскому элементу */
.slider-room .item-room img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    border: none !important;
    box-shadow: none !important;
}

.prev-room{
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #2c2634ea;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100px;
    margin-left: 5px;
}

.prev-room:hover{
    cursor: pointer;
}

.next-room{
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #2c2634ea;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100px;
    margin-right: 5px;
}

.next-room:hover{
    cursor: pointer;
}

.slider-room .item-room {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

.rooms-wrapper{
    margin-top: 50px;
    padding-bottom: 250px;
}

.room{
    display: flex;
    align-items: center;
    max-width: 980px;
    margin: auto;
    margin-top: 30px;
}

.room:first-child{
    margin-top: 0px;
}




.info-room-title{
    display: flex;
    align-items: center;
}

.info-room-title p{
    font-family: 'Kurale', serif;
    font-size: 40px;
    color: #00AC59;
}

.info-room-title span{
    margin-left: 10px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #006936;
}

.main-info-wrapper{
    display: flex;
}

.main-info-blocks{
    margin-left: 20px;
}

.main-info-blocks:first-child{
    margin-left: 0px;
}

.info-block{
    margin-top: 10px;
}

.info-block:first-child{
    margin-top: 0px;
}

.main-info-title{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}


.main-info-title p{
    color: #2C2634;
    font-weight: 500;
    font-size: 16px;
    margin-left: 5px;
}

.point {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.point:first-child{
    margin-top: 0px;
}

.point span{
    width: 3px;
    height: 3px;
    background-color: #2C2634;
    border-radius: 100px;
    margin-right: 5px;
}

.point p{
    font-size: 14px;
    font-weight: 400;
    color: #2C2634;
}

.price{
    display: flex;
    align-items: flex-end;
    justify-content: end;
}

.price p{
    font-size: 35px;
    font-weight: 500;
    color: #2C2634;
}

.price span{
    margin-bottom: 8px;
    margin-left: 5px;
    font-size: 17px;
    font-weight: 400;
    color: #2C2634;
}

@media screen and (max-width: 900px) {
    .room{
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }
    
    .slider-room{
        max-width: 100%;
        height: 500px;
        margin-right: 0px;
    }
    .slider-room .item-room img{
        height: 500px;
    }

    .info-room-title p{
        font-size: 45px;
    }

    .main-info-title p{
        font-size: 20px;
    }

    .point p{
        font-size: 16px;
    }

    .price p{
        font-size: 42px;
    }

    .price span{
        font-size: 19px;
    }


}







.map-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

@media screen and (max-width: 1110px){
    .map-wrapper{
        padding-bottom: 150px;
    }
}

.contact-form{
    align-items: center;
    justify-content: center;
    top: 0;
    display: none;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #2c263470;
    z-index: 100;
}

.contact-form.active{
    display: flex;
}


#closeRecallMe{
    font-size: 14px;
    color: #006936;
    opacity: 0.8;
    text-decoration: underline;
    cursor: pointer;
    position: absolute;
    right: 40px;
}

.form-title{
    font-family: 'Kurale', serif;
    font-size: 30px;
    color: #00AC59;
    text-align: center;
    margin-bottom: 25px;
}

.contact-title{
    padding-top: 20px;
}


.recall-me-form{
    box-sizing: border-box;
    padding: 40px 40px 40px 40px;
    width: 400px;
    min-height: 100px;
    border-radius: 10px;
    background-color: #ffffff;
    position: relative;
}

.form-block{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-block label{
    font-size: 16px;
    font-weight: 400;
    color: #2C2634;
}


.form-block input, .form-block textarea{
    box-sizing: border-box;
    margin-top: 6px;
    width: 100%;
    font-size: 17px;
    font-weight: 300;
    color: #ffffff;
    outline: none;
    offset: none;
    resize: none;
    background-color: #2C2634;
    border-radius: 5px;
    padding: 12px 0px 12px 15px;
    border: none;
    font-family: 'Roboto', sans-serif !important;  
}

.submit{
    width: 100%;
    background-color: #2C2634;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif !important;  
    color: #ffffff;
    border: none;
    padding: 10px 0px;
    border-radius: 5px;
}