@import url(icons.css);

@font-face {
  font-family: "Bauhausc";
  font-style: normal;
  font-weight: 500;
  src: local("Bauhausc"), url("../fonts/bauhausc-medium-webfont.woff2") format("woff2");
}

@font-face {
  font-family: "PF Din";
  font-style: normal;
  font-weight: 700;
  src: local("PF Din"), url("../fonts/pfdintextcondpro-bold-webfont.woff2") format("woff2");
}

@font-face {
  font-family: "PF Din";
  font-style: normal;
  font-weight: 400;
  src: local("PF Din"), url("../fonts/pfdintextcondpro-regular-webfont.woff2") format("woff2");
}

@font-face {
  font-family: "Arial Narrow";
  font-style: normal;
  font-weight: 400;
  src: local("Arial Narrow"), url("../fonts/arialn.woff2") format("woff2");
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: orange;
  color: #fff;
}

::selection {
  background-color: orange;
  color: #fff;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

p,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

body:after {
  content: '';
  background-image: url("../images/backgrounds/bg_page_lighten.jpg");
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.6;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -2;
  width: auto;
  height: 100%;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.container {
  max-width: 1110px;
  margin: 0 auto;
}

.tdu {
  text-decoration: underline;
}

.section_header {
  position: relative;
}

.section_header h2 {
  line-height: 1;
  font-family: 'PF Din', sans-serif;
  text-transform: uppercase;
  color: #693018;
  font-weight: 400;
  font-size: 28px;
}
.section_header h2 a span {
  color:#693018;
  transition: color 0.15s ease-in;
}
.section_header h2 a:hover span {
  color:#EBDCB9;
}

.section_header .headline {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section_header .headline:after {
  content: '';
  position: absolute;
  display: block;
  width: 200px;
  border: 1px solid #693018;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section_header__long .headline {
  padding-bottom: 15px;
  width: 100%;
}

.section_header__long .headline:after {
  width: 100%;
}

.section_header__center {
  text-align: center;
}

.section_header__center:after {
  margin: 0 auto;
  margin-top: 8px;
}

.section_header__white h2 {
  color: #fff;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.69);
}

.section_header__white .headline:after {
  border-color: #fff;
}

article .section_header h2 {
  text-transform: none;
}
.section_header .headline a {
  color: #693018;
}

.btn {
  position: relative;
  border: 2px solid #A49572;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'PF Din';
  text-align: center;
  line-height: 1;
  font-size: 22px;
  padding: 15px 42px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.btn:before {
  content: '';
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebdcb9), color-stop(80%, #693018));
  background-image: -o-linear-gradient(top, #ebdcb9 0%, #693018 80%);
  background-image: linear-gradient(180deg, #ebdcb9 0%, #693018 80%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.btn:after {
  content: '';
  -webkit-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  opacity: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ebdcb9), color-stop(80%, #693018));
  background-image: -o-linear-gradient(bottom, #ebdcb9 0%, #693018 80%);
  background-image: linear-gradient(0deg, #ebdcb9 0%, #693018 80%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.btn:hover,
.btn:active,
.btn:focus {
  color: #fff;
  text-decoration: none;
  border-color: #8a7b59;
}

.btn:hover::after,
.btn:active::after,
.btn:focus::after {
  opacity: 1;
}

header {
  position: relative;
}

.bg_container {
  background-image: url("../images/backgrounds/bg_header_clear.jpg");
  position: relative;
  background-size: cover;
  background-position: center;
/*  z-index: 1;*/
}

.bg_container:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 100%;
  /*background-image: url("../images/backgrounds/bear.png");
  background-position-y: 17px;
  background-repeat: no-repeat;
  background-size: cover;*/
}

.search-box {min-width: 28px;height: 28px;position: absolute; top:12px;right:95px;}
.searchbox{ position: absolute;top:0;left:50%;width: 0px; height: 28px; 
  background: #ebdcb9;padding-right: 25px; border-radius: 90px;transition: all 0.5s ease;border:2px solid #4A3521;z-index: 555;}
.searchbox:hover {border:2px solid #4A3521;} .fa:hover {color:#999;}
.searchbox .input{ font-size: 14px;border: 0; background: transparent; width: 0%; outline: none; 
  color: #000; transition: all 0.3s ease; position: relative;margin-top:-3px;}
.searchbox .fa{ position: absolute;  left: 4px;  top: 5px;  font-size: 1.1em;  cursor: pointer;}
.searchbox.active{ width: 224px; padding-left: 25px; height:29px; transition: all 0.5s ease;left:-180px;}
.searchbox .input.active{  width: 100%;  padding-left: 5px; line-height: 29px; transition: all 0.5s 0.8s ease;padding-bottom: 4px;}
.searchbox input::placeholder {color: #000;}

.bg_container .language-chooser {
  position: absolute;
  top: 12px;
  right: 10px;
}

.bg_container .language-chooser img, .bg_container .language-chooser svg {
  width: 28px;
  opacity: 0.5;
  -webkit-transition: 0.45s all;
  -o-transition: 0.45s all;
  transition: 0.45s all;
  border-radius: 100%;
}

.bg_container .language-chooser li {
  list-style: none;
  display: inline-block;
}

.bg_container .language-chooser li:hover img,
.bg_container .language-chooser li:hover svg {
  opacity: 0.8;
}

.bg_container .language-chooser li.active img,
.bg_container .language-chooser li.active svg {
  opacity: 1;
}

.bg_container .language-chooser li:first-child {
  margin-right: 3px;
}

.partners_line {
  text-align: center;
  padding-top: 6px;
}

.partners_line span {
  display: none;
  width: 182px;
}

.partners_line span:nth-child(3) {
  margin-right: -48px;
}

.partners_line .partner_mobile {
  margin-right: 10px;
  display: inline-block;
}

.partners_line .partner {
  opacity: 0.5;
  -webkit-transition: 0.45s opacity;
  -o-transition: 0.45s opacity;
  transition: 0.45s opacity;
}

.partners_line .partner:hover {
  opacity: 1;
}

#menu ul {
  margin: 0;
  padding: 0;
}

#menu .main-menu {
  display: none;
  border-top: 2px solid #593320;
}

#menu li.current-menu-item > a {
  background-color: #593320;
  border-color: #4a2716;
}

#menu li {
  position: relative;
  display: block;
  color: white;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.125);
}

#menu li label.drop-icon {
  position: absolute;
  cursor: pointer;
  width: 15%;
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 0;
  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;
}

#menu label.drop-icon {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.125);
  text-shadow: 0 0 0 transparent;
  color: rgba(255, 255, 255, 0.75);
}


#menu .sub-menu {
  display: none;
  border-color: rgba(0, 0, 0, 0.05);
  background-color: #684325;
  padding: 0 1em;
}

#menu .sub-menu:hover {
  color: #444;
}

#menu a {
  line-height: 1.1;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  position: relative;
  display: block;
  color: #EBDCB9;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.125);
  background-color: #764C2A;
  border-style: solid;
  border-color: #593320;
  border-width: 0 0 1px;
  padding: 10px 0;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 25px;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

#menu a:hover {
  background-color: #593320;
  text-decoration: none;
}

#menu .drop-icon {
  line-height: 1;
}

#toggle-menu {
  position: relative;
  display: block;
  line-height: 1;
  cursor: pointer;
  padding: 10px 0px;
}

