/* Шрифты */
@font-face {
    font-family: "Raleway";
    font-weight: 500;
    font-style: normal;
    src: url("/css/fonts/Raleway-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Raleway";
    font-weight: 600;
    font-style: normal;
    src: url("/css/fonts/Raleway-SemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "Raleway";
    font-weight: 700;
    font-style: normal;
    src: url("/css/fonts/Raleway-Bold.ttf") format("truetype");
}


@font-face {
    font-family: "Geologica";
    font-weight: 300;
    font-style: normal;
    src: url("/css/fonts/Geologica-Light.ttf") format("truetype");
}
@font-face {
    font-family: "Geologica";
    font-weight: 400;
    font-style: normal;
    src: url("/css/fonts/Geologica-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Geologica";
    font-weight: 500;
    font-style: normal;
    src: url("/css/fonts/Geologica-Medium.ttf") format("truetype");
}




/* Компоненты */
body{
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-variant-numeric: lining-nums;

    margin-top: 70px;
}

h1{
    font-size: 60px;
    font-weight: 500;
    padding: 0;
    margin: 0 0 60px;
    line-height: 1.2;
}

h2{
    font-size: 40px;
    font-weight: 500;
    padding: 0;
    margin: 0 0 50px;
    line-height: 1.2;
}



.content ul, .content ol{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.green{
    color: #009432;
}
.bold{
    font-weight: bold;
}

.container-fluid{
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.container{
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}


.container1000{
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}
.container1200{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.container740{
    max-width: 740px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.container330{
    max-width: 330px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.container600{
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


.container420{
    max-width: 420px;
    margin: 0 auto;

}


.container800{
    max-width: 900px;
    margin: 0 auto;
    /*padding-left: 25px;*/
    /*padding-right: 25px;*/
}

input,button,textarea,select{
    outline: none;
    font-family: 'Raleway', sans-serif;
}


.for-desktop{
    display: block;
}
.for-mobile{
    display: none;
}
.display-none{
    display: none;
}

.display-flex{
    display: flex;
}

.dn{
    display: none;
}

.right{
    text-align: right;
}
a{
    transition: 0.2s;
}
.alert{
    background-color: green;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}


.center{
    text-align: center;
}
strong{
    font-weight: 600;
}

.required label:after{
    content: "*";
    color: red;
    font-size: 18px;
    position: relative;
    top: 5px;
    left: 4px;
}


.icon{
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.red{
    color: #DE3327 !important;
}

*{
    -webkit-tap-highlight-color: transparent;
}

table {
    width: 100% !important;
    margin-bottom: 20px;
    border: 1px solid #e8e8eb;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.2;
    overflow: auto;
    border-radius: 10px;
    font-family: Raleway, sans-serif;

}
table th {
    font-weight: 600;
    padding: 6px 12px;
    /*background: #F0F6FA;*/
    border: 1px solid #e8e8eb;
    border-bottom: 2px solid #e8e8eb;
    text-align: left;
}
table td {
    border: 1px solid #e8e8eb;
    padding: 6px 12px;
}



/* АДМИНКА */
#adminka{
    background-color: #2c3e50;
    color: #fff;
    padding: 8px 20px;
    /*border-radius: 0 0 10px 10px;*/
}

#adminka ul{
    margin: 0;
    padding: 0;
}
#adminka li{
    display: inline-block;
    margin-right: 10px;
}

#adminka a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}






.fd{
    display: block;
}
.fm{
    display: none;
}

.center{
    text-align: center;
}
strong{
    font-weight: 600;
}

.required label:after{
    content: "*";
    color: red;
    font-size: 18px;
    position: relative;
    top: 5px;
    left: 4px;
}


/* Модальное окно */
.modal-wrapper{
    overflow: auto;

    z-index: 2000;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.6);
    display: grid;
    align-items: center;
    justify-content: center;

    opacity: 0;
}
.modal{
    background-color: #fff;
    max-width: 500px;
    max-height: 80%;
    overflow: auto;
    position: relative;

    padding: 30px;
}
.modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* СЛАЙДЕР */
.slider{
    overflow: hidden;
    position: relative;
}




/* Форма */
.form-control{
    border: 1px solid #000 ;
    width: 100%;
    padding: 16px 20px;
    border-radius: 15px;
    font-size: 18px;
    box-sizing: border-box;
    font-variant-numeric: lining-nums;
    transition: 0.2s;

    position: relative;
}
.control-label{
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
}
.form-control:hover, .form-control:active, .form-control:focus{
    border-color: #009432;
}

.form-group{
    margin-bottom: 25px;
}

.help-block-error{
    /*color: red;*/
    margin-top: 0;
    font-size: 14px;
}
.has-error .form-control{
    border-color: red;
}



/* ЗАГРУЗКА ИЗОБРАЖЕНИЙ */
.file-input{
    margin-top: 30px;
    margin-bottom: 40px;
}
.file-input .field-content-image{
    position: relative;
    padding: 40px;
    text-align: center;

    border: 2px dashed #ccc;
    border-radius: 10px;
    transition: 0.1s;
}
.file-input .field-content-image:hover{
    border: 2px solid #999;
}
.file-input .control-label{
    margin-bottom: 0;
}

.file-input #content-image{
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
}
.added-image{
    width: 120px;
    /*height: 120px;*/
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    cursor: move;

    position: relative;
}
.shost{
    opacity: 0.5;
}
.selected{
    background-color: green;
}

.loading{
    background-color: #f2f2f2;
    width: 120px;
    height: 120px;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    background-image: url("/images/load.svg");
    background-repeat: no-repeat;


}


.context-menu{
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 5px;
    right: 5px;

    border-radius: 4px;
    transition: 0.2s;
}
.context-menu a{
    display: block;
    padding: 4px;
}
.context-menu img{
    display: block;
}


.added-image:hover .context-menu{
    opacity: 1;
}



.btn {
    color: #000;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 73px;
    width: 330px;
    height: 54px;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    transition: 0.2s;
    cursor: pointer;
}

.btn:hover{
    background-color: #000;
    color: #fff;
}


.btn-green{
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 73px;
    width: 330px;
    height: 54px;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background-color: #009432;
    transition: 0.2s;
    cursor: pointer;
}
.btn-green:hover{
    background-color: #006d24;
    color: #fff;
}





.btn-small{
    color: #fff;
    font-size: 16px;
    /*font-weight: 500;*/
    text-decoration: none;
    border: none;
    border-radius: 73px;
    padding: 5px 20px;


    box-sizing: border-box;
    text-align: center;
    background-color: #009432;
    transition: 0.2s;
    cursor: pointer;
    margin-bottom: 10px;
    display: inline-block;
}
.btn-small:hover{
    background-color: #006d24;
}
.btn-red{
    background-color: #EE5A24;
}
.btn-red:hover{
    background-color: red;
}

.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.grid-centered{
    align-items: center;
}

/*  display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;*/



/* HEADER */
header{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.main-header-inner{
    padding: 12px 20px;
}

.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    display: block;
}

.navi{}
.navi ul{
    margin: 0;
    padding: 0;
}
.navi li{
    display: inline-block;
    vertical-align: middle;
    margin-left: 25px;
    margin-right: 25px;
}
.navi a{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;


}
.navi a:hover{
    color: #009432;
}

.login{
    text-align: right;
    width: 260px;
}

.login-btn{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;


}
.login-btn:hover{

    color: #009432;
}


.pal{
    transition: 0.3s;
    transform-origin: center;
}
.animate #pal1{
    transform:  rotate(30deg) translate(0px, 5px);
}
.animate #pal2{
    transform: rotate(30deg);
}
.animate #pal3{
    transform:  rotate(-30deg) translate(0,-5px);
}

.burger svg{
    position: relative;
    /*top: 3px;*/
    margin-right: 10px;


}

.cnavi{
    display: none;

    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.02), 0 7px 5px 0 rgba(0, 0, 0, 0.03), 0 100px 80px 0 rgba(0, 0, 0, 0.07);
    background: #fff;

    padding-top: 30px;
    padding-bottom: 30px;
}

.cnavi-inner{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.cnavi-flex{
    display: flex;
}

.cnavi ul{
    margin: 0;
    padding: 0;

    margin-left: 60px;
    margin-right: 60px;
}
.cnavi li{
    list-style: none;
    margin-bottom: 16px;
}

.cnavi a{
    font-size: 18px;
    text-decoration: none;
    color: #000;
}
.cnavi a:hover{
    color: #009432;
}

/* BANNER */
.banner{
    min-height: 700px;
    background-image: url("/images/banner.jpg");
    background-position: center bottom;
    background-repeat: repeat-x;
}

.banner-content{
    max-width: 700px;

}
.banner-content h1{
    font-size: 50px;

    line-height: 1.1;
    padding-top: 50px;
    margin-bottom: 30px;
}
.banner-content p{
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 16px;
}
.banner-content ul{
    margin-top: 0;
}
.banner-content li{
    font-family: Raleway, sans-serif;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.4;
    font-size: 16px;
}
p.for{
    margin-bottom: 5px;
}

/* BLOCKS */
.blocks{
    margin-top: 60px;
    margin-bottom: 90px;
}

.places{
    margin-top: 0;
}

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

.all-link{
    height: 35px;
    display: block;
    margin-left: 95px;
    margin-top: 15px;
    color: #000;
    font-size: 21px;
}
.all-link:hover{
    color: #009432;
}

.index .all-link{
    margin-top: -35px;
}

.top-2{
    margin-bottom: 40px;
}


.block{
    background-color: #efefef;
    height: 345px;
    border-radius: 20px;

    cursor: pointer;
    /*background-image: url("/images/img.jpg");*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;


    transition: all 0.2s ease-out;
}


.top-2 .block{
    height: 400px;
}

.block:hover{
    transform: scale(1.03) ;

    /*box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 5px 10px 3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 3px rgba(34, 60, 80, 0.2);*/
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 4px 5px 0 rgba(0, 0, 0, 0.03), 0 7px 10px 0 rgba(0, 0, 0, 0.04), 0 13px 18px 0 rgba(0, 0, 0, 0.04), 0 23px 33px 0 rgba(0, 0, 0, 0.05), 0 56px 80px 0 rgba(0, 0, 0, 0.07);
}



.block-inner{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
    position: absolute;

    right: 0;
    left: 0;
    bottom: 0;
    padding: 25px 37px;
    color: #fff;
}

.top-3 .block-inner{
    padding: 20px 37px;
}


.block-price{
    background-color: #fff;
    display: table;
    border-radius: 37px;
    color: #000;
    font-family: Raleway, sans-serif;
    font-size: 21px;
    font-weight: 600;
    padding: 3px 15px;
    margin-bottom: 5px;
}

.block-title a{
    color: #fff;
    font-size: 55px;
    text-decoration: none;
}

.top-3 .block-price{
    padding: 2px 15px;
    font-size: 19px;
}

.top-3 .block-title{
    margin-top: 10px;
}
.top-3 .block-title a{

    font-size: 36px;
    line-height: 1.1;

}






.hot{
    padding: 80px 0 90px 0 ;
    background: linear-gradient(90deg, #eaecc6 3.12%, #2bc0e4 100%);
    overflow: hidden;
}
.hot .h2-flex{
    position: relative;
}
.hot .h2-flex:before{
    content: "";


    background-image: url("/images/line.svg");
    position: absolute;
    left: -340px;
    top: 20px;

    width: 296px;
    height: 562px;


}
.hot .all-link:hover{
    color: #fff;
}

.index .tour-block{
    border: none;
}





.tour-block{
    background-color: #fff;
    border-radius: 20px;

    border: 1px solid #C5C5C5;
}
.tb-flex{
    display: flex;
    height: 100%;

}
.tb-1{
    padding: 20px 25px;
    border-right: 1px solid #c7c7c7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.tb-2{
    padding: 20px 25px;
    width: 100%;
}
.tb-title{
    margin-bottom: 30px;
}
.tb-title a{
    color: #11768E;
    font-size: 30px;

    text-decoration: none;
    line-height: 1.1;
}
.tb-title a:hover{
    color: #009432;
}

.tb-old-price{
    color: #A3A3A3;
    font-size: 25px;
    font-weight: 300;
    text-decoration: line-through;
}
.tb-price{
    font-weight: 500;
    font-size: 30px;
    color: #EE5A24;
}

.paid-tour{
    border: none;
    padding: 6px;
    background: linear-gradient(90deg, rgb(253, 114, 114) 0%, rgb(0, 42, 255) 100%);

}
.tour-block-inner{
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.paid-tour .tour-block-inner{
    background-color: #fff;

} 

.dog-price{
    color: #A3A3A3;
    font-size: 18px;
}

.tb-date{
    font-family: Raleway, sans-serif;
    font-size: 17px;
    font-weight: 600;
}
.tb-people{
    font-family: Raleway, sans-serif;
    font-size: 17px;
    font-weight: 600;
}
.bold-700{
    font-weight: bold;
}
.tb-places{
    font-family: Raleway, sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}

.tb-places a{


}


.place-button{
    /*color: #009432;*/
    color: #000;
    text-decoration: none;
    display: inline-block;
    background-color: #EEEEEE;
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 6px;
    margin-right: 3px;
    font-weight: 600;

    font-family: Raleway, sans-serif;
}
.place-button:hover{
    color: #fff;
    background-color: #000;
    
}

.tb-button{

    width: 100%;
}
.tb-button a{
    color: #000;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 73px;
    width: 100%;
    height: 54px;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}
.tb-button a:hover{
    background-color: #000;
    color: #fff;
}


.tb-2-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.tb-2-2{
    display: flex;
    align-items: end;
    margin-top: 20px;
}

.tb-price-block{
    margin-right: 20px;
}


.tb-agent{}
.tb-ava{
    margin-bottom: 10px;
    max-width: 250px;
    border-radius: 15px;
    overflow: hidden;
}
.tb-ava a{
    display: block;
}
.tour-row .tb-ava{
    max-width: 300px;
}

.tb-ava img{
    width: 100%;
    display: block;
}
.tb-name{
    text-align: center;
    line-height: 1.1;
}
.tb-name a{
    color: #000;
    font-size: 20px;
    text-decoration: none;

}
.tb-name a:hover{
    color: #009432;
}
.tb-stars{
    text-align: center;
    margin-top: 10px;
}
.tb-rev{
    text-align: center;
}
.tb-rev a{
    color: #000;
}
.tb-rev a:hover{
    color: #009432;
}


.tour-row .tb-price-block{
    display: flex;
    align-items: center;
}
.tour-row .tb-price-block{

}

.tour-row .tb-button{

}
.tour-row .tb-button a{
    max-width: 330px;
    margin-left: auto;
    margin-right: 0;
}

.tour-row .tb-old-price{
    margin-right: 20px;
}
.tour-row .tb-price{
    font-size: 35px;
}
.sticky-block{
    position: sticky;
    top: 100px;
}
.sticky-wrap{

}
.hot-2{
    padding: 80px 0 90px 0 ;
    background: linear-gradient(225deg, #d9a7c7 0%, #f8f4cc 100%);

    overflow: hidden;
}
.hot-2 .h2-flex{
    position: relative;
}
.hot-2 .h2-flex:before{
    content: "";


    background-image: url("/images/line-2.svg");
    position: absolute;
    left: 600px;
    top: -150px;

    width: 933px;
    height: 195px;


}
.hot-2 .all-link:hover{
    color: #fff;
}


.impression-block{
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    position: relative;

    border: 1px solid #C5C5C5;
    cursor: pointer;
    transition: 0.2s;
}

.impression-block:hover{
    transform: scale(1.03) ;

    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 4px 5px 0 rgba(0, 0, 0, 0.03), 0 7px 10px 0 rgba(0, 0, 0, 0.04), 0 13px 18px 0 rgba(0, 0, 0, 0.04), 0 23px 33px 0 rgba(0, 0, 0, 0.05), 0 56px 80px 0 rgba(0, 0, 0, 0.07);


}

.index .impression-block {
    border: none;
}
.i-photo{
    background-color: #ccc;
    aspect-ratio: 480 / 287;
    position: relative;

    background-image: url("/images/img.jpg");
    background-position: center;
    background-size: cover;
    flex: none;

    cursor: pointer;
}

.no-img{
    background-size: inherit;
    background-repeat: no-repeat;
    background-color: #e9e9e9;
}

.i-name{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 20px 30px;

    color: #fff;
    font-size: 21px;
}
.i-name a{
    color: #fff;
    font-size: 21px;
    text-decoration: none;
}

.i-title{
    margin-bottom: 15px;
}
.i-title a{
    color: #000;
    font-size: 21px;
    text-decoration: none;
}
.i-title a:hover{
    /*color: #009432;*/
}
.i-content{
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}
.i-anons{

    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.i-places{
    margin-top: 25px;
}
.i-places .place-button{

}





.product{
    border: 1px solid #C5C5C5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;
}

.p-photo{
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 10px;
    display: grid;
    align-items: center;
    margin-bottom: 20px;
}
.p-photo img{
    width: 100%;
    display: block;
    border-radius: 15px;
}

.p-title{
    text-align: center;
    margin-bottom: 20px;
}
.p-title a{
    color: #000;
    font-size: 21px;
    text-decoration: none;
    line-height: 1.1;

}

.p-title a:hover{
    color: #009432;
}

.p-price{
    text-align: center;
    color: #009432;
    font-size: 40px;

}

.p-button{
    margin-top: 20px;
}
.p-button a{
    color: #000;
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 73px;
    width: 100%;
    height: 54px;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    text-align: center;

}
.p-button a:hover{
    background-color: #000;
    color: #fff;
}


.mark-1{
    /*padding-top: 20px;*/
    /*border-top: 1px solid #C5C5C5;*/

}
.mark-flex{
    display: flex;
    align-items: end;
}
.m-img{
    margin-right: 40px;
}
.m-img img{
    display: block;
}
.m-content{
    margin-bottom: 30px;

}
.m-content h2{

    margin-bottom: 25px;
    padding: 0;
    font-size: 30px;
    color: #973C27;
}
.m-text{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}




.site-login{
    padding-top: 80px;
    margin-bottom: 60px;
}

.login-button{
    margin-left: auto;
    margin-right: auto;
}
.page-title{
    font-size: 50px;
    margin-bottom: 50px;
}
.help{
    line-height: 1.7;
}
.link{
    color: #000;
}
.link:hover{
    color: #009432;
}

p{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
}
p:last-child{
    margin-bottom: 0;
}

.email-help p{
    font-size: 15px;
    line-height: 1.3;
    margin-top: -10px;
}



.blocks-bg{
    padding-top: 60px;
    padding-bottom: 90px;
    background: linear-gradient(90deg, rgba(117, 127, 154, 0.28) 0%, rgba(215, 221, 232, 0.28) 100%);
}


.article{
    background-color: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #C5C5C5;
    transition: 0.2s;

    cursor: pointer;
}

.article:hover{
    transform: scale(1.03) ;
    /*box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 5px 10px 3px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 3px rgba(34, 60, 80, 0.2);*/

    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 4px 5px 0 rgba(0, 0, 0, 0.03), 0 7px 10px 0 rgba(0, 0, 0, 0.04), 0 13px 18px 0 rgba(0, 0, 0, 0.04), 0 23px 33px 0 rgba(0, 0, 0, 0.05), 0 56px 80px 0 rgba(0, 0, 0, 0.07);
}

.index .article{
    border: none;
}
.a-date{
    font-size: 30px;
    color: #8736A2;
    border-bottom: 4px solid #8736A2;
    display: table;
    margin-bottom: 30px;
}
.a-title{
    margin-bottom: 20px;
}
.a-title a{
    text-decoration: none;
    color: #000;
    font-size: 19px;
    line-height: 1;
}
.a-title a:hover{
    /*color: #8736A2;*/
}
.a-anons{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}




.pagination{
    margin: 30px;
    padding: 0;
    text-align: center;
}
.pagination li{
    display: inline-block;
}
.pagination a{
    display: inline-block;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 17px;
    margin-right: 5px;
    background-color: #fff;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    border-bottom: none;
}
.pagination .disabled{
    display: none;
}
.pagination li.active a{
    background-color:#009432;
    color: #fff;
}
.pagination a:hover{
    background-color:#009432;
    color: #fff;
    border-bottom: none;
}



/* FOOTER */
footer{
    border-top: 1px solid #C5C5C5;


}
.footer-1{
    padding-top: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid #C5C5C5;
}
.footer-2{
    padding-top: 28px;
    padding-bottom: 40px;
}

.footer-block-title{
    margin-bottom: 20px;

}
.footer-block-title a{
    color: #000;
    text-decoration: none;
    font-size: 21px;
}
.footer-block-title a:hover{
    color: #009432;
}

.footer-block ul{
    margin: 0;
    padding: 0;
}
.footer-block li{
    list-style: none;
    margin-bottom: 15px;
    line-height: 1.2;
}
.footer-block li:last-child{
    margin-bottom: 0;
}
.footer-block ul a{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;

}
.footer-block ul a:hover{
    color: #009432;
}


.footer-2{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
.copyright a{
    color: #000;
    text-decoration: none;
    font-weight: 700;
}
.feedback-block a{
    font-weight: 700;
    color: #000;
}
.footer-2 a:hover{
    color: #009432;
}

.footer-2-flex{
    display: flex;
    justify-content: space-between;
}
.ff-2{
    text-align: right;
}
.ff-2 a{
    color: #000;
    font-size: 16px;
}



.page{
    padding-top: 50px;
    padding-bottom: 50px;


}


.panel{
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
}

.panel h2{
    font-size: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.page-help{
    background-color: #fff;
    padding: 15px 20px ;
    border-radius: 20px;
    margin-top: 50px;
    border: 1px solid #C5C5C5;
    color: #000;

}
.page-help p{
    font-size: 17px;
    margin-bottom: 10px;
}
.page-help p:last-child{

    margin-bottom: 0;
}

.more{
    padding-top: 30px;
    color: #777;
}
.more a{
    color: #777;
}

.bc{
    margin-bottom: 20px;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    color: #777777;
}
.dot{
    margin-left: 6px;
    margin-right: 6px;

}
.bc a{

    color: #777777;

}
.bc a:hover{
    text-decoration: underline;
    color: #009432;
}



.feedback-link{
    /*font-weight: bold;*/
    color: #000;

}
.feedback-link:hover{
    color: #009432;
}

a.active{
    color: #009432;
}


.map-wrap{
    margin-top: 100px;

}
#map{
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #C5C5C5;
}

#content-content{
    display: none;
}




.content-flex{
    display: flex;

}
.content{
    width: calc(100% - 270px);;
    margin-right: 40px;
}

.sticky-wrap{
    flex: 0 0 350px;
    position: relative;
    /*margin-bottom: 30px;*/
    /*margin-right: 30px;*/
    /*padding-top: 110px;*/


}

.sticky-block{
    margin-top: 110px;
    box-sizing: border-box;

    padding: 20px 30px;

    border: 1px solid #C5C5C5;
    border-radius: 20px;
    width: 350px;

    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 4px 5px 0 rgba(0, 0, 0, 0.03), 0 7px 10px 0 rgba(0, 0, 0, 0.04), 0 13px 18px 0 rgba(0, 0, 0, 0.04), 0 23px 33px 0 rgba(0, 0, 0, 0.05), 0 56px 80px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
}

.sticky-navi{
    margin: 0;
    padding: 0;
}
.sticky-navi li{
    list-style: none;
    margin-bottom: 8px;
}
.sticky-navi li:last-child{
    margin-bottom: 0;
}
.sticky-navi a{
    color: #000;
    text-decoration: none;
}
.sticky-navi a:hover{
    color: #009432;
}


a.active{
    color: #009432;
}

a.active-link{
    color: #009432;
}

.gallery-image{
    background-color: #efefef;
    aspect-ratio: 3/2;
    flex: none;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-image:first-child{
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    aspect-ratio: 510/346;
    /*height: 100%;*/
}

.gallery-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-grid{
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 40px;


}


.pogoda-wrap{
    margin-top: 60px;
}
.current{
    display: flex;
    align-items: center;

}
.current-img{
    margin-right: 2px;
}
.current-temp{
    font-size: 30px;
    position: relative;
    top: -3px;
}
.pogoda{
    /*border: 1px solid red;*/
    position: relative;



    height: 250px;
}

.pogoda-copyright{
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #A3A3A3;
    font-family: Raleway, sans-serif;
}
.pogoda-copyright a{
    color: #A3A3A3;
    font-weight: bold;

}

#temperatureChart{

}


.pogoda-dni{
    text-align: center;
    margin-top: 20px;
}
.pogoda-den{
    width: 120px;
    height: 120px;
    display: inline-block;
    background-color: #F6F6F6;
    border-radius: 20px;
    box-sizing: border-box;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 15px;
}
.pd-day{
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 3px;
}
.pd-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pd-img{
    margin-right: -10px;
}
.pd-temp-1{
    font-size: 17px;
    line-height: 1;
}
.pd-temp-2{
    font-size: 16px;
    color: #808080;
}



.om-turi{
    margin-top: 50px;
}
.om-turi .tb-1{
    padding: 15px;
}
.om-turi .tb-2{
    padding:  20px;
}
.om-turi .tb-title{
    margin-bottom: 15px;
}
.om-turi .tb-title a{
    font-size: 30px;
}
.om-turi .tb-price{
    font-size: 30px;
}

.om-turi .tb-old-price{
    font-size: 22px;
}


.om-razv{
    margin-top: 50px;
}

.om-novosti{
    margin-top: 50px;
}



.share-label{
    /*display: inline-block;*/
    /*margin-right: 10px;*/
    margin-bottom: 5px;

}
.ya-share2{
    /*display: inline-block;*/
    vertical-align: middle;
}


.mesto-el{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.links{
    line-height: 1.4;

}
.gis{
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 1px 15px;
    border-radius: 4px;

    background-color: #A3C626;
    color: #fff !important;
    border: 1px solid #A3C626;
    margin-right: 10px;
    margin-top: 10px;
}

.ymap{
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 1px 10px;
    border-radius: 4px;

    border: 1px solid #000;
    color: #000;
    margin-top: 10px;
}
.yandex {
    color: #FC3F1D;
}


.insered-image{
    max-width: 800px;
    margin-bottom: 20px;
}
.insered-image img{
    width: 100%;
    display: block;
    border-radius: 10px;
}
.image-caption{
    color: #A3A3A3;
    font-size: 14px;
    text-align: center;
    /*font-family: Raleway, sans-serif;*/
    padding: 10px 0;
}

.delimiter{
    text-align: center;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.dt-block{
    margin-top: 50px;
    margin-bottom: 50px;
}
.dd{
    display: flex;
    align-items: center;
}

.dd > div{
    margin-right: 20px;
    position: relative;
}
.rm {
     cursor: pointer;
    margin-top: 10px;
 }




.maybe{
    margin-top: 50px;
    font-size: 16px;
}
.maybe-title{
    margin-bottom: 5px;
    font-size: 15px;
    color: #A3A3A3;
}
.maybe ul{
    margin-left: 0;
    padding-left: 20px;
    margin-top: 0;
}
.maybe a{
    color: #000;
}
.maybe a:hover{
    color: #009432;
}

.content h2{
    margin-top: 50px;
    margin-bottom: 40px;
}
.content-block{
    margin-bottom: 30px;
}
.content-block h2{
    margin-top: 50px;
    margin-bottom: 40px;
}
.content-block a{
    color: #000;
}
.content-block a:hover{
    color: #009432;
}

.adb{
    font-size: 16px;
    color: #000;
}

.content-block ul{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.insered-image{
    margin-left: auto;
    margin-right: auto;
}


.ta{
    border: 1px solid #C5C5C5;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}
.ta-img{
    margin-bottom: 10px;
    /*width: 200px;*/
    /*height: 200px;*/

    aspect-ratio: 1/1;
    display: grid;
    align-items: center;
    text-align: center;
}
.ta-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.ta-name a{
    color: #000;
    font-size: 24px;
    text-decoration: none;
}
.ta-name a:hover{
    color: #009432;
}
.ta-name{
    margin-bottom: 10px;
}
.ta-name-wrap{

}
.ta-rat{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ta-stars{
    margin-right: 20px;
}
.ta-rev{
    vertical-align: middle;
}

.ta-rev a{

    color: #009432;
}
.ta-slogan p{
    font-size: 16px;
}

.ks-block{

}
.ks-block h3{
    margin-top: 0;
    padding-top: 0;
}

.ks-block li{
    line-height: 1.2;
    margin-bottom: 12px;
}

.reg-help{
    margin-bottom: 20px;
    margin-top: -10px;
}
.reg-help p{
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #11768E;
    margin-top: 0;
    padding-top: 0;
}



.tour-row{
    margin-bottom: 30px;
}
.tour-row:last-child{
    margin-bottom: 0;
}


/* Filter */
.filter{
    padding-top: 5px;
    padding-bottom: 5px;
}
.filter-btn{
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 73px;
    padding: 8px 25px;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background-color: #009432;
    transition: 0.2s;
    cursor: pointer;

    margin-left: auto;
    margin-right: auto;
}
.filter-btn:hover{
    background-color: #006d24;
    color: #fff;
}

.filter .form-control{
    font-size: 16px;
    padding: 10px 20px;
    border-color: #C5C5C5;
    cursor: pointer;
}

.sticky-block h3{
    margin-top: 5px;
    margin-bottom: 25px;
    padding-top: 0;
    text-align: center;
    font-weight: 500;
}

.ir{
    display: flex;
    font-family: Raleway, sans-serif;
    margin-bottom: 5px;
    align-items: center;
}
.ir-label{
    font-weight: 600;
    width: 200px;
}

.ir-price {
    font-weight: 500;
    font-size: 20px;
    color: #EE5A24;
}

.divider{
    border-bottom: 1px solid #C5C5C5;
    margin-top: 20px;
    margin-bottom: 20px;
}


.agent-card{
    display: flex;
}

.ac-ava{
    margin-right: 20px;
}

.ac-ava img{
    border-radius: 20px;
    display: block;
    width: 100%;
}

.ac-info{
    border: 1px solid #C5C5C5;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.ac-title{
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 20px;
}
.ac-title a{
    color: #009432;
    text-decoration: none;
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.ac-row{
    margin-bottom: 10px;
    display: flex;
    font-family: Raleway,sans-serif;
    font-weight: 600;
}
.ac-lab{
    color: #7A7A7A;
    width: 100px;
}
.ac-slogan{

    margin-top: 20px;
}
.ac-slogan p{
    font-size: 20px;
}

.agent-content{
    font-size: 17px !important;
}

.ac-rat {
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}

.ac-rat .ta-rev a{
    color: #000;
    font-size: 17px;
    position: relative;
    top: 3px;
}
.acc-rat .ta-rev a{
    color: #009432;
    top: inherit;
}

.user-block{
    border: 1px solid #C5C5C5;
    border-radius: 20px;
    padding: 30px;

    min-height: 250px;
    box-sizing: border-box;

    display: grid;
    align-items: end;
}
.ub-link{

}
.ub-link a{
    color: #000;
    font-size: 22px;
}
.ub-link a:hover{
    color: #009432;
}


.ub-help{
    color: #009432;
    line-height: 1.2;
    font-family: Raleway, sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
}



.ub-ava{
    margin-bottom: 20px;
    width: 160px;
}
.ub-ava img{
    width: 100%;
}


.ew{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ew-views{
    font-size: 15px;
    color: #999;

}


#editorjs{
    border: 1px solid #CFCFCF;
    border-radius: 7px;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 25px;

}



.sh{
    font-size: 15px;
    font-weight: normal;
    line-height: 1.1;
    text-align: center;
    margin-top: 10px;
}


/* ЗАГРУЗКА ИЗОБРАЖЕНИЙ */
.file-input-wrap{
    margin-top: 30px;
    /*margin-bottom: 40px;*/
}
.file-input-wrap .form-group{
    position: relative;
    padding: 20px 0;
    text-align: center;

    border: 2px dashed #ccc;
    border-radius: 10px;
    transition: 0.1s;
    margin-bottom: 0;

}
.file-input-wrap .form-group:hover{
    border: 2px solid blue;
}
.file-input-wrap .control-label{
    margin-bottom: 0;
}

.file-input-wrap .image-input{
    cursor: pointer;
    display: block;
    /*width: 100%;*/

    box-sizing: border-box;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
}
.added-image{
    width: 120px;
    /*height: 120px;*/
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    cursor: move;

    position: relative;
}
.shost{
    opacity: 0.5;
}
.selected{
    background-color: #eaeaea;
}

.loading{
    background-color: #f2f2f2;
    width: 120px;
    height: 120px;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    background-image: url("/images/load.svg");
    background-repeat: no-repeat;


}


.files-sort-wrap .loading{
    width: 30px;
    height: 30px;
    background-color: #fff;
}


.context-menu{
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 5px;
    right: 5px;

    border-radius: 4px;
    transition: 0.2s;
}
.context-menu a{
    display: block;
    padding: 4px;
}
.context-menu img{
    display: block;
}


.added-image:hover .context-menu{
    opacity: 1;
}


.added{
    margin-top: 20px;
    margin-bottom: 30px;
}


.ce-paragraph{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
}
.content h2.ce-header{
    margin-top: 0;
    /*margin-bottom: 0;*/
    margin-bottom: 20px;
}
.image-tool__caption{
    color: #A3A3A3;
    font-size: 14px;
    text-align: center;
    /* font-family: Raleway, sans-serif; */
    padding: 10px 0;
}


.no-active-tour{
    background-color: #efefef;
}

.d1{
    color: green;
    font-weight: bold;
}
.d2{
    color: blue;
    font-weight: bold;
}
.d3{
    color: #999;
}
.sm-add{
    margin-top: 10px;
}

.hint-block{
    font-family: Raleway, sans-serif;
    font-size: 15px;
    margin-top: 10px;
    color: #11768E;
}



.q-block{

}

.q{
    user-select: none;
    cursor: pointer;
    transition: 0.2s;
    /*display: table;*/
    display: flex;
    align-items: center;
}
.q:hover{
    color: #009432;
}
.a{
    font-size: 15px;

    padding: 10px 0 20px 0;
    font-family: Raleway, sans-serif;

    display: none;
}
.plus{
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s;
    margin-left: 5px;
}
.plus img{
    display: block;
}

.r1{

    transform: rotate(180deg);
}

.clear{
    font-size: 16px;
    font-weight: normal;
    margin-top: 10px;
}

.fp-grid{
    grid-column-gap: 20px;
}




.rev-img{
    max-width: 220px;
    max-height: 220px;
    aspect-ratio: 1/1;
    margin-bottom: 30px;
}
.rev-noimg{
    border: 1px solid #C5C5C5;
}
.rev-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.rev-el{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rev-content{
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.rev-link{
    margin-top: 10px;
}
.rev-link a{
    color: #009432;
    text-decoration: none;
}
.rev-link a:hover{
    color: #006d24;
}



.rat-label{
    margin-bottom: 0;
}
.rating {
    display: inline-flex;
    direction: rtl;
    font-size: 40px;
    cursor: pointer;
}



.rating span {
    margin-right: 5px;
    color: #EAEAEA; /* Цвет незакрашенных звезд */
}

.rating .active {
    color: #FFC312; /* Цвет закрашенных звезд */
}

.field-content-pams-63{
    display: none;
}

.no-rev{
    font-size: 16px;
    color: #ccc;
}

.ta .no-rev{
    margin-left: -20px;
}

.p-sts{
    margin-top: 10px;
    margin-bottom: 10px;
}

.b-link{
    color: #009432;
    text-decoration: none;
}

.order-form .form-control {
    font-size: 16px;
    padding: 12px 20px;
    border-color: #C5C5C5;
    cursor: pointer;
}


.orders-table{
    font-size: 16px;
    line-height: 1.5;
}

.orders-table th, .orders-table td{
    padding: 12px 15px;
}

.ord-btn{
    font-size: 14px;
    padding: 1px 8px;
}

.arh-link{
    color: #000;
    font-size: 16px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 30px;
}

.c{
    background-color: green;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    padding: 0 7px;
    border-radius: 20px;
    margin-left: 5px;
}

.pd-25{
    padding-left: 25px;
    padding-right: 25px;
}



/* Ошибка 404 */

.error404{
    padding-top: 50px;
    padding-bottom: 50px;

}
.error-title1{
    margin-top: 50px;
    font-size: 90px;
    color: red;
    font-family: Raleway, sans-serif;
}
.error-title2{
    font-weight: 600;
    color: red;
    font-size: 30px;
    font-family: Raleway, sans-serif;
}


.container800 .insered-image{
    max-width: inherit;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.field-address{
    display: none;
}
