body {  
  font-family: "Gilroy-Regular", sans-serif;  
  font-size: 14px;
  color: #000;
  min-width: 320px;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised; }  

.hidden {
  display: none; }

section {
    padding: 80px 0 80px;
}

a:active, a:focus, input, textarea, button { outline: none; }

/*----------header------------*/
.header-content{
  display: flex;
  align-items: center;
}
.header-logo img{
  width: 100px;
}
.header-contacts{
  display: flex;
  align-items: center;
  border-bottom: 1px #f2f2f2 solid;
  margin-left: 20px;
}
.header-item{
  flex-grow: 1;
}
.adress-item{
  display: flex;
  align-items: center;
}
.header-lines{
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-adress p{
  color: #383838;
  font-size: 14px;
  line-height: 1.2;
}
.header-social ul{
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.header-social ul li{
  display: inline-block;
  padding-left: 10px;
}
.header-social ul li:first-child{
  padding-left: 0;
}
.header-social{
  text-align: right;
  flex-grow: 10;
}
.header-phone{
  text-align: right;  
}
.header-phone a{
  color: #383838;
  font-size: 20px;
  font-family: "Gilroy-Bold", sans-serif;
}
.header-phone a:hover{
  color: #fa7a35;
  transition: all .5s ease;
}
.header-phone p{
  color: #292929;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 0;
}
.header-btn{
  text-align: right;
}
.header-btn a{
  padding: 10px 18px 10px 18px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
}
.header-btn a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
.navbar-nav > li > img{
  width: 20px;
  margin-left: 35px;
}
.navbar-nav > li > a {    
    display: inline-block;
    color: #292929;
    line-height: 42px;
    font-size: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;   
}
.navbar-nav > li > a.active{
  color: #fa7a35;
}
.navbar-nav > li{
  padding: 0 18px 0 18px;
}
.navbar-nav > li:first-child{
  padding-left: 0;
}
.navbar-nav > li:last-child{
  padding-right: 0;
}

/*.navbar-nav > li:before{
   content: '';
    width: 1px;
    height: 30%;
    background: #000;
    position: absolute;
    top: 35%;
    left: 0;
}
.navbar-nav > li:first-child:before {
  display: none;
}*/

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.nav > li > a:hover,
.nav > li > a:focus,
.navbar-nav > li > a.active {
  background-color: transparent;
  color: #fa7a35;
}

@media (min-width: 768px){
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px){
  .navbar-nav {  
    margin: 0;
  }
}
.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-align: center;
}
@media (min-width: 768px){
  .navbar-nav>li {
    display: inline-block;
  }
}
.nav>li {
    position: relative;
    /*display: block;*/
}
@media (max-width: 992px){
  .sb-search {
    display: none;
  }
}
@media (max-width: 992px){
  .nav {
    display: none;
  }
}

.navbar ul>li ul {
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
    background: #fff;
    position: absolute;
    top: 44px;
    left: 14px;
    height: auto;
    padding: 0;
    z-index: 22 !important;
    text-align: left;
    padding: 12px 26px;
}

.navbar ul>li ul>li ul.second-drop{
  left: 183px;
  top: -4px;
}
.navbar ul>li:hover>ul {
    opacity: 1;
    border-radius: 3px;
    filter: alpha(opacity=100);
    visibility: visible;
    box-shadow: -1px 11px 22px rgba(0, 0, 0, 0.1);
}
.navbar ul>li ul .fa{
  margin-left: 70px;
}
.navbar ul>li ul li {
    white-space: nowrap;
    position: relative;
    display: block;
    padding: 0;
    margin: 16px 0;
}
.navbar ul>li ul a {
    color: #292929;
    text-transform: uppercase;
    font-size: 15px;
}
.navbar ul>li ul a:hover {
    color: #fa7a35;
}

/*Toogle Menu*/
.toggle-mnu {
  display: block;
  width: 28px;
  height: 28px;
  margin-top: 16px;
}
.toggle-mnu span:after, 
.toggle-mnu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
}
.toggle-mnu span:after {
  top: 18px;
}
.toggle-mnu span {
  position: relative;
  display: block;
}
.toggle-mnu span, 
.toggle-mnu span:after, 
.toggle-mnu span:before {
  width: 100%;
  height: 3px;
  background-color: #fa7a35;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;  
}
.toggle-mnu.on span {
  background-color: transparent;
}
.toggle-mnu.on span:before {
  transform: rotate(45deg) translate(-1px, 0px);
}
.toggle-mnu.on span:after {
  transform: rotate(-45deg) translate(6px, -7px);
}
/*End Toogle Menu*/
.toggle-mnu {
  position: absolute;
  top: 20px;
  right: 0px;
  z-index: 500;
}
.hidden-mnu {  
  display: none;
  z-index: 50;
  width: 80%;
  right: -11px;
  background-color: #fff;
  position: absolute;
  box-shadow: -1px 11px 22px rgba(0, 0, 0, 0.1);
}
.hidden-mnu ul {
  padding: 0;
  border-bottom: 1px #f2f2f2 solid;
}
.hidden-mnu li {
    display: block;
    /*padding: 0px 10px;*/
    color: #292929;
    font-size: 15px;
    text-align: left;
    text-transform: uppercase;    
}
.hidden-mnu a {
  color: #292929;
  display: block;
  padding: 12px 10px;
}
.hidden-mnu a:active {
  text-decoration: underline;
}
.hidden-mnu a:hover {
  color: #fa7a35;
  background-color: #fff;   
  transition: all .5s ease;
}


.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;
}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  padding: 12px 18px 12px 50px;
  /*background: #4d5158;*/
  box-shadow: inset 0 -1px #f2f2f2;
  color: #292929;
  font-size: 1.6rem;
}
.no-touch .cd-accordion-menu label:hover, .no-touch .cd-accordion-menu a:hover {
  /*background: #52565d;*/
}
.cd-accordion-menu label::before {
  /* icons */
  content: '';
  display: inline-block;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu label {
  cursor: pointer;
}
.cd-accordion-menu label::before {
  background-image: url(../img/cd-icons.svg);
  background-repeat: no-repeat;
}
.cd-accordion-menu label::before {
  /* arrow icon */
  left: 18px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
/*.cd-accordion-menu label::after {
  folder icons 
  left: 41px;
  background-position: -16px 0;
}*/
.cd-accordion-menu a::after {
  /* image icon */
  left: 36px;
  background: url(../img/cd-icons.svg) no-repeat -48px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label::after {
  /* show open folder icon if item is checked */
  background-position: -32px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  /*background: #35383d;*/
  box-shadow: inset 0 -1px #f2f2f2;
  padding-left: 82px;
}
.no-touch .cd-accordion-menu ul label:hover, .no-touch
.cd-accordion-menu ul a:hover {
  background: #3c3f45;
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}
.cd-accordion-menu ul label::before {
  left: 36px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 59px;
}
.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding-left: 100px;
}
.cd-accordion-menu ul ul label::before {
  left: 54px;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 77px;
}
.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 118px;
}
.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 95px;
}
@media only screen and (min-width: 600px) {
  .cd-accordion-menu label, .cd-accordion-menu a {
    font-size: 15px;   
  }
  .cd-accordion-menu label::before {
    left: 24px;
  }
  /*.cd-accordion-menu label::after {
    left: 53px;
  }*/
  .cd-accordion-menu ul label,
  .cd-accordion-menu ul a {
    padding-left: 72px;
  }
  .cd-accordion-menu ul label::before {
    left: 48px;
  }
  .cd-accordion-menu ul label::after,
  .cd-accordion-menu ul a::after {
    left: 77px;
  }
  .cd-accordion-menu ul ul label,
  .cd-accordion-menu ul ul a {
    padding-left: 130px;
  }
  .cd-accordion-menu ul ul label::before {
    left: 72px;
  }
  .cd-accordion-menu ul ul label::after,
  .cd-accordion-menu ul ul a::after {
    left: 101px;
  }
  .cd-accordion-menu ul ul ul label,
  .cd-accordion-menu ul ul ul a {
    padding-left: 154px;
  }
  .cd-accordion-menu ul ul ul label::before {
    left: 96px;
  }
  .cd-accordion-menu ul ul ul label::after,
  .cd-accordion-menu ul ul ul a::after {
    left: 125px;
  }
}
.cd-accordion-menu.animated label::before {
  /* this class is used if you're using jquery to animate the accordion */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
/*----------------------------*/

/*-----header-carousel----*/
.header-carousel{
  padding: 0;
}
.header-carousel .item {  
  padding: 0 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 510px;
  display: flex;
  align-items: center;
}
.header-carousel .item:before{

}
.header-carousel .item:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
.header-carousel .item h1,
.header-carousel .item h2{
  color: #fff;
  position: relative;
  font-size: 34px;
  /* text-transform: uppercase; */
  margin: 0;
  line-height: 1.1;
  /* padding-left: 32px; */
  text-shadow: 0px 2px 2px #000;  
  text-align: center;  
}
.header-carousel .item p{
  /*padding-left: 32px; */
  color: #fff;
  font-size: 24px;
  /* font-weight: 800; */
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-left: auto;
  margin-bottom: 20px;
  text-shadow: 0px 2px 2px #000;
}
.header-carousel .item h3{
  color: #fff; 
  text-shadow: 0px 2px 2px #000;
  font-size: 34px;
  line-height: 1.2;
  margin-top: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-family: "Gilroy-Bold",sans-serif;
}
.header-carousel .item h6{
  color: #c00000;
    text-shadow: 0px 2px 2px #fff;
  font-family: "Gilroy-Bold",sans-serif;
  text-align: center;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 50px;
}
.home-slider-btn{
  margin-top: 30px;
  text-align: center;
}
.home-slider-btn a{
  padding: 10px 38px 10px 38px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
}
.home-slider-btn a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}