#toggle-menu .drop-icon {
  color: #fff;
  font-size: 32px;
}
.main-menu li.menu-item-has-children {
	position: relative;
}

.main-menu li.menu-item-has-children:after {
    position: absolute;
    right: 20px;
    top: 25px;
    content: "\f078";
    font-family: FontAwesome;
    font-size: 10px;
    margin-left: 0;
    line-height: 0;
}

.logo_line {
/*  padding: 15px 5px;*/
  padding:0 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #593320;
}

.logo_line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #4A3521;
}

.logo_line a img {
  width: 80px;
  -webkit-filter: drop-shadow(0px 0px 15px #fff2d7);
  filter: drop-shadow(0px 0px 15px #fff2d7);
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  -o-transition: 0.5s transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}

.logo_line a p {
  padding-left: 10px;
  font-style: normal;
  font-weight: 600;
  font-family: 'Arial Narrow', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 80%;
}

.logo_line a p span {
  display: block;
  font-family: 'Bauhausc', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
}

.logo_line a:hover {
  text-decoration: none;
}

.logo_line a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.afterheader_slide {
  display: none !important;
}

.afterheader_slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.news {
  position: relative;
  padding: 27px 0;
}

.news:after {
  content: '';
  background-image: url("../images/backgrounds/bg_news.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
/*  opacity: 0.5;*/
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  width: auto;
  height: 100%;
}

.news .section_header {
  padding-bottom: 27px;
}

.news .news_slider {
  margin: 0 35px;
}

.news_slide_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
}

.news_slide_container .news_date {
  font-family: 'PF Din', sans-serif;
  color: #693018;
  margin-right: 12px;
  text-align: center;
}

.news_slide_container .news_date .day,
.news_slide_container .news_date .month,
.news_slide_container .news_date .year {
  line-height: 0.93;
}

.news_slide_container .news_date .day {
  font-size: 48px;
}

.news_slide_container .news_date .month {
  font-size: 13px;
  /*color: #AA6405;*/
}

.news_slide_container .news_date .year {
  font-size: 24px;
  margin-top: 5px;
}

.news_slide_container a {
  display: block;
  max-width: 267px;
  color: #764A28;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.15;
}

.news_slide_container a img {
  width: 100%;
  min-height: 173px;
  max-height: 173px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}
.news_slide:focus, .travel_slide:focus, .travel_slide_container a:focus {
  outline: none;
}
.slider-nav {
  overflow: hidden;
  position: absolute;
  color: #764A28;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 22px;
  height: 35px;
  opacity: 0.7;
  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;
  -webkit-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
  cursor: pointer;
}

.slider-nav:hover {
  opacity: 1;
}

.slider-nav span {
  font-size: 38px;
}

.slider-nav__white {
  color: #fff;
}

.slider-nav__next {
  right: 0px;
}

.slider-nav__prev {
  left: 0px;
}

.news .slider-nav__next {
  right: -30px;
}

.news .slider-nav__prev {
  left: -30px;
}

.travel .slider-nav__next {
  right: -32px;
}

.travel .slider-nav__prev {
  left: -32px;
}

.travel {
  background-image: url("../images/backgrounds/bg_travel.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.travel_slide {
  overflow: hidden;
}

.travel .travel_slider {
  margin: 40px;
}

.travel .travel_slider .slick-list {
  padding: 20px 0;
  margin: -20px 0;
}

.travel .travel_slide a {
  -webkit-transition: 0.35s all;
  -o-transition: 0.35s all;
  transition: 0.35s all;
}

.travel .travel_slide a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  text-decoration: none;
}

.travel .travel_slide .travel_slide_container {
  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;
}

.travel .travel_slide img {
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  /*width: 210px;*/
  width: 300px;
  height: 275px;
  -o-object-fit: cover;
  object-fit: cover;
}

.travel .travel_slide .travel_slide_img_wrapper {
  padding-bottom: 10px;
}

.travel .travel_slide p {
  /*width: 210px;*/
  width: 300px;
  height: 59px;
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  /*color: #000; Допилили смену цвета*/
  color:#693018;
  font-family: 'PF Din', sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  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;
}

.travel .travel_actions {
  text-align: center;
}

.places {
  padding: 35px 0;
  background-image: url("../images/backgrounds/bg_page_lighten.jpg");
}

.places .section_header {
  padding-left: 30px;
}

.places .places_body_wrapper {
  padding: 0 15px;
}

.places .map {
  display: none;
}

.places .map .map_tooltip {
  background-color: rgba(255, 255, 255, 0.8);
  color: #693018;
  border-radius: 5px;
  padding: 10px 15px;
  position: absolute;
  display: none;
  z-index: 5;
  line-height: 1;
  max-width: 250px;
}

.places .map img {
  max-width: 270px;
  -webkit-filter: drop-shadow(1px 1px 1px #888);
  filter: drop-shadow(1px 1px 1px #888);
}

.places .categories {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-columns: minmax(280px, 1fr);
  grid-template-columns: repeat(1, minmax(280px, 1fr));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.places .category {
  padding-bottom: 25px;
  padding-right: 18px;
  text-align: center;
}

.places .category a {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  -o-transition: transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}

.places .category a img {
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  -o-transition: transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
  width: 100%;
  max-width: 313px;
  max-height: 230px;
  min-height: 230px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}

.places .category a p {
  position: absolute;
  color: #693018;
  font-family: 'PF Din', sans-serif;
  font-size: 18px;
  width: 185px;
  height: 68px;
  border-radius: 5px;
  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: 5px;
  text-transform: uppercase;
  bottom: -22px;
  right: -17px;
  -webkit-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #693018), color-stop(50%, #fff));
  background: -o-linear-gradient(left, #693018 50%, #fff 50%);
  background: linear-gradient(to right, #693018 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.places .category a:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.places .category a:hover p {
  background-position: left bottom;
  color: #fff;
}

.places .places_footer_wrapper {
  padding: 0 15px;
}

.places .be_active {
  margin: 25px 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  font-family: 'PF Din', sans-serif;
}

.places .be_active h4 {
  font-weight: 700;
  color: #724625;
  text-transform: uppercase;
  line-height: 1;
  font-size: 22px;
}

.places .be_active p {
  color: #692F02;
  font-size: 18px;
  line-height: 1;
  margin: 15px 0;
}

.places .be_active a {
  display: inline-block;
  line-height: 1;
  color: #692F02;
  font-size: 30px;
}

.places .useful_links {
  background-color: #EBDCB9;
  border-radius: 5px;
  padding: 30px;
  font-family: 'PF Din', sans-serif;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}

.places .useful_links h5 {
  color: #724625;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.places .useful_links ul,
.places .useful_links li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*.places .useful_links ul li a {
  display: inline-block;
  color: #7B4F2D;
  padding: 8px;
  line-height: 1;
  padding-left: 0;
}*/
.places .useful_links ul li a {
  display: flex;
  color: #7B4F2D;
  line-height: 1;
  padding-left: 0;
  align-items: center;
}
.places .useful_links ul li a img {
  margin-right: 8px;border-radius: 45px;
  border:2px solid #724625;
}

.places .useful_links ul li a:hover {
  color: #693018;
}

.places .useful_links ul {
  margin-top: 15px;
}

.places .useful_links ul li {
  margin-bottom: 7px;
}

footer {
  background-image: url("../images/backgrounds/bg_footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 15px;
  color: #EBDCB9;
}

footer a {
  font-size: 14px;
  color: #EBDCB9;
}

footer a:hover {
  color: #EBDCB9;
}

footer .footer_info {
  margin-bottom: 30px;
}

footer .footer_info p {
  font-size: 14px;
  line-height: 160%;
}

footer .socials_wrapper {
  margin-bottom: 5px;
}

footer .socials_wrapper svg {
  border: 1px solid transparent;
  border-radius: 100%;
  -webkit-transition: border 2s;
  -o-transition: border 2s;
  transition: border 2s;
}

footer .socials_wrapper svg circle,
footer .socials_wrapper svg path {
  -webkit-transition: fill 0.45s;
  -o-transition: fill 0.45s;
  transition: fill 0.45s;
}

footer .socials_wrapper a {
  margin-right: 5px;
}

footer .socials_wrapper a:hover {
  text-decoration: none;
}

footer .socials_wrapper a:hover svg {
  border-color: #EBDCB9;
}

footer .socials_wrapper a:hover svg circle {
  fill: #724524;
}

footer .socials_wrapper a:hover svg path {
  fill: #EBDCB9;
}

footer .socials_wrapper a:last-child {
  margin-right: 0;
}

article {
  padding: 0 15px;
  padding-top: 30px;
  padding-bottom: 45px;
}

article .article_date {
  margin-top: 15px;
  line-height: 1;
  text-align: right;
  font-family: 'PF Din', sans-serif;
  font-size: 18px;
  color: #693018;
}

article .article_body_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 23px;
}

article .article_text {
  margin-bottom: 23px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 100%;
}

article .article_text p {
  font-size: 16px;
/*  line-height: 160%;*/
  line-height: 190%;
  margin-bottom: 25px;
}
.more-link {font-weight: bold;}

article > .article_text > p > img, article > .article_text > img {
  width: 100%;
  height: auto;
  margin:10px 0;
}

article .article_text a {
  color:#693018;
  text-decoration: underline;
}
article .article_text a:hover {
  text-decoration: none;
}

article .article_text a img.alignnone {
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.article_text h2, .article_text h3, .article_text h4, .article_text h5 {
/*  margin-bottom: 28px;*/
  margin-bottom: 12px;
}
.article_text h1 {font-size: 28px;}
.article_text h2 {font-size: 24px;}
.article_text h3 {font-size: 24px;}
.article_text h4 {font-size: 22px;}
.article_text h5 {font-size: 20px;}
.article_text h1, .article_text h2, .article_text h3, .article_text h4, .article_text h5 {color:#a2723d;}
.article_text h1:not(:first-child), .article_text h2:not(:first-child), .article_text h3:not(:first-child), 
.article_text h4:not(:first-child), .article_text h5:not(:first-child) {margin-top: 30px;}

.article_text > p > button, .article_text > div > p > button, .emodal-content .wpcf7-submit {
  width: 290px;
}

article.category {
  display: flex;
  flex-wrap: wrap;
}

article.category .section_article {
  margin-top: 15px;
}
article.category .section_thumb img {border-radius: 5px;}

.emodal-content .wpcf7 .wpcf7-text, .emodal-content .wpcf7 .wpcf7-textarea {
  width: 100%;
}
.emodal-close {width: 30px;height: 30px;}
.emodal-title {font-family: 'PF Din', sans-serif!important;font-size: 28px!important;text-align: center;}
.article_text a.spoiler-tgl {border:0;font-family: 'PF Din', sans-serif;font-size: 22px;}
.random-img {text-align: right;margin-top: -18px;}

footer {
    flex-shrink: 0;
}

.navigation {width:100%;margin: 0 0 50px 0;display: flex;justify-content: center;}
.wp-pagenavi, .ngg-navigation {font-weight:600;font-size:1em;padding: 0 20px;}
.ngg-navigation {padding-bottom: 5px!important;}
.wp-pagenavi a, .wp-pagenavi span {border:0!important;padding: 10px 17px!important;}
.ngg-navigation a, .ngg-navigation span {border:0!important;}
.wp-pagenavi span.current  {background-color:#693018;color:#fff;border:1px solid #693018;border-radius: 6px;}
.page,.nextpostslink, .previouspostslink {color:#693018;}
.ngg-navigation span.current  {background-color:#693018;color:#fff;border:1px solid #693018;border-radius: 6px;padding:3px 8px;}
.ngg-navigation a.page-numbers:hover {background:0;}
.ngg-navigation a.next:hover, .ngg-navigation a.page-numbers:hover, .ngg-navigation a.prev:hover, 
.ngg-navigation span.next:hover, .ngg-navigation span.page-numbers:hover, 
.ngg-navigation span.prev:hover {background-color:#479DEB!important;color:#fff!important;border-radius: 6px;}
.wp-pagenavi a.page:hover, .wp-pagenavi a.last:hover, .wp-pagenavi a.nextpostslink {color:black;}
.wp-pagenavi a.first, .wp-pagenavi a.last {color:#693018;}

#mapkh a, #mapkh {
    font-size: 12px;
    color: #903500;
    text-decoration: none;
    font-weight: normal;
    line-height: 100% !important;
}

#mapkh {
  /*  background: url("../images/map-kh.png") left top no-repeat;
    width: 590px;
    height: 860px;*/
    position: relative;
    margin:0 auto;
    -webkit-filter: drop-shadow(1px 1px 1px #888);
    filter: drop-shadow(1px 1px 1px #888);
  }
  #mapkh a {
  text-shadow: 0 0 8px #fff, 0 0 4px #fff, 0 0 1px #613416;
  display: normal;
  font-size: 12px;
  transition: font-size 0.1s ease-in;
  }
  #mapkh a:hover {
  color: #5B2F1D !important;
  font-weight: bold;
  text-shadow: 0 0 16px #fff, 1px 1px 2px #fff, -1px -1px 2px #fff;
  font-size: 18px;
  }
  #mapkh div {
  position: absolute;
  left: 0;
  overflow: visible;
  }
  #mapkh div a {
  position: absolute;
  top: 0;
  text-align: center;
  white-space: nowrap;
  }
  div#mapkh img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
  #mapkh #p1 { top: 14%;left:35%;}
  #mapkh #p2 { top: 17%; left:53%;}
  #mapkh #p3 { top: 22%; left: 60%;}
  #mapkh #p4 { top: 25%; left: 50%;}
  #mapkh #p5 { top: 32%; left: 72%;}
  #mapkh #p6 { top: 35%; /*left: 43%;*/left:19%;}
  #mapkh #p7 { top: 39%; left: 51%;}
  #mapkh #p7ABK{top: 41%;left: 75%;}
  #mapkh #p7ABZ{top: 61%;left: 56%;}
  #mapkh #p8 {top: 70%; left: 37%;}
  #mapkh #p9ZP {top: 78%;left: 50%;}
  #mapkh #p9 {top: 89%;left: 33%;}
  
/*article .article_images {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

article .article_image {
  max-width: 322px;
  margin: 0 auto;
  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;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  padding: 10px 8px;
  padding-bottom: 12px;
  border-radius: 3px;
}

article .article_image a {
  display: block;
  color: #000;
  font-family: 'PF Din', sans-serif;
  font-size: 18px;
  text-align: center;
  line-height: 1;
}

article .article_image img {
  margin-top: auto;
  max-width: 300px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 11px;
}*/

i.far.fa-compass {
    margin-right: 5px;
}

@media (min-width:411px) {  
  .searchbox.active{ width: 240px;left: -197px;}
}


@media (min-width: 576px) {
  .searchbox.active{ width: 220px;}
  .logo_line {
    /*padding: 15px;*/
  }
  article .article_text a img.alignnone {
    width: unset;
    height: auto;
    margin: unset;
    /*!NEED2FIX*/
}
.travel_slide {
  overflow: unset;
}


  .logo_line a img {
    width: 100px;
  }

  .logo_line a p {
    max-width: unset;
    font-size: 16px;
  }

  .logo_line a p {
    padding-left: 15px;
  }

  .logo_line a p span {
    font-size: 38px;
  }

  .places .categories {
    -ms-grid-columns: minmax(270px, 1fr) 15px minmax(270px, 1fr);
    grid-template-columns: repeat(2, minmax(270px, 1fr));
  }
  article .article_text img {
  width: unset;
  height: unset;
/*  margin:0 10px;*/
}

}

@media (min-width: 768px) {
  div#mapkh {
    width: 568px;

  }
  .searchbox.active{left:-260px;width: 300px;}

  .emodal.nano {
    width: 30%;
  }
  .alignleft {
    float: left;
    margin: 0 10px 0 0;
  }
.alignright {
    float: right;
    margin: 0 0 0 10px;
  }
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
  }
  .btn {
    font-size: 26px;
    padding: 18px 75px;
  }

  .partners_line span {
    display: inline-block;
  }

  .partners_line .partner_mobile {
    display: none;
  }

  .news {
    padding: 65px 0;
  }

  .travel {
    padding: 65px 0;
  }

  .places .categories {
    -webkit-column-gap: 28px;
    -moz-column-gap: 28px;
    column-gap: 28px;
    row-gap: 17px;
  }

  .places .be_active h4 {
    font-size: 28px;
  }

  .places .be_active p {
    font-size: 22px;
    margin: 38px 0;
  }

  .places .be_active a {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  nav#menu .main-menu li a {
    cursor: pointer;
  }

  #all__page {
    min-height: 100vh;
    /*display: flex;*/
    flex-direction: column;
}
  .section_header .headline {
    padding-bottom: 10px;
  }
 .main-menu li.menu-item-has-children a {
 	padding-right: 20px;
 }
 .main-menu li.menu-item-has-children:after {
    right: 0;
    color: #fff;
    content: "\f054";
    font-family: FontAwesome;
    font-size: 10px;
    position: absolute;
    top: 30px;
    padding-right:15px;
}
 .main-menu > li.menu-item-has-children:after {
   content: "\f078";
   padding:0;
   right:1px;
 }

  .section_header__long .headline {
    padding-bottom: 25px;
  }

  .language-chooser {
    top: 12px;
    right: 15px;
  }

  .language-chooser li:first-child {
    margin-right: 5px;
  }

  .places {
    padding-bottom: 0;
    padding-top: 78px;
    margin-bottom: -45px;
  }

  .places .section_header {
    padding-left: 50px;
  }

  .places .places_body_wrapper {
    padding: 0 40px;
    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;
  }

  .places .map {
    display: block;
    margin-right: 20px;
  }

  .places .places_footer_wrapper {
    padding: 0;
    padding-right: 15px;
    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;
    margin-top: 35px;
  }

  .places .be_active {
    padding: 55px 70px;
    max-width: 543px;
    margin: 0 40px;
    margin-bottom: 40px;
  }

  .places .useful_links {
    padding: 40px 58px;
    padding-right: 40px;
    padding-bottom: 50px;/*80*/
    max-width: 455px;
  }

  .places .useful_links ul {
    margin-top: 23px;
  }

  .places .useful_links ul li {
    margin-bottom: 10px;
  }

  footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  footer .footer_wrapper {
    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-left: 34px;
    padding-right: 50px;
  }

  footer .socials_wrapper {
    text-align: right;
  }
  .tdu {
    display: inline-block;
    text-align: right;
    width: 100%;
  }

  article .article_body_wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  article .article_text {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  article .article_text p {
    font-size: 18px;
    /*margin-bottom: 30px;*/
    margin-bottom: 15px;
  }

  article .article_images {
    display: block;
  }

  article .article_image {
    width: 322px;
    margin-bottom: 35px;
    margin-right: 40px;
  }

  article .article_image:last-child {
    margin-bottom: 0;
  }

  section.news .container {
  	height: 346px;
  	overflow: hidden;
  }
  section.news .container .news_slider{
  	display: flex;
  	flex-wrap: wrap;
  }

}

@media (min-width: 1110px) {
  .section_header h2 {
    font-size: 32px;
  }
}

@media (min-width: 1180px) {
  .travel .travel_slider {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .bg_container:after {
    display: none;
  }

  .bg_container {
    background-image: url("../images/backgrounds/bg_header.jpg");
  }

  #menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("../images/backgrounds/bg_menu.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #menu .main-menu {
    display: block;
    border: none;
  }

  #menu ul {
    display: block !important;
  }

  #menu ul span.drop-icon {
    display: inline-block;
  }

  #menu li.current-menu-item > a,
  #menu li > a:hover {
    background: #ebdcb955 !important;
    color: #fff;
  }

  #menu li {
    float: left;
    border-width: 0 1px 0 0;
  }

  #menu li:hover > .sub-menu {
    visibility: visible;
    opacity: 0.96;
  }

  #menu li label.drop-icon {
    display: none;
  }

  #menu .sub-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.35s, visibility 0.35s;
    -o-transition: opacity 0.35s, visibility 0.35s;
    transition: opacity 0.35s, visibility 0.35s;
    border-width: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    z-index: 3000;
    background-color: #764C2A;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  #menu .sub-menu li {
    float: none;
    border-width: 0 0 1px;
  }

  #menu .sub-menu li:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
/*    overflow: hidden; убрал, иначе нижнее подменю не показывается*/
  }

  #menu .sub-menu li.current-menu-item > a,
  #menu .sub-menu li > a:hover {
    background: #EBDCB9 !important;
    color: #764A28;
  }
 #menu .sub-menu li:last-child > a:hover {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }    

  #menu .sub-menu a {
    padding: 12px 20px 12px 23px;
    min-height: 55px;
    max-height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.25s all;
    -o-transition: 0.25s all;
    transition: 0.25s all;
  }

  #menu .sub-menu .sub-menu {
    border-top-right-radius: 8px;
    top: 0;
    left: 100%;
  }
   #menu .sub-menu .sub-menu__left {
   	border-top-right-radius: 0;
    border-top-left-radius: 8px;
  }
  #menu .sub-menu .sub-menu li:first-child {
    border-top-right-radius: 8px;
    overflow: hidden;
  }
    #menu .sub-menu .sub-menu__left li:first-child {
    border-top-right-radius: 0px;
    border-top-left-radius: 8px;
    overflow: hidden;
  }


  #menu .sub-menu .drop-icon {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  #menu .sub-menu__left {
    left: unset;
    right: 0;
  }

  #menu .sub-menu__left .sub-menu {
    left: unset;
    right: 100%;
  }

  #menu a {
    padding: 22px 12px;
    background: none !important;
    border: none !important;
    font-size: 13px;
    text-transform: uppercase;
    color: #ebdcb9;
  }

  #menu a:hover,
  #menu .sub-menu:hover ~ a,
  #menu .menu_active {
    color: #e0c891;
  }

  #toggle-menu {
    display: none;
  }

  #menu .sub-menu,
  #menu input[type="checkbox"]:checked + .sub-menu {
    display: none;
  }

  .logo_line {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*padding-top: 35px;
    padding-bottom: 28px;*/
    border: none;
  }

  .logo_line a {
    display: block;
  }

  .logo_line a img {
    width: 128px;
    -webkit-filter: unset;
    filter: unset;
    margin-bottom: 1px;
  }

  .logo_line a p {
    font-size: 10px;
    width: 197px;
  }

  .logo_line a p {
    padding-left: 0;
  }

  .logo_line a p span {
    font-size: 40px;
    letter-spacing: -0.02em;
  }

  .afterheader_slide {
    display: block !important;
  }

  .places .categories {
    margin-top: 0px;
  }

  .places .places_footer_wrapper {
    padding-right: 0px;
  }

  article {
    padding: 62px 0;
    }
  article.category {
    flex-wrap: nowrap;
  }
  article.category .section_article {
    margin:0 0 0 15px;
  }
  .afterheader_slider {
	overflow: hidden;
	height: 400px;
}

}

