.main-header--two .main-header__logo {
    background-color: unset!important;
    padding: 0 37px!important;
}
.main-header--two .main-header__logo::after{
    background-color: unset!important;
}
.main-header--two .main-header__lang {
  padding: 24px 23px;
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  position: relative;
  z-index: 1;
}
.main-header--two .main-header__lang::after {
  content: "";
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  opacity: 0.5;
  z-index: -1;
}
.main-header__btn + .main-header__lang {
  margin-left: 40px;
}
.main-header__lang {
  position: relative;
}
.main-header__lang a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-text, #595959);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__lang a:hover {
  background-size: 100% 1px;
}
.main-header__lang a:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header__lang ul {
    background: #ffffff;
    position: absolute;
    list-style: none;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    right:0;
    display: none;
}
.main-header__lang:hover ul{
    display: block;
}

/*new common*/
.hide {
    display: none;
}
.flex {
  display: flex;
}
.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_full{
    flex:1;
}
.gap_10{
    gap:20px !important;
}

.ellipsis-line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* 强制单行显示 */
}
.ellipsis-line-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 关键行数控制 */
  overflow: hidden;
  word-break: break-word; /* 处理长单词换行 */
}
.ellipsis-line-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 关键行数控制 */
  overflow: hidden;
  word-break: break-word; /* 处理长单词换行 */
}
.ellipsis-line-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 关键行数控制 */
  overflow: hidden;
  word-break: break-word; /* 处理长单词换行 */
}
.ellipsis-line-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; /* 关键行数控制 */
  overflow: hidden;
  word-break: break-word; /* 处理长单词换行 */
}
/*overwrite*/
.main-slider-two__bg::after {
    background: none;
}
.blog-two-card:hover .blog-two-card__desc {
    color:#ffffff;
    opacity: 0.8;
}
.about-five__feature{
    align-items: flex-start;
}
.about-five__feature__title {
    white-space: nowrap;
}
.product-page{
    padding: 60px 0 !important;
}
.listing-card-four__title{
    white-space: nowrap;      /* 禁止换行 */
    overflow: hidden;         /* 隐藏溢出内容 */
    text-overflow: ellipsis;  /* 显示省略号 */
}

.destination-carousel .active .destination-carousel__item p {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 1000ms;
}

.destination-carousel__item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -300%);
    font-style: normal;
    font-weight: 800;
    font-size: 160px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--gotur-white, #fff);
    opacity: 0;
    transition: transform 1500ms ease, opacity 1500ms ease;
    text-align: center;
    text-shadow: 5px 5px 10px #595959;
}

.destination-carousel__item p .country {
    display: block;
    font-size: 80px;
}