.header-carousel .owl-controls {
    left: 0;
}
.header-carousel .owl-controls {
    left: 0;
    top: 47%;
    width: 100%;
    position: absolute;
}
.header-carousel .owl-controls .owl-nav {
    top: 0;
    width: 100%;
    position: absolute;
}
.header-carousel .owl-controls .owl-nav>div {
    position: absolute;
    left: 25px;
    font-size: 34px;
    line-height: 38px;
    color: #fafafa;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.header-carousel .owl-controls .owl-nav>div.owl-next {
    right: 25px;
    left: auto;
}
.header-carousel .owl-controls .owl-nav>div:hover {
    color: #fa7a35;
}
.header-carousel .owl-dots {    
    text-align: center;
    position: absolute;
    margin: auto;
    width: 100%;   
    top: 250px;
}
.header-carousel .owl-dots .owl-dot.active {
    background-color: #fa7a35;
}
.header-carousel .owl-dots .owl-dot {
    background-color: #fff;
    border-radius: 10em;
    display: inline-block;
    height: 8px;
    margin: 3px;
    webkit-border-radius: 10em;
    width: 8px;
    border: 1px #fa7a35 solid;
}
.header-carousel .col-lg-12{
  padding: 0;
}
/*------------------------*/

/*------price-in-wrap-----*/
.price-in-wrap{
  padding-bottom: 0px;
  padding-top: 50px;
}
.section-title h3{
  text-align: center;
  color: #292929;
  font-size: 26px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 60px;
}
.price-in-wrap-item{
  text-align: center;  
  margin-bottom: 30px;
}
.price-in-wrap-item-img{
  display: flex;
  border: 1px #fa7a35 solid;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: auto;
}
.price-in-wrap-item img{
  width: 40px;  
}
.price-in-wrap-item p{
  font-size: 18px;
  color: #292929;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
}
/*------------------------*/

/*-------we-make----------*/
.we-make{
  padding-top: 0;
}
.we-make .section-title h3{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.we-make .section-title p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.we-make .section-title p:last-child{
  margin-bottom: 0px;
}
/*------------------------*/

/*-------form-own---------*/
.form-own{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
}
.form-own .section-title h3{
  color: #fff;
  margin-bottom: 20px;
}
.form-own .section-title p{
  color: #fff;
  text-align: center;
  max-width: 520px;    
  margin: auto;
  margin-bottom: 30px;
}
.big-form-item input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 100%;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
.big-form-item input[type="text"] {    
    color: #000;
}
.big-form-item ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.big-form-item :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.big-form-item ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.big-form-item :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.big-form-item label span{
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 16px;
}
.select {
    display: block;
    /*margin-bottom: 30px;*/
    width: 100%;
    position: relative;
}
.new-select {
    position: relative;    
    padding: 16px 10px;
    cursor: pointer;
    user-select: none;
    color: #000;
    border-radius: 5px;
    height: 51px;
    background-color: rgba(255,255,255,.7);
    font-size: 16px;
    font-weight: 800;
}
.new-select__list {
    position: absolute;
    top: 51px;
    left: 0;
    user-select: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background-color: rgba(255,255,255,1);
    user-select: none;
}
.new-select__list.on {
    display: block;
}
.new-select__item span {
    display: block;
    padding: 8px 15px;
    color: #3c3c3c !important;
}
.new-select__item span:hover {
    color: #fa7a35;
    transition: all .5s ease;
}
.new-select:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 9px;
    top: 22px;
    background: url("../img/select.png") no-repeat;
    opacity: 1;

    -webkit-transition: all .27s ease-in-out;
        -o-transition: all .27s ease-in-out;
            transition: all .27s ease-in-out;

    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}
.select-wrap{
  /*margin-bottom: 30px;*/
  flex-grow: 2;
  margin-left: 4px;
  margin-right: 8px;
}
.big-form-item{
  display: flex;
}
.big-form-item label{
  flex-grow: 1;
  margin-right: 4px;
}
.new-select__item{
  border-bottom: 1px #3c3c3c solid;
}
.new-select__item:last-child{
  border-bottom: none;
}
.form-date input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 100%;
  text-indent: 2px;
  background-color: rgba(255,255,255,.7);
  padding-right: 10px;
  font-size: 16px;
  font-weight: 800;
}
.form-date input[type="text"] {    
    color: #000;
}
.form-date ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.form-date :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.form-date ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.form-date :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.form-date label span{
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 16px;
}
.form-date{
  display: flex;
}
.new-date span{
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 16px;
}

.first-date{
  margin-right: 4px;
}
.second-date{
  margin-left: 4px;
}
.form-date input[type=date]::-webkit-calendar-picker-indicator{
  background:url("../img/select.png") no-repeat 90% 50%;
}
.day-wrap label span{
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 16px;
}
.first-tabs .tabs>input[type="radio"] {
  display: none;
}
.first-tabs .tabs>div { 
  display: none;    
  font-size: 16px;
}
#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3{
  display: block;
}
.first-tabs .tabs>label {
  text-align: center;
    vertical-align: middle;
    user-select: none;
    margin: 0px 0px 30px 0;
    padding: 8px 0px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;    
    margin-bottom: 15px;
    background-color: rgba(255,255,255,.5);
    width: 95px;
    display: inline-block;
    font-weight: 800;
}
.first-tabs .tabs>label:hover{
  background-color: #fa7a35;
  color: #fff;
  transition: all .5s ease;  
}
.first-tabs .tabs>input[type="radio"]:checked+label {
  background-color: #fa7a35; 
  color: #fff; 
}
.first-tabs .tabs span{
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
#content-1 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-1 input[type="text"] {    
    color: #000;
}
#content-1 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-1 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-1 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-1 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
#content-2 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-2 input[type="text"] {    
    color: #000;
}
#content-2 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-2 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-2 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-2 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
#content-3 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-3 input[type="text"] {    
    color: #000;
}
#content-3 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-3 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-3 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-3 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}