@media (min-width: 1360px) {
  #menu a {
    font-size: 15px;
  }

  #menu .sub-menu {
    width: 300px;
  }

  #menu .sub-menu a {
    padding: 12px 20px 12px 23px;
    min-height: 60px;
    max-height: 90px;
  }
  .main-menu > li.menu-item-has-children:after {
   right:0px;
 }
}

@media (min-width: 1600px) {
  #menu a {
    padding: 23px 16px;
    font-size: 16px;
    right:0;
  }
  .main-menu > li.menu-item-has-children:after {
   content: "\f078";
   padding:0;
   right:4px;
 }

  #menu .sub-menu {
    width: 320px;
  }

  #menu .sub-menu a {
    padding: 12px 20px 12px 23px;
    min-height: 64px;
    max-height: 90px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 20px;
  background-color: #4A3521;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #693018; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #EBDCB9; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fff; 
}

article .article_text .wp-caption img {
  padding:6px;
  width: 100%;
}
article .article_text .wp-caption {
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-filter: drop-shadow(1px 2px 3px #ccc);
    filter: drop-shadow(1px 2px 3px #ccc);
}
article .article_text .wp-caption-text {
    padding: 0;
    font-size: 12px;
    margin: 5px;
    padding: 0;
    text-align: center;
    text-indent: 0;
}


 /* khbs  */
 
 /* YM hiding*/
 a[href*="yandex"] {
    display: none;
 }