#top {
    position: relative;
    padding: 10px 0;
    background: var(--color-Primary);
  }
  #top .box{
    color: white;
  }
  #top .box .left a{
    color: white;
    transition: all 0.3s;
    margin-right: 20px;
    font-size: 18px;
    padding: 4px 0;
  }
  #top .box .left a:first-child{
    color: var(--color-Primary2);
  }
  #top .box .left a:hover{
    color: var(--color-Primary2);
  }
  #top .box .left a .icon{
    margin-right: 5px;
  }
  #top .box .right a{
    color: white;
    margin-right: 10px;
  }
  #top .box .right button{
    color: white;
    background-color:var(--color-Primary2);
    padding: 5px 10px;
    font-size: 0.9rem;
    margin-left: 10px;
  }

  @media screen and (max-width:700px) {
    #top  .right{
      display: none;
    }

  }
  
  
  header{
    width: 100%;
    height: var(--header-height);
    background-color: white;
    font-size: 1rem;
    box-shadow: 0px 1px 4px #dbdbdb;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  header .header_left{
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .header_left .logo{
    max-height: 100%;
    max-width: 100%;
  }
  header .header_right{
    display: flex;
  }
  header .header_right a{
    display: inline-block;
    transition: all 0.3s;
  }
  header .header_right .tabBtn{
    cursor: pointer;
    display: block;
    height: var(--header-height);
    line-height: calc( var(--header-height) / 2) ;
    display: flex;
    align-items: center;
    position: relative;
  }
  header .header_right .select > a{
    color: var(--color-Primary2) !important;
  }
  header .header_right .tabBtn .title{
    color:#000649;
    padding: 0 15px;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    font-family: 'cinzel';
  }
  header .header_right .tabBtn .title .icon{
    font-size: 10px;
  }
  header .header_right .tabBtn:hover > a{
    color: var(--color-Primary2) !important;
  }
  header .header_right .tabBtn .downMenu{
    position: absolute;
    left: 0;
    top: 140%;
    min-width: 100%;
    animation: show 0.3s forwards;
    display: none;
  }
  @keyframes show{
    from{
      top: 140%;
    }
    to{
      top: 80%;
    }
  }
  header .header_right .menu .icon{
    font-size: 28px;
    color: #CD9B1E;
  }
  header .header_right .tabBtn .downMenu .navBox{
    background-color: white;
    /* border-radius: 10px; */
    box-shadow: 0px 0px 4px rgb(229 229 229);
    overflow: hidden;
  }
  header .header_right .tabBtn .downMenu .tablistBtn{
    color: rgb(92, 92, 92);
    display: block;
    white-space: nowrap;
    padding: 0 15px;
    line-height: 40px;
    font-size: 0.9rem;
  }
  header .header_right .tabBtn .downMenu .tablistBtn:hover{
    color: white;
    background-color: var(--color-Primary);
  }
  header .header_search_page{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
  }
  
  header .header_search_page .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  header .header_search_page .inputBox{
    position: relative;
    top: 100px;
    z-index: 3;
  }
  header .header_search_page .inputBox input{
    width: 60%;
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 10px;
  }
  header .header_search_page .inputBox button{
    font-size: 1rem;
    line-height: 2rem;
    padding: 10px 40px;
    background-color: var(--color-Primary);
    color: white;
  }
  header .header_search_page .inputBox button:hover{
    background-color: var(--color-DarkPrimary);
  }
  header .mobileBtnlist .menuBtn{
    color: rgb(0, 0, 0);
    font-size: 40px;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 5px;
  }
  header .header_sidebar{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    z-index: 999;
    background-color: white;
    box-shadow: -1px 0px 9px #e9e9e9;
    transition: all 0.6s;
  }
  header .header_sidebar .closeSidbar{
    font-size: 30px;
    padding: 15px;
    display: inline-block;
  }
  header .header_sidebar .mobileTabList .tabBtn{
    width: 100%;
    text-align: center;
  }
  header .header_sidebar  .title{
    padding: 15px 0;
    font-size: 1.2rem;
    display: block;
  }
  
  header .header_sidebar .mobileTabList .tabBtn .downMenu{
    display: none;
    background-color: rgb(250 250 250);
  }
  
  header .header_sidebar .mobileTabList .tabBtn .downMenu .tablistBtn{
    display: block;
    padding: 15px 0;
    font-size: 1rem;
  }
  
  header .header_language_box{
    display: none;
    position: absolute;
    z-index: 3;
    background-color: rgb(255, 255, 255);
    width: 100%;
    box-shadow: 0 1px 5px #e6e6e6;
  }
  header .header_language_box .tablistBtn{
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 0;
  }
  header .headerbox .mobBtn{
    display: none;
  }
  header .headerbox .mobBtn .icon{
    font-size: 30px;
    color: #CD9B1E;
  }

  @media screen and (max-width:1200px){
    header .header_right .tabBtn .title{
      padding: 0 5px;
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width:700px) {
    .headerTopBar{
        display: none;
    }
    header .headerbox{
        width:95%;
    }
    header .header_right{
        display: none;
    }
    header .header_search_page .inputBox input{
        width: 60%;
    }
    header .header_left .logo{
        max-width: 200px;
    }
    .sidebarBox1 .box{
      padding-top: 50px !important;
    }
    header .headerbox .mobBtn{
      display: inline-block;
    }
  }
  @media screen and (min-width:700px){
    header .mobileBtnlist{
        display: none;
    }
  }
  
  .sidebarBox1{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
  }
  .sidebarBox1 .mask{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color:black;
    opacity: 0;
    transition: all 0.6s;
  }
  .sidebarBox1 .select{
    color: var(--color-Primary2) !important;
  }
  .sidebarBox1 .box{
    position: absolute;
    width: 400px;
    height: 100%;
    left: -400px;
    top: 0;
    background-color: white;
    z-index: 2;
    box-shadow: 1px 1px 5px rgb(240, 240, 240);
    color: white;
    padding: 20px 0;
    box-sizing: border-box;
    transition:all 0.5s cubic-bezier(.79, .14, .15, .86);
  }
  .sidebarBox1 .closeBtn{
    position: absolute;
    z-index: 5;
    right: 20px;
    top: 20px;
  }
  .sidebarBox1 .closeBtn .icon{
    font-size: 20px;
    color: white;
  }
  .sidebarBox1.show .mask{
    opacity: 0.6;
  }
  .sidebarBox1.show .box{
    left: 0px;
    overflow: auto;
  }
  .sidebarBox1 .box ul li{
    position: relative;
    opacity: 0;
    bottom: -50px;
  }
  .sidebarBox1 .box ul li:nth-child(1){
    animation:  sidShow 0.5s 0.44s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(2){
    animation:  sidShow 0.5s 0.46s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(3){
    animation:  sidShow 0.5s 0.48s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(4){
    animation:  sidShow 0.5s 0.5s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(5){
    animation:  sidShow 0.5s 0.52s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(6){
    animation:  sidShow 0.5s 0.54s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(7){
    animation:  sidShow 0.5s 0.56s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(8){
    animation:  sidShow 0.5s 0.58s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(9){
    animation:  sidShow 0.5s 0.6s forwards;
  }
  .sidebarBox1 .box ul li:nth-child(10){
    animation:  sidShow 0.5s 0.62s forwards;
  }
  @keyframes sidShow{
    form{
      opacity: 0;
      bottom: -50px;
    }
    to{
      opacity: 1;
      bottom: 0px;
    }
  }
  .sidebarBox1 .box ul li,
  .sidebarBox1 .box ul li .nav{
    border-bottom: 1px solid rgb(209 209 209);
    flex-wrap: nowrap;
  }
  .sidebarBox1 .box ul li a{
    color: rgb(0, 0, 0);
    width: 100%;
    font-size: 0.9rem;
    line-height: 45px;
    padding: 0px 20px;
    
  }

  .sidebarBox1 .box ul li > a,
  .sidebarBox1 .box ul li .nav > a
  {
    font-family: 'cinzel';
  }
  .sidebarBox1 .box ul li .icon{
    font-size: 10px;
    padding: 0 20px;
    color: black;
    border-left: 1px solid rgb(209 209 209);
    height:45px;
    line-height: 45px;
    display: inline-block;
    cursor: pointer;
  }
  .sidebarBox1 .box ul li .downMenu{
    padding-left: 20px;
    display: none;
  }
  .sidebarBox1 .box ul li a button{
      color: white;
      background-color: var(--color-Primary2);
      padding: 5px 10px;
      line-height: 35px;
      font-size: 0.9rem;
      margin: 10px 0;
  }
  .sidebarBox1 .box ul .share{
    padding: 15px 20px;
    display: flex;
  }
  .sidebarBox1 .box ul .share a{
    width: auto;
    line-height: normal;
    padding: 0;
  }
  .sidebarBox1 .box ul .share .icon{
    margin: 0;
    border: 0;
    padding: 0;
  }
  .sidebarBox1 .box ul .share .icon{
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-right: 10px;
  }

  @media screen and (max-width:700px){
    .sidebarBox1 .closeBtn .icon{
      color: var(--color-Primary2);
    }
    .sidebarBox1 .closeBtn{
      right: 30px;
    }
  }



  footer {
    background-position: bottom !important;
    background-size: 100% !important;
    background-color: #15141a;
    
   
}
footer .box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px;
    padding: 50px 0px;
    box-sizing: border-box;
    justify-items: center;
}
footer h4{
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}
footer p{
    color: #b7b3cb !important;
    font-size: 0.9rem;
}
footer .navs a{
    color: #b7b3cb ;
    font-size: 1rem;
    display: block;
    margin: 10px 0;
    transition: all 0.3s;
}
footer .navs a:hover{
    color: var(--color-Primary2);
    transform: translateX(10px);
}
footer .travel p{
    display: flex;
    align-items: flex-start;
    align-items: center;
    margin:15px  0;
    
}
footer .travel > a{
    color: #b7b3cb ;
    font-size: 1rem;
    margin: 10px 0;
   
}
footer .travel .share{
    margin-bottom: 20px;
}
footer .travel .share a{
  margin-right: 5px;
}
footer .travel .icon{
    color: white;
    font-size: 22px;
    margin-right: 10px;
}
footer .imglist img{
    margin-bottom: 20px;
}
footer .footer_bottom{
    background-color: #121212;
    padding: 10px 0;
}
footer .footer_bottom p{
    font-size: 0.8rem;
    color: #b7b3cb;
    margin: 0;
}


@media screen and (max-width:700px){
  footer{
    margin-bottom: 80px;
  }
    footer .box{
        grid-template-columns: repeat(1,1fr);
        justify-items: start;
    }
    footer .imglist img{
        max-width: 100%;
    }
    footer .footer_bottom .boxs{
        flex-direction: column;
    }
    footer .footer_bottom p{
        margin-bottom: 10px;
    }
}













.swiperBox{
  width: 100%;
  height: 700px;
}
.swiperBox .swiper{
  width: 100%;
  height: 100%;
}
.swiperBox .swiper .img{
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet-active{
  background:white;
}

.swiperBox .swiper-slide{
  position: relative;
  overflow: hidden;
}
.swiperBox .swiper-slide .content{
  position: absolute;
  z-index: 3;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.swiperBox .swiper-slide .content .title{
  font-size: 3.4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  line-height: 4rem;
  font-family: 'cinzel';
}
.swiperBox .swiper-slide .content p{
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: white;
  font-family: 'cinzel';
}

.swiperBox  .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color:#fff;
}

@media screen and (max-width:700px) {
    .swiperBox{
      height: 260px;
    }
    .swiperBox .swiper-slide .content{
      left: 50%;
      transform: translate(-50%,-50%);
      width: 94%;
      text-align: center;
    }
    .swiperBox .swiper-slide .content .title{
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .swiperBox .swiper-slide .content p{
      font-size: 1rem;
      line-height: 1.4rem;
    }
}

.content_title{
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}
.content_title::after{
  content: '';
  border-top: 1px solid rgb(199, 199, 199);
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}


.cooperate1{
  padding: 100px 0;
  background-color: #F2F8FF;

}
.white{
  background-color: #fff;
}

.cooperate1 .title
.cooperate1 .swiper {
  width: 100%;
  height: auto;
}
.cooperate1 .content{
  display: flex;
  align-items: center;
}
.cooperate1 .content .icon{
  font-size: 30px;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.5s;
}
.cooperate1 .content .icon:hover{
  color: var(--color-Primary);
}
.cooperate1 .swiper-slide{
  height: 150px;
}
.cooperate1 .swiper-slide img{
  width: 150px;
}



.same{
  padding: 50px 0;

}
.same p{
  font-size: 18px;
  margin: auto;
  margin-bottom: 20px;
  color: #5F5E5E;
  text-align: center;
}

.same .content{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px 20px;
  padding: 20px;
}
.same .content .box .imgBox {
  position: relative;
  overflow: hidden;
}
.same .content .box .imgBox img{
  width: 100%;
  transition: all 0.5s;
}
.same .content .box .imgBox .day{
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  z-index: 3;
}
.same .content .box .imgBox:hover img{
  transform: scale(1.1);
}
.same .content .box .imgBox:hover .topShow{
  opacity: 1;
  top: 50%;
}
.same .content .box .imgBox .topShow{
  transition: all 0.5s;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.same .content .box .imgBox .topShow .describe{
  color: white;
  font-size: 1.1rem;
  width: 80%;
}
.same .content .box .imgBox .topShow .btnlist{
  display: flex;
  align-items: center;
  justify-content: center;
}
.same .content .box .imgBox .topShow .btnlist button{
  background-color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  margin: 0 10px;
  transition: all 0.3s;
}
.same .content .box .imgBox .topShow .btnlist button .icon{
  font-size: 20px;
  transition: all 0.3s;
}
.same .content .box .imgBox .topShow .btnlist button:hover{
  background-color: #FED835;
}
.same .content .box .imgBox .topShow .btnlist button:hover .icon{
  color: white;
}
.same .content .box .score{
  margin: 10px 0;
}
.same .content .box h4:hover{
  color: var(--color-Primary2);
}
.same .content .box .score .icon{
  color:#FED835;
}
.same .content .box h4{
  color: #111C4E;
  font-size: 18px;
}

@media screen and (max-width:700px) {
  .same .content{
      grid-template-columns: repeat(1,1fr);
  }

}

.Popup_fullBox1{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.Popup_fullBox1 .box{
  width: 100%;
  height: 100%;
}
.Popup_fullBox1 .closeBtn{
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 10px;
  transition: all 0.6s;
}
.Popup_fullBox1 .closeBtn:hover{
  transform: rotate(90deg);
}
.Popup_fullBox1 .closeBtn .icon{
  color: rgb(255, 255, 255);
  font-size: 30px;
}
.Popup_fullBox1 img{
  max-width: 100vw;
  max-height: 100vh;
}





.ProductDisplay13{
  padding: 50px 0;
}

.ProductDisplay13 h2{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding: 15px 0;
}
.ProductDisplay13 h2::before{
  content: "";
  position: absolute;
  border-bottom: 1px solid rgb(126, 126, 126);
  height: 1px;
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;

}
.ProductDisplay13 .box{
  width: 96%;
  margin: auto;
}
.ProductDisplay13 .content{
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:40px 20px;

}
.ProductDisplay13_list{
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  height: 300px;
  position: relative;
  box-shadow: 1px 1px 6px #e9e9e9;
}
.ProductDisplay13_list .left{
  width: 50%;
  max-width: 500px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.ProductDisplay13_list .left .img{
  width: 100%;
  height: 100%;
}
.ProductDisplay13_list .left .Nights{
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  background-color: #FED835;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 50px;
}
.ProductDisplay13_list .right{
  padding: 5px 15px;
  width: 100%;
}
.ProductDisplay13_list  .score{
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
}
.ProductDisplay13_list  .score .icon{
  color: #FED835;
  padding: 0 1px;
}
.ProductDisplay13_list .right p{
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  color: #5F5E5E;
}
.ProductDisplay13_list .right .title a{
  color: #1e4b75;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 20px 0;
  overflow: hidden;
}
.ProductDisplay13_list .right > a{
  background-color: #562dd4;
  color: white;
  padding: 7px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.ProductDisplay13_list .right > a:hover{
  background-color: #e2498a;
}

@media screen and (max-width:700px) {
  .ProductDisplay13 .content{
      grid-template-columns: repeat(1,1fr);
  }
  .ProductDisplay13_list{
      flex-direction: column;
      height: auto;
  }
  .ProductDisplay13_list .left{
      height: 300px;
      width: 100%;
  }
  .ProductDisplay13_list .left .Nights{
      right: 10px;
      top: 40px;
  }
  .ProductDisplay13_list .right{
      padding: 15px;
  }
  
}


.ProductDisplay13_list{
  padding: 0px;
  background-color: white;
}
.ProductDisplay13_list h2{
  display: none;
}
.ProductDisplay13_list .content{
  grid-template-columns: repeat(1, 1fr);
}



.list_Box{
  
  background-color: rgb(241, 241, 241);
}
.list_Box .boxs{
  display: flex;
  justify-content: space-between;
}
.list_Box .ProductDisplay13_list{
  width: 65%;
}
.list_Box .imgBox{
  width: 33%;
  height: 800px;
  margin-top: 50px;
  border-radius: 5px;
}





.topTitleBox{
  width: 100%;
  height: 700px;
  position: relative;
}
.topTitleBox .content{
  z-index: 2;

}
.topTitleBox .content h1{
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}
.topTitleBox .content p{
  margin-top: 30px;
  color: white;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}
.topTitleBox .content a{
  margin-top: 30px;
  width: 100%;
  text-align: center;
}
.topTitleBox .content a .btn{
  padding: 10px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.5s;
  color: #000000;
  background: #FFE400;
}
.topTitleBox .content a .btn:hover{
  background-color: var(--color-Primary2);
  color: white;
}

@media screen and (max-width:700px) {
  .topTitleBox .content{
    width: 94%;
  }
}




.most{
  padding-top: 50px;
}
.most .imglist{
  display: grid;
  grid-template-columns: repeat(4,1fr);

}
.most .imglist li{
  position: relative;
  overflow: hidden;
}
.most .imglist li a{
  display: block;
  color: white;
}
.most .imglist li img{
  transition: all 0.5s;
}
.most .imglist li:hover img{
  transform: scale(1.1);
}

.most .imglist h4{
  position: absolute;
  left: 0px;
  bottom: 10%;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 15px 30px;
  border-radius: 0px 10px 10px 0;
  z-index: 2;
}
.most  .tours{
  display: flex;

}
.most  .tours .left,
.most  .tours .right{
  width: 50%;
  flex-shrink: 0;
}
.most  .tours .left{
  background-color: #0B3D22;
  flex-direction: column;
  color: white;
  align-items: flex-start;
  padding: 5%;
}
.most  .tours .left  h3{
  font-size: 2rem;
  color: white;
}
.most  .tours .left p{
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #D1CFCF;
}
.most  .tours .left button{
  background-color: var(--color-Primary2);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'cinzel';
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s;
  
}
.most  .tours .left button:hover{
  color: white;
  background-color: var(--color-Primary);
}
@media screen and (max-width:700px) {
  .most .imglist{
      grid-template-columns:repeat(2,1fr);
      gap: 10px;
  }
  .most .tours{
      flex-direction: column;
  }
  .most  .tours .left,
  .most  .tours .right{
      width: 100%;
      flex-shrink: 0;
  }
  .most  .tours .right{
      height: 400px;
  }

}




.comment{
  height: 600px;
  background-image: url('/extension/mahardhi/catalog/view/image/bgr.jpg') !important;
}
.comment .box{
  width: 100%;
  height: 100%;
}
.comment .box .comment_swiper{
  width: 900px;
  overflow: hidden;
}
.comment .comment_swiper .swiper-slide{
  color: black;
  text-align: center;
}
.comment .comment_swiper .swiper-slide h3{
  padding-top: 50px;
  font-size: 2rem;
  background-size: auto;
  color: black;
}
.comment .comment_swiper .swiper-slide p{
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: var(--color-Primary2);
}
.comment .comment_swiper .swiper-slide .user .avart{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid black;
  margin-right: 10px;
}
.comment .comment_swiper .swiper-slide .user p{
  font-size: 1.2rem;
  color: rgb(80, 80, 80);
}

.comment button{
  background-color: var(--color-Primary2);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'cinzel';
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}
.comment button:hover{
  color: white;
    background-color: var(--color-Primary);
}


.why{
  padding: 50px 0;
  background-color: #FAF5EE;
}
.why h2{
  text-align: center;
  margin-bottom: 50px;
}
.why form{
  text-align: center;
}
.why .list{
  width: 96%;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}
.why .list input{
  width: 100%;
  border: 1px solid rgb(219 219 219);
  font-size: 1rem;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
}
.why .list textarea{
  width: 100%;
  border: 1px solid rgb(219 219 219);
  font-size: 1rem;
  padding: 10px;
  min-height: 200px;
  background-color: #fff;
  border-radius: 5px;
}

.why button{
  background-color: var(--color-Primary2);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}
.why button:hover{
  color: white;
  background-color: var(--color-Primary);
}

@media screen and (max-width:700px) {

}



.product_left_comtent{

}
.product_left_comtent h2{
  color: #00105B;
  margin-bottom: 10px;
  font-size: 2rem;
}
.product_left_comtent h3{
  color: #00105B;
  margin-bottom: 5px;
}
.product_left_comtent h4{
  color: #00105B;
  font-size: 1.2rem;
}
.product_left_comtent p{
  color: #2B2B2B;
  font-size: 1rem;
  line-height: 1.8rem;
  margin-bottom: 10px;
}
.product_left_comtent .note{
  font-weight: bold;
  font-size: 1rem;
  color: black;
}
.product_left_comtent .icon{
  margin-right: 10px;
}
.product_left_comtent  .pink{
  color:#F20029;
}

.product_left_comtent .Itinerary li{
  display: flex;
  margin-bottom: 10px;
}
.product_left_comtent .Itinerary li span{
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  flex-shrink: 0;
  background-color: #F20029;
  color: white;
  text-align: center;
  line-height: 50px;
  margin-right: 20px;
}
.product_left_comtent .remind{
  display: flex;
  margin-top: 20px;
}
.product_left_comtent .remind ul{
  width: 50%;
}
.product_left_comtent .remind li{
  color: #2B2B2B;
  font-size: 1rem;
  line-height: 1.8rem;
  margin-bottom: 5px;
}
.product_left_comtent .remind ul:nth-child(1) .icon{
  color: #00D21D;
  font-weight: bold;
}
.product_left_comtent .remind ul:nth-child(2) .icon{
  color: red;
  font-weight: bold;
}
@media screen and (max-width:700px) {
  .product_left_comtent .remind{
    flex-direction: column;
  }
  .product_left_comtent .remind ul{
    width: 100%;
    margin-bottom: 20px;
  }

}




.aboutUs{
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
.aboutUs .left{
  width: 100%;
  flex-shrink: 0;
}
.aboutUs .left h2{
  font-size: 2rem;
  text-align: center;
}
.aboutUs .left p{
  color: #686868;
  line-height: 1.8rem;
  margin: 10px 0;
}
.aboutUs .right{
  text-align: center;
  display: none;
}

@media screen and (max-width:700px){
  .aboutUs{
    flex-direction: column;
  }
  .aboutUs .left{
    width: 100%;
  }
}





.about_why{
  padding: 50px 0;
}
.about_why ul{
  display: grid;
  grid-template-columns:repeat(3,1fr);
  gap: 3%;
 
}
.about_why ul li img{
  float: left;
  margin-right: 10px;
}
.about_why ul li h3{
  margin-bottom: 10px;
}

.about_why ul li p{
  color: #686868;
  line-height: 1.6rem;
}

@media screen and (max-width:700px){
  .about_why ul{
    grid-template-columns:repeat(1,1fr);
  }
}




.contactUs{
  padding: 50px 0px;
}
.contactUs  ul{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.contactUs  ul li{
  background-color: white;
  box-shadow: 0px 0px 10px rgb(235, 235, 235);
  padding: 20px 40px;
  border-radius: 5px;
}
.contactUs  ul li button{
  background-color: #e2498a;
  color: white;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
}
.contactUs ul li h3{
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 500;
}
.contactUs ul li .blue{
  color:#0087ff;
  font-family: '微软雅黑';
  margin-top: 10px;
}
@media screen and (max-width:700px){
  .contactUs  ul{
    grid-template-columns: repeat(1,1fr);
  }
  .contactUs ul li{
    box-sizing: border-box;
    padding: 10px 20px;
  }
  .contactUs ul li h3{
    font-size: 1.2rem;
  }
}


.contactUs2{
  padding: 30px 0;
}
.contactUs2 h4{
  font-size: 28px;
  margin-bottom: 10px;
}
.contactUs2 .content{
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.contactUs2 .content .left{
  width: 50%;
}
.contactUs2 .content .image{
  width: 50%;
  text-align: center;
}
.contactUs2 img{
  width: 200px;
}
@media screen and (max-width:700px){
  .contactUs2 .content{
    flex-direction: column;
  }
  .contactUs2 .content .left{
    width: 100%;
  }
  .contactUs2 .content .image{
    width: 100%;
  }

}



.topImgbox{
  height: 500px;
  position: relative;
}
.topImgbox .box h2,
.topImgbox .box p{
  color: white;
}
@media screen and (max-width:700px) {
  .topImgbox .box{
    justify-content: center;
    flex-direction: column;
  }
  .topImgbox .box h2{
    margin-bottom: 20px;
  }
  .list_Box .imgBox{
    display: none;
  }
  .list_Box .ProductDisplay13_list{
    width: 100%;
  }
}



.blogBox{
  margin-top: 50px;
}











#product-list .box .imgBox {
  position: relative;
  overflow: hidden;
}
#product-list .box .imgBox img{
  width: 100%;
  transition: all 0.5s;
}
#product-list .box .imgBox .day{
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  z-index: 3;
}
#product-list .box .imgBox:hover img{
  transform: scale(1.1);
}
#product-list .box .imgBox:hover .topShow{
  opacity: 1;
  top: 50%;
}
#product-list .box .imgBox .topShow{
  transition: all 0.5s;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#product-list .box .imgBox .topShow .describe{
  color: white;
  font-size: 1.1rem;
  width: 80%;
}
#product-list .box .imgBox .topShow .btnlist{
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-list .box .imgBox .topShow .btnlist button{
  background-color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  margin: 0 10px;
  transition: all 0.3s;
}
#product-list .box .imgBox .topShow .btnlist button .icon{
  font-size: 20px;
  transition: all 0.3s;
}
#product-list .box .imgBox .topShow .btnlist button:hover{
  background-color: #FED835;
}
#product-list .box .imgBox .topShow .btnlist button:hover .icon{
  color: white;
}
#product-list .box .score{
  margin: 10px 0;
}
#product-list .box h4:hover{
  color: var(--color-Primary2);
}
#product-list .box .score .icon{
  color:#FED835;
}
#product-list .box h4{
  color: #111C4E;
}


.product-list{
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
}

.col-form-label{
  text-align: left;
}



.phoneFooter{
  position: fixed;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;

  left: 0;
  bottom: 0;
  z-index: 99;
      box-shadow: 1px 0 4px #979797;
      display: none;
}
.phoneFooter div{
  width: 50%;
  padding: 20px 0;
  text-align: center;
 
}
.phoneFooter div a{
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-size: 20px;
   font-weight: bold;
}
.phoneFooter .mail{
  background-color: #765FDE;
}
.phoneFooter .whatsapp{
  background-color: #26D367;
}
.phoneFooter .icon{
  font-size: 34px;
   color: white;
}



@media screen and (max-width:700px){
.phoneFooter{
      display: flex;
    }
}

@media (max-width: 991px) {
    .scrollToTop {
        bottom: 80px !important;
    }
    
}


.contact_btn{
  background: var(--color-Primary2);
  padding: 7px 10px;
  color: white;
  text-align: center;
}

@media screen and (max-width:700px){
  .contact_btn{
    width: 100%;
    margin-top: 10px;
  }
}