.first-radio-item{
  display: flex;
  align-items: center;
}
.first-radio>input[type="radio"] {
    display: none;
}
.first-radio>label {
    text-align: center;
    vertical-align: middle;
    user-select: none;
    margin: 0px 6px 6px 0;
    padding: 8px 0px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;    
    background-color: rgba(255,255,255,.7);   
    display: inline-block;
    width: 30px;
    font-weight: 800;
}
.first-radio>label:hover {
    background-color: #fa7a35;
    color: #fff;
    transition: all .5s ease;
}
.first-radio>input[type="radio"]:checked+label {
    background-color: #fa7a35;
    color: #fff;
}
.first-radio>label.more{
  width: 75px;
}
.first-radio-item-span span{
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
#two-tab-btn-1:checked~#content-two-0,
#two-tab-btn-1:checked~#content-two-1,
#two-tab-btn-2:checked~#content-two-2,
#two-tab-btn-3:checked~#content-two-3,
#two-tab-btn-4:checked~#content-two-4,
#two-tab-btn-5:checked~#content-two-5,
#two-tab-btn-6:checked~#content-two-6,
#two-tab-btn-7:checked~#content-two-7{
  display: block;
}
.tabs-two>input[type="radio"] {
  display: none;
}
.tabs-two>div { 
  display: none;    
  font-size: 16px;
}
.tabs-two>label {
    text-align: center;
    vertical-align: middle;
    user-select: none;
    margin: 0px 2.5px 12px 0;
    padding: 8px 0px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;    
    background-color: rgba(255,255,255,.7);   
    display: inline-block;
    width: 30px;
    font-weight: 800;
}
.tabs-two>label:hover{
  background-color: #fa7a35;
  color: #fff;
  transition: all .5s ease;
}
.tabs-two>label:not(:first-of-type) {
  border-left: none;
}
.tabs-two>input[type="radio"]:checked+label {
  background-color: #fa7a35;
  color: #fff; 
}
.tabs-two span{
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
.tabs-two>label.more{
  width: 75px;
}
#content-two-2 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-2 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;
}
#content-two-2 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px;
}
#content-two-3 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-3 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;
  margin-left: 4px;
}
#content-two-3 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px;
  margin-right: 4px;
}
#content-two-4 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-4 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;  
}
#content-two-4 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px; 
}
#content-two-5 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-5 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;  
}
#content-two-5 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px; 
}
#content-two-6 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-6 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;  
}
#content-two-6 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px; 
}
#content-two-7 .select-wrap{
  display: flex;
  margin-bottom: 0;
}
#content-two-7 .select-wrap label.content-two-one{
  flex-grow: 1;
  margin-right: 4px;  
}
#content-two-7 .select-wrap label.content-two-two{
  flex-grow: 1;
  margin-left: 4px; 
}
/*.tabs-two span{
  text-align: center;
}
.tabs-two{
  text-align: center;
}*/
/*.first-tabs .tabs span{
  text-align: center;
}
.first-tabs{
  text-align: center;
}*/
/*#content-1 input{
  margin: auto;
}*/

.first-tabs-mobile .tabs>input[type="radio"] {
  display: none;
}
.first-tabs-mobile .tabs>div { 
  display: none;    
  font-size: 16px;
}
#three-tab-btn-1:checked~#content-three-1,
#three-tab-btn-2:checked~#content-three-2,
#three-tab-btn-3:checked~#content-three-3{
  display: block;
}
.first-tabs-mobile .tabs>label {
  text-align: center;
    vertical-align: middle;
    user-select: none;
    margin: 0px 0px 30px 0;
    padding: 8px 0px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;    
    margin-bottom: 15px;
    background-color: rgba(255,255,255,.7);
    width: 95px;
    display: inline-block;
    font-weight: 800;
}
.first-tabs-mobile .tabs>label:hover{
  background-color: #fa7a35;
  color: #fff;
  transition: all .5s ease;  
}
.first-tabs-mobile .tabs>input[type="radio"]:checked+label {
  background-color: #fa7a35; 
  color: #fff; 
}
.first-tabs-mobile .tabs span{
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
#content-three-1 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-three-1 input[type="text"] {    
    color: #000;
}
#content-three-1 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-three-1 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-three-1 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-three-1 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
#content-three-2 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-three-2 input[type="text"] {    
    color: #000;
}
#content-three-2 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-three-2 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-three-2 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-three-2 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
#content-three-3 input{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #fff;
  display: block;
  height: 51px;
  margin-bottom: 15px;
  width: 292px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 800;
}
#content-three-3 input[type="text"] {    
    color: #000;
}
#content-three-3 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
#content-three-3 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
#content-three-3 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
#content-three-3 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}

.message textarea{
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
  color: #000;
  display: block;  
  margin-bottom: 15px;
  width: 100%;
  height: 206px;
  text-indent: 10px;
  background-color: rgba(255,255,255,.5);
  font-weight: 800;
  font-size: 16px;
}
.message span{
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
.message textarea[type="text"] {    
    color: #000;
}
.message textarea ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.message textarea :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.message textarea ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.message textarea :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.message textarea::placeholder {
  color: #000;
}

.form-btn{
  text-align: center;
  margin-top: 20px;
}
.form-btn a{
  padding: 10px 18px 10px 18px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
}
.form-btn a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}

