/*
@font-face {
  font-family: "titleFont";
  src: url("font/UTM Eremitage.ttf");
}
:root {    
  --f-title: "titleFont";
}
*/
body{
  line-height: 1.4;
}
img{
  max-width: 100%;
  height: auto;
}
.font-size-20{
  font-size: 20px;
}
.margin-top-10{margin-top: 10px;}
.margin-top-15{margin-top: 15px;}
.margin-top-20{margin-top: 20px;}
.margin-top-30{margin-top: 30px;}
.padding-top-100{padding-top: 100px;}
.padding-bottom-100{padding-bottom: 100px;}
@media(min-width:767px){
  .block-mb{
    display: none;
  }
}
@media(max-width:767px){
  .hidden-mb{
    display: none;
  }
}
@media(max-width:767px){
  .padding-top-100{padding-top: 80px;}
  .padding-bottom-100{padding-bottom: 80px;}
}
.textlink{text-decoration: underline;}
.grid-cols-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
.grid-cols-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
@media(max-width:767px){
  .m-grid-cols-1{
    grid-template-columns: 1fr;
  }
}
.section-title{
/*  font-family: var(--f-title);*/
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
} 
@media(max-width:991px){
  .section-title{
    font-size: 43px;
  }
}
@media(max-width:767px){
  .section-title{
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.btn-cta{  
  border-radius: 30px;
  text-align: center;
  color: #fff;
  display: inline-block;
  background: #DD68BC;
  font-size: 20px;
  width: 270px;
  max-width: 100%;
  padding: 12px;
}
.btn-cta:hover{
  background: #F37CD2;
  color: #fff;
  text-decoration: none;
}
.banner{
  position: relative;
  overflow: hidden;
}
.banner > img{
  width: 100%;
}
.banner-inner{
  position: absolute;
  top:0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.banner-content{
  width: auto;
  display: inline-block;
  max-width: 100%;
  background:rgb(89 41 76 / 70%); 
  position: relative;
  text-align: center;
  text-shadow: 0 0 6px #460C38;
  color: #fff;
  padding: 45px 20px 55px 20px;
  margin: 0 auto;
}
.banner-content:after{
  content: '';
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border:1px solid #FFCEF5;
  position: absolute;
  top:15px;
  left:15px;
}
.banner-content h1{
/*  font-family: var(--f-title);*/
  font-weight: bold;
  font-size: 7vw;
  color: #fff;
}
.banner-route{
  font-size: 4vw;
  font-weight: bold;
  margin-top: 5px;
}
.banner-price{
  color: #FFDB75;
  font-size: 4vw;
  margin: 5px 0 20px 0;
  line-height: 1.2;
}
.banner-price span{
  font-weight: bold;  
}
.banner-price-number{
  font-size: 6vw;
}
.banner-content > div{
  position: relative;
  z-index: 2;
}
@media(min-width:600px){
  .block-600{
    display: none;
  }
}
@media(max-width:600px){
  .hidden-600{
    display: none;
  }
}
@media(min-width:600px){
  .banner-content{
    padding: 4.5vw 5vw 5vw;
  }
  .banner-content h1{
    font-size: 4.5vw;
  }
  .banner-route{
    font-size: 3vw;
  }
  .banner-price{
    font-size: 2.6vw;
  }
  .banner-price-number {
    font-size: 3.2vw;
  }
}
@media(min-width:991px){
/*
  .banner-content{
    padding: 45px 20px 55px 20px;
  }
*/
  .banner-content h1{
    font-size: 3.3vw;
  }
  .banner-route{
    font-size: 1.8vw;
  }
  .banner-price{
    font-size: 1.6vw;
  }
  .banner-price-number {
    font-size: 2.2vw;
  }
  .banner-content {
    padding: 3vw 5vw 3vw;
  }
}
@media(min-width:1900px){
  .banner-content {            
    padding: 45px 80px 55px 80px;
  }
  .banner-content h1{
    font-size: 65px;
  }
  .banner-route{
    font-size: 35px;
  }
  .banner-price{
    font-size: 30px;
  }
  .banner-price-number{
    font-size: 40px;
  }
}
@media(max-width:1200px) and (min-width:600px){
  .banner{
    height: 400px;
    width: 100%;
  }
  .banner > img{
    height: 400px;
    max-width: inherit;
    width: auto;
  }  
  .banner-route{
    margin-top: 0;
  }
  .banner-price{
    margin: 5px 0 10px 0;
  }
}
@media(max-width:600px){
  .banner-content:after{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
  }
  .banner-content .btn-cta{
    font-size: 15px;
    padding: 9px;
    width: 200px;
  }
  .banner-price{
    margin: 5px 0 10px 0;
  }
  .banner-content{
    padding: 25px 20px 30px 20px;
    width: 100%;
  }
}
@media(min-width:767px){
  .description{
    text-align: center;
  }
}
.bg-gray{
  background: #F7F7F7;
}
.plans-section{
  background: url("img/bg-plan.jpg") no-repeat top center #F7F7F7;
  background-size: 100% auto;
}
.plan-item{
  background: #fff;
  text-align: center;
  padding: 28px;
  box-shadow: 0 0 12px #8189B3;
}
.plan-title{
  color: #842886;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px dashed #707070;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.plan-content p,
.plan-route,
.plan-price-conversion{
  font-size: 20px;
}
.plan-price{
  font-size: 33px !important;
  font-weight: bold;
  margin: 5px 0;
}
.plan-title > span{
  font-size: 20px;
  color: #333;
  display: block;
}
@media(min-width:1900px){
  .plans-section{
    min-height: 800px;
  }
}
@media(max-width:1800px){
  .plans-section{
    background-size: auto 100%;
  }
}
@media(max-width:991px){
  .plan-title{
    font-size: 25px;
  }
  .plan-title > span{
    font-size: 18px;
  }
}
@media(max-width:767px){
  .plans-section{
    background: url("img/bg-plan-mb.jpg") no-repeat bottom center #9AB5EC;
    background-size: 100% auto;
  }
}
.bus-guide-item{
  background: #814670;
}
.bus-guide-content{
  padding: 20px 20px 30px 20px;
  color: #fff;
}
.bus-guide-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFF193;
}
.bus-guide-item img{
  width: 100%;
}
.point-item{
  position: relative;
  padding: 25px 30px;
  background: #fff;
  box-shadow: 0 0 13px #E0E0E0;
}
.point-item:before{
  content: '';
  width: 5px;
  height: 100%;
  background: #FFD581;
  position: absolute;
  left: 0;
  top:0;
}
.point-title{
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 7px;
  line-height: 1.2;
}
.modal-header{
  border-bottom: none;
  padding-bottom: 0;
}
.features-section{
  padding-top: 30px;
}
.anchor-navigation{
  width: 750px;
  max-width: 100%;
  margin: 50px auto 0 auto;
}
.anchor-navigation ul{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2px;
  padding: 0;
  margin: 0;
}
.anchor-navigation ul > li{  
  padding: 6px 13px;
  background: #ECECEC;
  height: 100%;
}
.anchor-navigation ul > li:hover{
  background: #ccc;
}
.anchor-navigation ul > li:hover a{
  color: #333;
  text-decoration: none;
}
.anchor-navigation li a{
  font-size: 15px;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.anchor-navigation li a:after{
  content:'\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-left: 8px;
  font-size: 11px;
  color: #333;
  position: absolute;
  right: 0;
  top: 2px;  
}
@media(min-width:767px){
  .anchor-navigation ul > li{
    width: calc(33.333% - 1px);
  }
}
@media(max-width:767px){
  .anchor-navigation{
    margin: 40px auto 0 auto;
  }
  .anchor-navigation ul > li{
    flex-grow: 1;
  }
  .anchor-navigation li a:after{
    right: calc(50% - 5px);
    top: inherit;
    bottom: 0px;    
  }
  .anchor-navigation li a{
    padding-bottom: 15px;
  }
}