.form-btn .submFormAs{
  padding: 10px 18px 10px 18px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  width: fit-content;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.form-btn .submFormAs:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
.form-btn .submFormAs_T{
  padding: 10px 18px 10px 18px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  width: fit-content;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.form-btn .submFormAs_T:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
/*------------------------*/

/*--------interesting-----*/
.interesting .section-title h3{
  color: #fa7a35;
}
.interesting-carusel .owl-controls .owl-nav {
    bottom: 56%;
    width: 100%;
    position: absolute;
    z-index: 9;
}
.interesting-carusel .owl-controls .owl-nav>div {
    position: absolute;
    left: -24px;
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background-color: #fa7a35;
    border: 1px #fa7a35 solid;
    border-radius: 50px;
    padding: 5px 16px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 20%), 0 0 1px rgb(0 0 0 / 20%) inset;
}
.interesting-carusel .owl-controls .owl-nav>div.owl-next {
    right: -24px;
    left: auto;
}
.interesting-carusel .owl-controls .owl-nav>div:hover {
    color: #fa7a35;
    border: 1px #fa7a35 solid;
    background-color: transparent;
}
a.interesting-carusel-item{
  border: 1px #f2f2f2 solid;
  display: inline-block;
  padding: 20px 10px 90px 10px;
  width: 100%;
  border-radius: 50px;
}
a.interesting-carusel-item:hover{
  box-shadow: -1px 11px 22px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
}
.interesting-carusel-item-text{
  margin-bottom: 20px;
}
.interesting-carusel-item-text h5{
  text-align: center;
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.interesting-carusel-item-text p{
  color: #3c3c3c;
  margin-top: 0;
  font-size: 14px;
  text-align: center;
}
.interesting-carusel-item-img{
  display: block;
  width: 100%;
  text-align: center;
}
.interesting-carusel-item-img img{
  width: 100%;
  border-radius: 50px;
}
.interesting-carusel-item-btn{
  position: absolute;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 25px;
}
.interesting-carusel-item-btn-text{
  background: linear-gradient(to right, #0898f3, #588bf7, #a37ffb);
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  padding: 20px 36px;
}
.interesting-carusel-item-btn-text p{
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 8px;
}
.interesting-carusel-item-btn-text span{
  color: #fff;
  border: 1px #fff solid;
  border-radius: 50px;
  padding: 10px 16px;
  display: block;
}

.interesting .kurort-item-list-item img{
  width: 24px;
}
.interesting .kurort-item-list-item-two img{
  width: 24px;
}
.kurort-item-list-btn{ 
  margin-top: 20px;
}
.kurort-item-list-btn span{
  padding: 10px 18px 10px 18px;
  background-color: #fff;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fa7a35;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
}
a.kurort-item:hover .kurort-item-list-btn span{
  background-color: #fa7a35;
    border: 1px #fa7a35 solid;
    color: #fff;
    transition: all .5s ease;
}
/*------------------------*/

/*----------popular-------*/
.popular{
  padding-top: 60px;
  padding-bottom: 20px;
}
.popular .section-title h3{
  color: #00b050;
  margin-bottom: 0;
}

.black-bgc{
  /*background-color: #081122;*/
  padding-top: 40px;
  padding-bottom: 40px;
}
.black-bgc-carusel .owl-controls .owl-nav {
    bottom: 56%;
    width: 100%;
    position: absolute;
    z-index: 9;
}
.black-bgc-carusel .owl-controls .owl-nav>div {
    position: absolute;
    left: -24px;
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background-color: #2dcc70;
    border: 1px #2dcc70 solid;
    border-radius: 50px;
    padding: 5px 16px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 20%), 0 0 1px rgb(0 0 0 / 20%) inset;
}
.black-bgc-carusel .owl-controls .owl-nav>div.owl-next {
    right: -24px;
    left: auto;
}
.black-bgc-carusel .owl-controls .owl-nav>div:hover {
    color: #2dcc70;
    border: 1px #2dcc70 solid;
    background-color: transparent;
}
a.black-bgc-carusel-item{
  border: 1px #eee solid;
  display: inline-block;
  padding: 10px 10px 10px 10px;
  width: 100%;
  border-radius: 50px;
}
a.black-bgc-carusel-item:hover .black-bgc-carusel-item-btn-text{
  background: transparent;
  color: #fa7a35;
  box-shadow: 0px 0px 20px rgba(238, 108, 77, 0.2);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.black-bgc-carusel-item-text{
  margin-bottom: 16px;
}
.black-bgc-carusel-item-text h5{
  text-align: center;
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.black-bgc-carusel-item-text p{
  color: #292929;
  margin-top: 0;
  font-size: 14px;
  text-align: center;
}
.black-bgc-carusel-item-img{
  display: block;
  width: 100%;
  text-align: center;
}
.black-bgc-carusel-item-img img{
  width: 100%;
  border-radius: 50px;
}
.black-bgc-carusel-item-btn{
  position: relative;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
}
.black-bgc-carusel-item-text{
  margin-top: 12px;
}
.black-bgc-carusel-item-btn-text{
  background: #fa7a35;
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  padding: 20px 36px;
  border: 1px #fa7a35 solid;
  box-shadow: 0px 0px 20px rgba(238, 108, 77, 0.7);
}
.black-bgc-carusel-item-btn-text p{
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 0;  
}
a.black-bgc-carusel-item:hover .black-bgc-carusel-item-btn-text p{
  color: #000;
}
a.black-bgc-carusel-item:hover .black-bgc-carusel-item-btn-text{
  border: 1px #fa7a35 solid;
}
/*------------------------*/

/*--------credit-wr-------*/
.credit-wr{
  background-color: #f5f5f5;  
}
.credit-wr-text .section-title h3{
  text-align: center;
  margin-bottom: 20px;
}
.credit-wr-text p{
  font-size: 18px;
  color: #000;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
.credit-wr-text p a{
  color: #fa7a35;
  text-decoration: underline;
}
.credit-wr-text p a:hover{
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.credit-wr-img{
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
}
.credit-wr-img img{
  width: 100%;
  position: absolute;
  bottom: -262px;
  right: 0;
}
.credit-wr-text-btn{
  margin-top: 40px;
  text-align: center;
}
.credit-wr-text-btn a{
  padding: 10px 38px 10px 38px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.credit-wr-text-btn a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
/*------------------------*/

/*--------footer----------*/
.footer{
  padding: 15px 0 15px;
}
.footer-img{
  display: block;
  width: 100%;
  text-align: center;
}
.footer-img img{
  width: 100px;
}
footer .header-social{
  margin-top: 6px;
  margin-bottom: 6px;
}
.footer-text p{
  text-align: center;
  color: #292929;
  font-size: 14px;
  margin-bottom: 0;
}
.footer-mnu ul{
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.footer-mnu ul li a{
  color: #292929;
  font-size: 14px;
}
.footer-mnu ul li{
  margin-bottom: 6px;
}
.footer-mnu ul li a img{
  width: 10px;
  position: relative;
  bottom: 2px;
}
.footer-mnu ul li a:hover{
  color: #fa7a35;
  transition: all .5s ease;
}
.footer-contacts .adress-item{
  text-align: right;
  display: block;
}
.footer-contacts .adress-item p{
  margin-top: 0;
  margin-bottom: 0;
}
.footer-text{
  border-top: 1px #f2f2f2 solid;
  margin-top: 20px;
}
.mail-item a{
  color: #292929;
  font-size: 14px;
  text-align: right;
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}
.mail-item a:hover{
  color: #fa7a35;
  transition: all .5s ease;
}
.footer-head h3{
  text-align: center;
  color: #292929;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 12px;
}
footer .header-phone p{
  margin-top: 4px;
}
.footer-btn{
  text-align: center;
  margin-top: 16px;
}
.footer-btn a{
  padding: 10px 30px 10px 30px;
  background-color: #27ae61;
  border: 1px #27ae61 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.footer-btn a:hover{
  background-color: #fff;
  border: 1px #2dcc70 solid;
  color: #2dcc70;
  transition: all .5s ease;
}
.footer-politic p{
  color: #292929;
  font-size: 14px;
  line-height: 1.4;
}
.footer-politic p a{
  color: #fa7a35;
}
.footer-politic p a:hover{
  color: #292929;
  transition: all .5s ease;
}
/*-------------------------*/

/*--------best-curort------*/
.best-curort{
  padding-top: 40px;
  padding-bottom: 50px;
}
.best-curort-item{
  display: flex;
  /*align-items: center;*/
  background-color: #f5faff;
  margin-bottom: 30px;
}
.best-curort-item-img img{
  width: 300px;
}
.best-curort-item-text{
  padding: 40px 20px 40px;
}
.best-curort-item-text h5{
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}
.best-curort-item-text span{
  display: inline-block;
  background-color: #ed1b24;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  position: relative;
  bottom: 2px;
  margin-left: 12px;
}
.best-curort-item-text p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 20px;  
  margin-bottom: 0;
}
.best-curort-btn-more{
  margin: 15px 0;
}
.best-curort-btn-more a{
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
}
.best-curort-btn-more a:hover{
  color: #fa7a35;
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.best-curort-btn-hotel a{
  padding: 10px 60px 10px 60px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.best-curort-btn-hotel a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}

.best-curort .pagination > li:first-child > a,
.best-curort .pagination > li:first-child > span {
    margin-left: 0;
    border-radius: 5px;    
}
.best-curort .pagination > li:last-child > a,
.best-curort .pagination > li:last-child > span {
    border-radius: 5px;  
}
.best-curort .pagination > .active > a,
.best-curort .pagination > .active > span,
.best-curort .pagination > .active > a:hover,
.best-curort .pagination > .active > span:hover,
.best-curort .pagination > .active > a:focus,
.best-curort .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #fa7a35;
    border-color: #fa7a35;
}
.best-curort .pagination > li > a,
.best-curort .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.4;
    color: #fa7a35 !important;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #fa7a35;
    margin: 5px;
    border-radius: 5px;  
}
.best-curort .pagination > li > a:hover,
.best-curort .pagination > li > span:hover,
.best-curort .pagination > li > a:focus,
.best-curort .pagination > li > span:focus {
    color: #fff !important;
    background-color: #fa7a35;
    border-color: #fa7a35;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.best-curort .pagination li.active a { color: #fff !important }
.best-curort .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.best-curort .pagination > li {
    display: inline;
}
.best-curort .text-center{
  text-align: center;
}
.best-curort .pagination li a{
 width: auto;
}


.read-more-trigger>img {
  transition: transform 0.65s ease-in-out;
}

.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked~.read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}
.read-more-wrap{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 20px;
  text-indent: 30px;
}

.read-more-state~.read-more-trigger:before {
  content: '';
}

.read-more-state:checked~.read-more-trigger:before {
  content: '';
}

.read-more-target{
  margin-top: 4px;
  text-indent: 30px;
  margin-bottom: 12px;
}
.read-more-trigger {
  cursor: pointer;
  display: inline-block;   
  color: #000;
  font-size: 18px;
  line-height: 1.2;    
  font-weight: 800; 
  margin-bottom: 20px;
}
.read-more-trigger:hover{
  color: #fa7a35;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/*-------------------------*/

/*---------kurort----------*/
.kurort{
  padding-top: 20px;
  padding-bottom: 50px;
}
.kurort .section-title h3{
  margin-bottom: 30px;
}
.kurort .section-title p{
  color: #3c3c3c;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
}
.kurort-item{
  display: block;
}
.kurort-item-img{
  display: block;
  width: 100%;
}
.kurort-item-img img{
  width: 100%;
  border-radius: 5px;
}
.kurort-item-text h5{
  color: #292929;
  font-size: 18px;
  margin-bottom: 6px;
  margin-top: 16px;
}
a.kurort-item:hover h5{
  color: #fa7a35;
  -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
a.kurort-item:hover p{
  color: #fa7a35;
  -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.kurort-item-text p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 6px;
}
.kurort-item-list{
  display: flex;
  align-items: center;
}
.kurort-item-list-item{
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-bottom: 4px;
}
.kurort-item-list-item p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 4px;
}
.kurort-item-list-item ul{
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.kurort-item-list-item ul li{
 color: #3c3c3c;
 font-size: 14px;
 line-height: 1.2;
 margin-top: 0;
 margin-bottom: 0;
 margin-left: 4px;
}
.kurort-item-list-item-two{
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.kurort-item-list-item-two p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-left: 5px;
  margin-top: 0;
  margin-bottom: 0;
}
.kurort-item-list-item-two p span{
  color: #fa7a35;
  font-weight: 800;
}
.kurort-item-text{
  margin-bottom: 8px;
}
.kurort-item{
  margin-bottom: 30px;
}

.kurort .pagination > li:first-child > a,
.kurort .pagination > li:first-child > span {
    margin-left: 0;
    border-radius: 5px;    
}
.kurort .pagination > li:last-child > a,
.kurort .pagination > li:last-child > span {
    border-radius: 5px;  
}
.kurort .pagination > .active > a,
.kurort .pagination > .active > span,
.kurort .pagination > .active > a:hover,
.kurort .pagination > .active > span:hover,
.kurort .pagination > .active > a:focus,
.kurort .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #fa7a35;
    border-color: #fa7a35;
}
.kurort .pagination > li > a,
.kurort .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.4;
    color: #fa7a35 !important;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #fa7a35;
    margin: 5px;
    border-radius: 5px;  
}
.kurort .pagination > li > a:hover,
.kurort .pagination > li > span:hover,
.kurort .pagination > li > a:focus,
.kurort .pagination > li > span:focus {
    color: #fff !important;
    background-color: #fa7a35;
    border-color: #fa7a35;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.kurort .pagination li.active a { color: #fff !important }
.kurort .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.kurort .pagination > li {
    display: inline;
}
.kurort .text-center{
  text-align: center;
}
.kurort .pagination li a{
 width: auto;
}

.kurort-item-img span.rano{
  position: absolute;
  background-color: #ea4c89;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 5px;
  left: 19px;
}
.kurort-item-img span.zaman{
  position: absolute;
  background-color: #27ae61;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 36px;
  left: 19px;
}
.kurort-item-img span.priv{
  position: absolute;
  background-color: #fc7e0f;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 66px;
  left: 19px;
}
.kurort-item-img span.hot{
  position: absolute;
  background-color: #fa7a35;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 5px;
  left: auto;
  right: 20px;
}
.kurort-item-img span.niz{
  position: absolute;
  background-color: #ed1b24;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 36px;
  left: auto;
  right: 20px;
}
.kurort-item-img span.akcii{
  position: absolute;
  background-color: #e84c3d;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 66px;
  left: auto;
  right: 20px;
}
.kurort-item-img span{

}
.kurort .section-title h1{
  color: #ed1b24;
  position: relative;
  font-size: 40px;  
  margin: 0;
  line-height: 1.1; 
  font-family: "Gilroy-Bold",sans-serif;
  text-align: center;
  margin-bottom: 50px;
  max-width: 1000px;
  margin: auto;
  margin-left: auto;
  margin-bottom: 14px;  
}
/*-------------------------*/

/*-------hotel-wrap--------*/
.hotel-wrap{
  padding-top: 40px;
}
.hotel-wrap-item{
  display: flex;    
  margin-bottom: 30px;
}
.hotel-wrap-item-img img{
  width: 250px;
  border-radius: 5px;
}
.hotel-wrap-item-text{
  padding: 0px 20px 40px;
}
.hotel-wrap-item-text h5{
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 6px;
}
.hotel-wrap-item-text p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 4px;  
  margin-bottom: 0;
}
.hotel-wrap-btn-more{
  margin: 15px 0;
}
.hotel-wrap-btn-hotel a{
  padding: 10px 60px 10px 60px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.hotel-wrap-btn-hotel a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
.hotel-wrap-item-img{
  flex-grow: 0;
}
.hotel-wrap-item-text{
  flex-grow: 1;
}
.price-date{
   flex-grow: 1;
}
.hotel-wrap-item-text-list{  
  margin-top: 10px;
  border-top: 1px #f2f2f2 solid;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px #f2f2f2 solid;
}
.hotel-wrap-item-text-list-item{
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-bottom: 10px;
}
.hotel-wrap-spisok{
  display: flex;
}
.hotel-wrap-item-text-list-item p{
  margin-left: 4px;
}
.hotel-wrap-item-text-list-item span{
  color: #fa7a35;
}
.hotel-wrap-spisok-bgc{
  display: inline-block;
  background-color: #f5f5f5;
  padding: 0 6px 4px 6px;
  border-radius: 5px;
}
.price-date-first-text p{
  margin-top: 0;
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.price-date-first-text h6{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;  
  margin-bottom: 0;
  font-weight: 300;
  margin-top: 0;
}
.price-date-first-text h6 span{
  color: #fa7a35;
  font-weight: 800;
}
.price-date-first-table{
  margin-top: 20px;
}
.price-date-first-table p{
  margin-top: 0;
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.product-description-second td {
    display: table-cell;    
    position: relative;
    line-height: 16px;
    vertical-align: top;
    padding-right: 14px;
    border-bottom: 1px #f2f2f2 solid;
    padding-bottom: 4px;
    padding-top: 4px;
    color: #3c3c3c;
    font-size: 14px;
}
.product-description-second td:last-child {
    padding-left: 14px;
    padding-right: 0;
    vertical-align: bottom;
}
.product-description-second td:last-child:before {
    content: '-';
    position: absolute;
    left: 0;
}
.product-description-second{
  width: 100%;
}
.price-date-first-table{
  margin-bottom: 20px;
}
.product-description-second td span{
  display: inline-block;
  background-color: #f5f5f5;
  padding: 6px 6px 6px 6px;
  border-radius: 5px;
}
.hotel-wrap-item .hotel-wrap-btn-hotel a{
  width: 100%;
}

.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
} 
.col-xs-1-5 {
  width: 20%;
  float: left;
} 
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
} 
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
} 
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
}
.hotel-wrap-second-line-list h5{
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 6px;
}
.hotel-wrap-second-line-list ul{
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.hotel-wrap-second-line-list ul li{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;  
  display: flex;
  align-items: center;  
  margin-bottom: 14px;
}
.hotel-wrap-second-line-list ul li img{
   margin-right: 6px;
   width: 20px;
}
.hotel-wrap-btns-zakaz-hotel{
  text-align: center;
}
.hotel-wrap-btns-zakaz-hotel a{
  padding: 10px 60px 10px 60px;
  background-color: #fa7a35;
  border: 1px #fa7a35 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.hotel-wrap-btns-zakaz-hotel a:hover{
  background-color: #fff;
  border: 1px #fa7a35 solid;
  color: #fa7a35;
  transition: all .5s ease;
}
.hotel-wrap-btns-about-hotel{
  text-align: center;
}
.hotel-wrap-btns-about-hotel a{
  padding: 10px 28px 10px 28px;
  background-color: #27ae61;
  border: 1px #27ae61 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
.hotel-wrap-btns-about-hotel a:hover{
  background-color: #fff;
  border: 1px #2dcc70 solid;
  color: #2dcc70;
  transition: all .5s ease;
}
.hotel-wrap-btns-contacts ul{
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  display: block;
  text-align: center;
}
.hotel-wrap-btns-contacts ul li{
  display: inline-block;
}
.hotel-wrap-btns-contacts-phone{
  text-align: center;
  margin-top: 6px;
}
.hotel-wrap-btns-contacts-phone a{
  color: #383838;
  font-size: 20px;
  font-family: "Gilroy-Bold", sans-serif;
}
.hotel-wrap-btns-contacts-phone a:hover{
  color: #fa7a35;
  transition: all .5s ease;
}

.test-carous-carusel .owl-controls .owl-nav {
    bottom: 56%;
    width: 100%;
    position: absolute;
    z-index: 9;
}
.test-carous-carusel .owl-controls .owl-nav>div {
    position: absolute;
    left: -24px;
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background-color: #fa7a35;
    border: 1px #fa7a35 solid;
    border-radius: 50px;
    padding: 5px 16px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 20%), 0 0 1px rgb(0 0 0 / 20%) inset;
}
.test-carous-carusel .owl-controls .owl-nav>div.owl-next {
    right: -24px;
    left: auto;
}
.test-carous-carusel .owl-controls .owl-nav>div:hover {
    color: #fa7a35;
    border: 1px #fa7a35 solid;
    background-color: transparent;
}

.test-carous-carusel .galeryBox-item{
  padding-top: 0;
}
.galeryBox-item{
  padding-left: 0;
  padding-top: 15px;
}
.galeryBox__box {
  padding: 0;
  margin: 0;
  box-shadow: 0 1px 7px rgb(0 0 0 / 20%), 0 0 1px rgb(0 0 0 / 20%) inset;
  width: 100%;
  height: 260px;
  overflow: hidden; }

.galeryBox__box-inner {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1; }

.galeryBox--special .galeryBox__box {
  height: 250px;
  overflow: hidden; }

.galeryBox--special .galeryBox__img {
  height: 210px;
  overflow: visible; }

.galeryBox__img {
  position: relative;
  z-index: -1; }

.galeryBox__img {
  border-radius: 5px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .galeryBox__img:hover {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

.galeryBox__img-link {
  width: 100%;
  height: 100%;
  text-decoration: none; 
}

.hotel-wrap-btns{
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}
/*-------------------------*/

/*--------why-we-wrap------*/
.why-we-wrap{
  padding-top: 40px;
}
.why-we-wrap .section-title h3 span{
  color: #fa7a35;
}

.begin-wrap ul{
  list-style-type: none;
  padding-left: 0;
  margin: auto;
}
.circle-item{
    background: #f5faff;
    border-radius: 100%;    
    display: inline-block;
    position: relative;
    height: 80px;
    width: 80px;
    z-index: 1;
    top: 24px;
}
.circle-item span{
    position: relative;
    left: 34px;
    top: 24px;
    font-size: 28px;
    color: #292929;
    font-weight: 600;
}
.begin-wrap ul li:after {
    bottom: 140px;
    content: " ";
    left: calc(7rem - 1px);
    position: absolute;    
    width: 1px;
    background: #f2f2f2;
}

.begin-wrap ul li:first-of-type:after {
    content: "";
    top: 4%;
}
.begin-wrap ul li:last-of-type:after {
    bottom: 50%;
}
.begin-wrap ul li.last-type:after {
  content: "";
}
.begin-wrap .img-item{
  display: block;
  width:65%;
  margin:auto;
}
.begin-wrap li{
  padding-bottom: 120px;
}
.information-item h5{
  color: #292929;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0;
}
.information-item p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  margin-top: 6px;
}
/*-------------------------*/

/*-------rassrochka-head---*/
.rassrochka-head{
  padding: 110px 0 110px;
}
.rassrochka-head .credit-wr-img img {
    width: 100%;
    position: absolute;
    bottom: -357px;
    right: 0;
    left: 115px;
}
.rassrochka-head .credit-wr-img {
    display: block;
    width: 65%;
    text-align: center;
    position: absolute;
}
/*-------------------------*/

/*--------uslovia-wrap----------*/
.uslovia-wrap{
  padding-bottom: 50px;
}
.uslovia h5{
  color: #292929;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}
.uslovia p{
  color: #3c3c3c;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 0;
}
.uslovia{
  background-color: #f5faff;
  border-radius: 5px;
  padding: 30px 20px;
  margin-bottom: 30px;
}
/*-------------------------*/

/*-------variant-rassrochki--*/
.variant-rassrochki{
  background-color: #f9f8f8;
  padding-top: 80px;
}
.variant-rassrochki-item{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.variant-rassrochki-item-number{
  background: #e7f0f9;
  border-radius: 100%;  
  position: relative;
  height: 80px;
  width: 80px;
  z-index: 1; 
  flex-grow: 0;
}
.variant-rassrochki-item-number span {
    position: relative;
    left: 34px;
    top: 24px;
    font-size: 28px;
    color: #292929;
    font-weight: 600;
}
.variant-rassrochki-item-head{
  flex-grow: 1;
}
.variant-rassrochki-item-head h5{
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}
.variant-rassrochki-item-text p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  margin-top: 6px;
}
.variant-rassrochki-item-text{
  flex-grow: 0;
  width: 50%;
}
.bank a{
  color: #fa7a35;
  text-decoration: underline;
  text-align: right;
  display: inline-block;
  width: 100%;
}
.bank a:hover{
  color: #3c3c3c;
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
/*---------------------------*/

/*--------trebovania---------*/
.trebovania-item{
  background-color: #f5faff;
  border-radius: 5px;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.trebovania-item h5{
  color: #292929;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}
.trebovania-item p{
  color: #3c3c3c;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 0;
}
.trebovania{
  border-bottom: 1px #f2f2f2 solid;
}
/*---------------------------*/

/*---------turistam----------*/
.turistam{
  padding-top: 40px;
  padding-bottom: 50px;
}
.turistam-item-img{
  display: block;
  width: 100%;
  text-align: center;
}
.turistam-item-img img{
  width: 100%;
  border-radius: 5px;
}
.turistam-item-text h5{
  color: #292929;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 16px;
}
.turistam-item-text p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 6px;
}
.turistam-item-text a{
  color: #fa7a35;
  text-decoration: underline;
  text-align: right;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
}
.turistam-item-text a:hover{
  color: #3c3c3c;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
.turistam-item{
  margin-bottom: 30px;
}
/*---------------------------*/

/*----------turistam-post------*/
.turistam-post{
  padding-top: 40px;
}
.turistam-post-item{
  display: block;
  width: 100%;
}
.turistam-post-item img{
  width: 60%;
  display: flex;
  margin: auto;
  margin-bottom: 40px;
}
.turistam-post-item p{
  font-size: 16px;
  color: #000;
  line-height: 1.2;
}
/*-----------------------------*/

/*----------header-img----------*/
.header-img{
  padding-top: 0;
  padding-bottom: 0;
  /*background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 510px;
  display: flex;
  align-items: center;
  position: relative;*/
}
/*.header-img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}*/
.header-img h1{
  color: #ed1b24;
  position: relative;
  font-size: 40px;
  /* text-transform: uppercase; */
  margin: 0;
  line-height: 1.1;
  /* padding-left: 32px; */
  /*text-shadow: 0px 2px 2px #000;*/
  font-family: "Gilroy-Bold",sans-serif;
  text-align: center;
  margin-bottom: 50px;
  max-width: 1000px;
  margin: auto;
  margin-left: auto;
  margin-bottom: 14px;
  margin-top: 60px;
}
.header-img p{  
  color: #fff;
  font-size: 24px; 
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-left: auto;
  text-shadow: 0px 2px 2px #000;
}
.header-img .galeryBox-item{
  padding: 0;
}

.header-img .col-sm-12 {
  padding: 0;
}
.header-img .galeryBox__img{
  border-radius: 0;
}

.header-img-carousel .owl-controls {
    left: 0;
    top: 43%;
    width: 100%;
    position: absolute;
}
.header-img-carousel .owl-controls .owl-nav {
    top: 0;
    width: 100%;
    position: absolute;
}
.header-img-carousel .owl-controls .owl-nav>div {
    position: absolute;
    left: 25px;
    font-size: 26px;
    line-height: 38px;
    color: #000;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background: rgba(255,255,255,.7);
    border-radius: 50px;
    padding: 4px 16px 3px;
}
.header-img-carousel .owl-controls .owl-nav>div.owl-next {
    right: 25px;
    left: auto;
}
.header-img-carousel .owl-controls .owl-nav>div:hover {
    color: #fa7a35;
}
/*---------------------------*/

/*------best-country-kurort----*/
.best-country-kurort-item-img{
  display: block;
  width: 100%;
  text-align: center;
}
.best-country-kurort-item-img img{
  width: 100%;
  border-radius: 5px;
}
.best-country-kurort-item-text h5{
  color: #292929;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 16px;
}
.best-country-kurort-item-text p{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 6px;
}
.best-country-kurort-item-btn a{
  padding: 10px 38px 10px 38px;
  background-color: #E7F0F9;
  border: 1px #E7F0F9 solid;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: block;
}
.best-country-kurort-item-btn a:hover{
  background-color: #fff;
  border: 1px #E7F0F9 solid;
  color: #000;
  transition: all .5s ease;
}
/*.best-country-kurort-item-btn{
  margin-top: 12px;
}*/
.best-country-kurort-item{
  margin-bottom: 0px;
}
.best-country-kurort{
  padding-bottom: 50px;
}
.best-country-kurort .read-more-wrap{
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 6px;
  text-indent: 0px;
}
.best-country-kurort-item-text p{

}
.best-btns{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.best-btns-label{
  flex-grow: 1;
}
.best-btns-label a{
  margin-bottom: 0;
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
.best-btns-label a:hover{
  color: #fa7a35;
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.country-descr-item{
  display: flex;
  background-color: #fff;
}
.country-descr-item-text{
  padding: 15px;
}
.country-descr-item-text h5 {
    color: #292929;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 16px;
}
.country-descr-item-img{
  width: 130%;
}
.best-country-kurort-item-img span{
  position: absolute;
  background-color: #ed1b24;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  top: 5px;
  left: 19px;
}
/*-----------------------------*/

/*-------hidden-form-----------*/
.white-popup {
  position: relative;
  padding: 80px 0 80px;
  max-width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .white-popup img {
    max-width: 100%; }

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8); }

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0; }

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

.mfp-close-btn-in .mfp-close {
    color: #000;
    right: 34px;
    top: 34px;
    background-color: #fff;
}
#callback .section-title h3{
  color: #fff;
  margin-bottom: 0;
}
#callback .section-title p{
  color: #fff;
  text-align: center;
  max-width: 520px;
  margin: auto;
  margin-bottom: 30px;
}
/*-----------------------------*/

/*----------second-big-form----*/
.second-big-form .big-form-item label span{
  color: #000;
}
.second-big-form .big-form-item input {    
    color: #000;    
    background-color: #E7F0F980;
}
.second-big-form input[type="text"] {    
    color: #000;
}
.second-big-form ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.second-big-form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.second-big-form ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.second-big-form :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.second-big-form .form-date label span{
  color: #000;
}
.second-big-form .form-date input{
  color: #000;    
  background-color: #E7F0F980;
}
.second-big-form .form-date {
    display: block;
}
.second-big-form .form-date input[type=date]::-webkit-calendar-picker-indicator{
  background:url("../img/select-second.png") no-repeat 90% 50%;
}
.second-big-form .first-radio-item-span span{
  color: #000;
}
.second-big-form .first-radio>label {    
    color: #000;
    background-color: #E7F0F980;  
}
.second-big-form .tabs-two span{
  color: #000;
}
.second-big-form .tabs-two>label {    
    color: #000;
    background-color: #E7F0F980;   
}
.second-big-form .new-select {    
    color: #000;    
    background-color: #E7F0F980;  
}
.second-big-form .new-select:after {
    content: '';    
    background: url("../img/select-second.png") no-repeat;
}
.second-big-form .first-tabs .tabs span{
  color: #000;
}
.second-big-form .first-tabs .tabs>label {    
    color: #000;
    background-color: #E7F0F980;   
}
.second-big-form #content-1 input,
.second-big-form #content-2 input,
.second-big-form #content-3 input {   
    width: 100%;    
    background-color: #E7F0F980;    
}
.second-big-form #content-1 input[type="text"] {    
    color: #000;
}
.second-big-form #content-1 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.second-big-form #content-1 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.second-big-form #content-1 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.second-big-form #content-1 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.second-big-form #content-2 input[type="text"] {    
    color: #000;
}
.second-big-form #content-2 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.second-big-form #content-2 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.second-big-form #content-2 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.second-big-form #content-2 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.second-big-form #content-3 input[type="text"] {    
    color: #000;
}
.second-big-form #content-3 ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.second-big-form #content-3 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.second-big-form #content-3 ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.second-big-form #content-3 :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.second-big-form .message textarea {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;
    display: block;
    height: 51px;
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    text-indent: 10px;
    background-color: #E7F0F980;
}
.second-big-form .message textarea[type="text"] {
    color: #000;
}
.second-big-form .message ::-webkit-input-placeholder { /* WebKit browsers */
   color: #000;
}
.second-big-form .message :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #000;
}
.second-big-form .message ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #000;
}
.second-big-form .message :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #000;
}
.second-big-form .message span {
    display: block;
    color: #000;
    margin-bottom: 5px;
}
/*-----------------------------*/

/*------dopolnitelno-----------*/
a.dopolnitelno-item{
  display: block;
  align-items: center;
  margin-bottom: 30px;
  border: 1px #f2f2f2 solid;
  border-radius: 5px;
  margin: auto;
  width: 35%;
}
a.dopolnitelno-item:hover{
  box-shadow: -1px 11px 22px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.dopolnitelno-item-img{
  width: 100%;
}
.dopolnitelno-item-img img {
    width: 100%;
    border-radius: 5px;
}
.dopolnitelno-item-text {
    padding: 40px 20px 40px;
    width: 100%;
    text-align: center;
}
.dopolnitelno-item-text p{
  color: #292929;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
p.dopolnitelno-item-text-descr{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  margin-top: 12px;
  margin-bottom: 22px;
}
.dopolnitelno{ 
  padding-top: 40px;
}
.dopolnitelno-item-text-btn{
  margin-top: 12px;
}
.dopolnitelno-item-text-btn span{
  padding: 10px 60px 10px 60px;
  background-color: #27ae61;
  border: 1px #27ae61 solid;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: .5px;
  display: inline-block;
}
a.dopolnitelno-item:hover .dopolnitelno-item-text-btn span{
  background-color: #fff;
  border: 1px #2dcc70 solid;
  color: #2dcc70;
  transition: all .5s ease;
}
.second-dop .dopolnitelno-item-text{
  text-align: right;
}
.dopolnitelno .section-title h3{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.dopolnitelno .section-title p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/*-----------------------------*/

/*--------callback-two----------*/
#callback-two .section-title ul{
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  text-align: center;
}
#callback-two .section-title ul li{
  color: #3c3c3c;
  font-size: 15px;
  line-height: 1.2;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
#callback-two .section-title ul li:last-child{
  margin-bottom: 0;
}
#callback-two .section-title h3{
  margin-bottom: 10px;
}
/*------------------------------*/

/*--------under-text-------*/
.under-text h3{
  text-align: center; 
    color: #292929;
    font-size: 34px;
    line-height: 1.2;
    margin-top: 0;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.under-text p {    
    color: #3c3c3c;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;   
}
.under-text h6 {
    color: #292929;  
    text-align: center;
    font-size: 34px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.under-text{
  padding-bottom: 0;
}
/*-------------------------*/

/*------vazhno-page-text---*/
.vazhno-page-text p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}
.vazhno-page-text img{
  border: 1px #f2f2f2 solid;
  border-radius: 100px;    
  width: 65px;
  box-shadow: -1px 11px 22px rgba(0, 0, 0, 0.1);
  margin-bottom: 6px;
}
.vazhno-page-text-item{
  margin-bottom: 40px;
}
/*-------------------------*/

/*-------kurort-name-------*/
.kurort-name-img{
  height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;    
  display: flex;
  align-items: center;
  position: relative;
}
.kurort-name-img:before{
  content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
.kurort-name{
  padding: 0;
}
.kurort-name h1{
  color: #fff;
  position: relative;
  font-size: 40px; 
  margin: 0;
  line-height: 1.1; 
  text-shadow: 0px 2px 2px #000;
  font-family: "Gilroy-Bold",sans-serif;  
  margin: auto;   
}
/*-------------------------*/

/*-------kurort-name-text----*/
.kurort-name-text p{
  color: #3c3c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 0;   
  margin-bottom: 4px;
  text-indent: 20px;
}
.kurort-name-text{
  padding-bottom: 0;
}
/*--------------------------*/

.mtpt12pxas{
  margin-top: 10px;
  margin-bottom: 10px;
}
.mt4pxas20{
  margin-top: 4px;
}

.best-curort-item-text h5{
  text-transform: uppercase;
}

.best-curort .pagination li.active a{
  cursor:pointer !important;
}


.as21mx34ty .kurort-item-img span.rano{
  z-index: 1;
  font-size: 12px;
}
.as21mx34ty .kurort-item-img span.zaman{
  z-index: 1;
  font-size: 12px;
}
.as21mx34ty .kurort-item-img span.priv{
  z-index: 1;
  font-size: 12px;
}
.as21mx34ty .kurort-item-img span.hot{
  z-index: 1;
  font-size: 12px;
}
.as21mx34ty .kurort-item-img span.niz{
  z-index: 1;
  font-size: 12px;
}
.as21mx34ty .kurort-item-img span.akcii{
  z-index: 1;
  font-size: 12px;
}

@media(max-width : 1200px) {
  .as21mx34ty .kurort-item-img span.rano{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.zaman{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.priv{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.hot{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.niz{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.akcii{
    font-size: 11px;
  }
}

@media(max-width : 700px) {
  .as21mx34ty .kurort-item-img span.rano{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.zaman{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.priv{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.hot{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.niz{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.akcii{
    font-size: 10px;
  }
}
@media(max-width : 623px) and (min-width : 560px) {
  .as21mx34ty .kurort-item-img span.rano{
    font-size: 8px;
  }
  .as21mx34ty .kurort-item-img span.zaman{
    font-size: 8px;
  }
  .as21mx34ty .kurort-item-img span.priv{
    font-size: 8px;
  }
  .as21mx34ty .kurort-item-img span.hot{
    font-size: 8px;
  }
  .as21mx34ty .kurort-item-img span.niz{
    font-size: 8px;
  }
  .as21mx34ty .kurort-item-img span.akcii{
    font-size: 8px;
  }
}
@media(max-width : 559px) and (min-width : 340px) {
  .as21mx34ty .kurort-item-img span.rano{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.zaman{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.priv{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.hot{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.niz{
    font-size: 11px;
  }
  .as21mx34ty .kurort-item-img span.akcii{
    font-size: 11px;
  }
}
@media(max-width : 340px) {
  .as21mx34ty .kurort-item-img span.rano{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.zaman{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.priv{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.hot{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.niz{
    font-size: 10px;
  }
  .as21mx34ty .kurort-item-img span.akcii{
    font-size: 10px;
  }
}

.header-logo{
  padding-top: 8px;
  padding-bottom: 8px;
}

@media(max-width : 991px) {
  .footer-contacts .header-social.header-item{
    text-align: center;
    padding-left: 0px;
  }
}

.poiEnNoneAsd{
  pointer-events: none;
}


/*стили формы начало*/
.thank-you-pop{

    opacity: 1;
    z-index: 1;
    pointer-events: auto;

    transition: all 0.4s;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    backdrop-filter: blur(8px);
    opacity: 1;
    z-index: 6666666;
    background-color: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-pop-content{
    width: 500px;
    border-radius: 6px;
    min-height: 0px;
    position: relative;
    display: flex;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.thank-you-pop-content .pop-up-window-content-title{
    font-size: 28px;
    text-align: center;
    margin-bottom: 0px;
} 
.thank-you-pop-content-close {
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #000;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
    font-weight: 100;
    font-size: 24px;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.thank-you-pop-none {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 600px){
    .thank-you-pop-content {
        width: 86%;
    }
}

@media (max-width: 500px){
    .thank-you-pop-content-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}



.pop-up-window-content form *{
    font-size: 18px;
}
.pop-up-window{
    transition: all 0.4s;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px; 
    top: 0px;
    backdrop-filter: blur(8px);
    opacity: 1;
    z-index: 4444;
    background-color: rgba(0,0,0,0.35);
    
    display: flex;
    align-items:center;
    justify-content: center;
}
.pop-up-window-content{
    width: 500px;
    border-radius: 6px;
    min-height: 500px;
    position: relative;
    display: flex;
    background:#fff;
    flex-direction: column;
    padding: 20px;
    align-items:center;
    justify-content: center;
}
.pop-up-window-content-close{
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #000;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
    font-weight: 100;
    font-size: 24px;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}
.pop-up-window-content-title{
    font-size: 40px;
    margin-bottom: 30px;
}
.pop-up-window-content form{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.pop-up-window-content input {
    border: 0px solid #000;
    outline: none;
    border-bottom: 1px solid #000;
    padding: 10px;
    padding-left: 3px;
    width: 100%;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4px;
}

.pop-up-window-content button{
    user-select: none;
    padding: 18px 40px 18px 40px;
    position: relative;
    transition: all .3s;
    background-color: #f93334;
    border: 1px solid #f93334;
    border-radius: 0px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.2px;
    font-weight: 800;
    margin-top: 20px;
    display: block;
    margin: 11px auto 0;
}
.footer-form button{
   user-select: none;
}

.pop-up-window-content button:hover{
   background-color: transparent;
      border: 1px solid #f93334;
      border-radius: 0px;
      color: #f93334;
}

.pop-up-window-none{
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.pop-up-window-content input {
    width: 74%;
}
@media (max-width: 767px){
    .pop-up-window-content {
        width: 400px;
        min-height: 400px;
        padding: 15px;
    }
    .pop-up-window-content-title {
        font-size: 34px;
        margin-bottom: 20px;
    }
}
@media (max-width: 500px){
    .pop-up-window-content {
        width: 276px;
        min-height: 300px;
    }
    .pop-up-window-content-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .pop-up-window-content input {
        width: 94%;
    }
    .pop-up-window-content-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

.thank-you-pop-content .pop-up-window-content-title{
    font-size: 28px;
    text-align: center;
    margin-bottom: 0px;
}

.poiEnNoneAsd{
  pointer-events: none !important;
}

/*стили формы конец*/
.we-make-0109{
	margin-top:30px;
}

.bread-crumbs{
  width: 100%;
  position: relative; 
}
.bread-crumbs .container{
  display: flex;
  align-items:center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.bread-crumbs-right{
  margin-left: 9px;
  margin-right: 9px;
}
.bread-crumbs *{
  font-size: 15px;
}
.bread-crumbs a{
  color: rgba(2, 94, 186, 1);
}
.bread-crumbs{
  margin-top: 25px;
}

@media (max-width: 430px){
  .bread-crumbs * {
      font-size: 14px;
  }
}
@media (max-width: 405px){
  .bread-crumbs * {
      font-size: 13px;
  }
}

.bread-crumbs-right-goods{
  width: 1px;
  height: 15px;
  background:#603226;
}
@media (max-width: 767px){
  .bread-crumbs-right-goods{
      height: 13px;
  }
  .bread-crumbs{
    padding-left: 15px;
  }
} 
.bread-crumbs{
  display: flex;
}

.pb-1006-as{
  padding-bottom: 30px;
}
@media (max-width: 767px){
  .pb-1006-as{
    padding-left: 0px;
  }
}
.bread-crumbs{
  flex-wrap: wrap;
}
.bread-crumbs *{
  line-height: 1.5;
}

.oibntoht{
  margin-bottom: 30px;
  width: fit-content;
  display: flex;
  margin-bottom: 46px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px){
.kurort .section-title p{
	text-align:left;
}
	.kurort-name-text p {
     text-indent: 0px;
    margin-bottom: 20px;
}
	.kurort {
    padding-top: 0px;
}
}
.best-country-kurort-asasd{
	display:flex;
	flex-wrap:wrap;
}

.form-as-his .nameAs{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his #content-1 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his #content-2 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his #content-3 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}
#content-three-1 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.neZapolnenoAs02{
	border-bottom: 3px solid red !important;
	top:-6px !important;
}

.form-as-his-T .nameAs{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his-T #content-1 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his-T #content-2 input{
	transition:all 0.3s;
	top:0px;
	position:relative;
}

.form-as-his-T #content-3 input{
transition:all 0.3s;
	top:0px;
	position:relative;
}

#callback-two .section-title h3{
  color: #fff;
  margin-bottom: 0;
}
#callback-two .section-title p{
  color: #fff;
  text-align: center;
  max-width: 520px;
  margin: auto;
  margin-bottom: 30px;
}

.fs14cfffas02{
	font-size:16px;
	color:#fff;
	
}

.turistam-post-item li {
    font-size: 16px;
    color: #000;
    line-height: 1.2;
}
.turistam-post-item ol li {
   margin-top:6px;
}

.aviatyri #teztourSearch{
	margin-left:auto;
	margin-right:auto;
}
.aviatyri h1{
	width:100%;
	text-align:center;
}
.max100as04010{
	max-width:100%;
	overflow:auto;
	display:flex;
	align-items:flex-start;
}

.kurort-item-list-item-two p{
	display:flex;
	flex-direction:column;
}

.thoththodhod{
	display:none !important;
}

.form-as-his #content-3 input{
    max-width: 100%;
}
.form-as-his #content-2 input{
	  max-width: 100%;
}


#content-three-1 input{
	  transition: all 0.3s;
    top: 0px;
    position: relative;
}
#content-three-2 input{
	  transition: all 0.3s;
    top: 0px;
    position: relative;
}
#content-three-3 input{
	  transition: all 0.3s;
    top: 0px;
    position: relative;
}

.hotel-wrap-item-text-list-item-pr-1310{
	    flex-direction: column;
    align-items: flex-start;
}
.hotel-wrap-item-text-list-item-pr-1310 div{
	display:flex;
}