:root {
  --mg-font1: "Roboto Condensed", sans-serif;
  --mg-font2: "Noto Sans SC", sans-serif;
  --mg-font3: "Noto Sans KR", sans-serif;
  --mg-c1: #febd59;
  --mg-c1-hover: #d6a04e;
  --mg-c2: #8e8e8e;
  /*--mg-c2-hover: #5f6062; */
  --mg-c3: #020005;
  --mg-c4: #e2e8f0;
  --mg-border-radius: 30px;
  --mg-container-padding: 20px;
}

/* generals */
body {
  font-family: var(--mg-font1);
  font-size: 16px;
  color: var(--mg-c3);
  font-weight: 400;
}
body.cn {
  font-family: var(--mg-font2);
}
body.kr {
  font-family: var(--mg-font3);
}

a {
  color: var(--mg-c1);
  text-decoration: none;
}

a:hover {
  color: var(--mg-c1-hover);
}

.btn-primary {
  background-color: var(--mg-c1);
  border-color: var(--mg-c1);
}

.btn-primary:hover {
  background-color: var(--mg-c1-hover);
  border-color: var(--mg-c1-hover);
}

.social_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social_list li {
  display: inline;
}
section {
  padding: 70px 0;
}
.maintitle {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  color: #333;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-transform: capitalize;
}
.maintitle::before {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--mg-c1);
  left: 0;
  bottom: 0;
}
.maintitle.center {
  text-align: center;
}
.maintitle.center::before {
  left: 50%;
  margin-left: -25px;
}
.maintitle.white {
  color: #fff;
}
/* bg */
.bggray {
  background-color: var(--mg-c4);
}
.bgimages {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: var(--mg-border-radius);
  overflow: hidden;
}
.bgimages::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.bg1 {
  background-image: url("../img/bg1.jpeg");
}
/* .white{} */

/*  */

.btn-outline-primary {
  color: var(--mg-c1);
  border-color: var(--mg-c1);
}
.btn-outline-primary:hover {
  border-color: var(--mg-c1);
  background-color: var(--mg-c1);
  color: #fff;
}
.text-primary {
  color: var(--mg-c1) !important;
}
/*  */

.mapheader {
  position: relative;
  margin: 0 var(--mg-container-padding);
  border-radius: var(--mg-border-radius);
  overflow: hidden;
}
.mapheader iframe {
  min-height: 300px;
  width: 100%;
}

/*  */
.pageheader_wrap {
  margin: 0 var(--mg-container-padding);
  border-radius: var(--mg-border-radius);
  overflow: hidden;
}
.pageheader {
  position: relative;
  padding-top: 200px;
  padding-bottom: 30px;
  width: 100%;
  background-image: url("../img/bg1.jpeg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.pageheader::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 1;
}
.pageheader .container {
  position: relative;
  z-index: 2;
}
.pageheader .container ul li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-right: 20px;
}
.pageheader .container ul li::before {
  position: absolute;
  content: ">";
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
}
.pageheader .container ul li a {
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
}
.pageheader .container ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.pageheader .container ul li:last-child a {
  font-weight: 700;
}
.pageheader .container ul li:last-child::before {
  display: none;
}

/*  */
.mgpagination {
  list-style: none;
  text-align: center;
}
.mgpagination li {
  display: inline-block;
}
.mgpagination li a {
  display: block;
  padding: 3px 10px;
  color: var(--mg-c2);
  border: 1px solid var(--mg-c2);
  border-radius: 5px;
  margin: 0 2px;
  transition: all 0.3s ease;
}
.mgpagination li a:hover {
  border-color: var(--mg-c1);
  color: var(--mg-c1);
}
.mgpagination li.active a {
  background-color: var(--mg-c1);
  border-color: var(--mg-c1);
  color: #fff;
}

/* 
--------------------------------------
right_aside
--------------------------------------
*/
.right_aside .item {
  margin-bottom: 40px;
}

.right_aside .title_aside {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #333;
}

.right_aside .aside_list_image,
.right_aside .aside_tag {
  list-style: none;
}
.right_aside .aside_list_image li {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 10px;
}
.right_aside .aside_list_image li img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.right_aside .aside_list_image li a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: block;
}
.right_aside .aside_list_image li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.3s ease;
}
.right_aside .aside_list_image li a div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.right_aside .aside_list_image li:hover img {
  transform: scale(1.05);
}
.right_aside .aside_list_image li:hover a::before {
  background: rgba(0, 0, 0, 0.5);
}
.right_aside .aside_tag li {
  display: inline-block;
  margin-bottom: 4px;
}
.right_aside .aside_tag li a {
  display: block;
  color: var(--mg-c3);
  padding: 5px 15px;
  border: 2px solid var(--mg-c3);
  transition: all 0.3s ease;
}
.right_aside .aside_tag li a:hover {
  color: var(--mg-c1);
  border-color: var(--mg-c1);
}
/* 
--------------------------------------
topheader
--------------------------------------
*/

/* contact */
.topheader {
  padding: 20px 0;
  border-top: 1px solid var(--mg-c4);
  font-size: 14px;
  position: relative;
  line-height: 20px;
}
.topheader .contactItem {
  color: var(--mg-c2);
  display: inline-block;
  padding-left: 25px;
  position: relative;
  transition: all ease 0.3s;
}
.topheader .contactItem i {
  position: absolute;
  font-size: 16px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all ease 0.3s;
}
.topheader .contactItem + .contactItem {
  margin-left: 30px;
}
.topheader .contactItem:hover i {
  color: var(--mg-c1);
}

/* social_list */
.social_list li a {
  color: var(--mg-c2);
  font-size: 16px;
  transition: all ease 0.3s;
}
.social_list li + li {
  margin-left: 20px;
}
.social_list li a:hover {
  color: var(--mg-c1);
}

/* langsection */
.langsection_wrap {
  display: flex;
  gap: 30px;
}
.langsection {
  position: relative;
  padding-left: 30px;
}
.langsection:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: var(--mg-c4);
  left: 0;
}
.langsection a {
  color: var(--mg-c3);
  vertical-align: bottom;
  transition: all ease 0.3s;
  font-weight: 700;
}
.langsection a img {
  display: inline;
  margin-top: -2px;
  margin-left: 5px;
  border-radius: 3px;
}
.langsection a + a {
  margin-left: 40px;
}
.langsection a:hover {
  color: var(--mg-c1);
}

/* 
--------------------------------------
menu
--------------------------------------
*/
nav#mainmenu {
  min-height: 100px;
  background: #fff;
  z-index: 99999999;
}
nav#mainmenu .wrap-core-nav-list,
nav#mainmenu .nav-header {
  background: #fff;
}
nav#mainmenu .brand {
  display: block;
  position: relative;
  width: auto;
  top: 20px;
}
nav#mainmenu .brand img {
  width: auto;
  height: 60px;
}
nav#mainmenu .menu,
nav#mainmenu .attributes {
  margin-top: 20px;
}
nav#mainmenu .menu li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: var(--mg-c3);
  font-weight: 700;
}
nav#mainmenu .menu li.active > a,
nav#mainmenu .menu li a:hover {
  color: var(--mg-c1);
}
nav#mainmenu button {
  background: transparent;
  border: none;
  outline: none;
}
nav#mainmenu .attributes {
  margin-left: 30px;
}
nav#mainmenu .attributes a {
  color: var(--mg-c1);
}
nav#mainmenu .menu > li > a {
  text-transform: uppercase;
}
nav#mainmenu.on-scroll {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
/* 
--------------------------------------
slider
--------------------------------------
*/
.homeslider_wrap {
  padding: 0 var(--mg-container-padding);
}
#homeslider {
  border-radius: var(--mg-border-radius);
  overflow: hidden;
}
#homeslider .item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 550px;
}
#homeslider .containerwrap {
  position: absolute;
  width: calc(100% - 100px);
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  color: #fff;
}
#homeslider .item .more {
  display: inline-block;
  background-color: var(--mg-c1);
  padding: 10px 30px;
  margin: 30px auto 0;
  color: var(--mg-c3);
  border-radius: 25px;
  font-size: 12px;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
#homeslider .item .more:hover {
  background: var(--mg-c1);
  color: var(--mg-c3);
}
#homeslider .item h2 {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.5em;
}
#homeslider .item p {
  font-size: 1.5rem;
}
#homeslider .owl-nav {
  margin: 0;
  padding: 0;
}
#homeslider .owl-nav .owl-prev,
#homeslider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  color: #999;
  transition: all ease 0.3s;
}
#homeslider .owl-nav .owl-prev {
  left: 10px;
}
#homeslider .owl-nav .owl-next {
  right: 10px;
}
#homeslider .owl-nav .owl-prev:hover,
#homeslider .owl-nav .owl-next:hover {
  background: transparent;
  color: #fff;
}
#homeslider .owl-dots {
  position: absolute;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  left: 0;
  bottom: 15px;
}
#homeslider .owl-dots .owl-dot span {
  height: 5px;
  width: 50px;
  margin: 0 3px;
  padding: 0;
  border-radius: 2px;
}

/* 
--------------------------------------
catlist
--------------------------------------
*/
.catlist .item {
  position: relative;
  overflow: hidden;
  border-radius: var(--mg-border-radius);
  transition: all ease 0.3s;
}
.catlist .item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  z-index: 2;
}
.catlist .item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.catlist .item .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.catlist .item .content h4 {
  display: block;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.catlist .item .content p {
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
  padding: 0 10px;
  position: relative;
  color: #ececec;
}
.catlist .item .content p:before,
.catlist .item .content p:after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ececec;
  border-radius: 50%;
  top: 50%;
  margin-top: -2px;
}
.catlist .item .content p:before {
  left: 100%;
}
.catlist .item .content p:after {
  right: 100%;
}
.catlist .item:hover {
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.4);
}
.catlist .item:hover img {
  transform: scale(1.09);
}
/* 
--------------------------------------
about
--------------------------------------
*/
.about .image {
  border-radius: var(--mg-border-radius);
  overflow: hidden;
}
.about .image img {
  width: 100%;
  height: auto;
}
.about .title_small {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: var(--mg-c1);
  margin-bottom: 10px;
  font-style: italic;
}
.about .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about .text {
  color: var(--mg-c2);
  margin-bottom: 40px;
  text-align: justify;
}
.about .advs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.about .advs .item {
  display: flex;
  gap: 30px;
  align-items: center;
  color: var(--mg-c2);
}
.about .advs .item .icon img {
  width: 50px;
}
.about .advs .item h5 {
  font-weight: 700;
  color: var(--mg-c3);
  font-size: 1.125rem;
  margin-bottom: 5px;
}
/* 
--------------------------------------
tours
--------------------------------------
*/
.tours .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  transition: all ease 0.3s;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
}
.tours .item .img {
  position: relative;
  overflow: hidden;
}
.tours .item .img img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.tours .item .content {
  padding: 15px 20px 0;
  font-size: 14px;
  height: auto;
}
.tours .item .content h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 5px 0;
}
.tours .item .content h4 a {
  color: #333;
  transition: all ease 0.3s;
}
.tours .item .divide {
  margin: 10px 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}
.tours .item .price {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  line-height: 18px;
}
.tours .item .price span {
  font-weight: 400;
  font-size: 14px;
  color: var(--mg-c3);
  display: inline-block;
  margin-right: 3px;
}
.tours .item .more {
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 15px;
  border: 1px solid var(--mg-c1);
  display: inline-block;
  transition: all ease 0.3s;
}
.tours .item .card-footer {
  padding: 0 20px 15px;
}
.tours .item:hover .img img {
  transform: scale(1.1);
}
.tours .item .content h4 a:hover {
  color: var(--mg-c1);
}
.tours .item .more:hover {
  background-color: var(--mg-c1);
  color: #fff;
}

/* 
--------------------------------------
svgmap
--------------------------------------
*/
.map_wrap {
  padding: 0 var(--mg-container-padding);
}
.regionsvg {
  position: relative;
  text-align: center;
}
.regionsvg svg {
  width: auto;
  max-height: 400px;
  display: inline-block;
}
.regionsvg svg path {
  fill: #fff;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 1;
  opacity: 0.7;
  transition: all ease 0.3s;
}
.regionsvg svg text {
  fill: #fff;
  font-family: var(--mg-font1);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  display: none;
  transition: all ease 0.3s;
}
.regionsvg svg g:hover path {
  /* opacity: 1; */
  fill: var(--mg-c1);
  stroke: rgba(255, 255, 255, 0.1);
}
.regionsvg svg g:hover text {
  display: block;
}
/* 
--------------------------------------
.detail
--------------------------------------
*/
#testimonials .owl-stage {
  display: flex;
}
#testimonials .owl-item {
  display: flex;
  align-items: stretch;
}
#testimonials .owl-prev,
#testimonials .owl-next {
  background-color: var(--mg-c1);
  color: var(--mg-c3);
  width: 60px;
  height: 30px;
  font-size: 1.125rem;
  border-radius: 20px;
  font-size: 1.125rem;
}
#testimonials .owl-prev:hover,
#testimonials .owl-next:hover {
  background-color: var(--mg-c1-hover);
}
.testimonial_item {
  padding: 70px 25px 25px;
  background-color: #fff;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
  border-radius: 10px;
  position: relative;
  height: 100%;
}
.testimonial_item:before {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 15px;
  content: "\f10e";
  transform: translateX(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10e";
  font-size: 2rem;
  text-align: center;
  color: var(--mg-c1);
}
.testimonial_item .text {
  font-style: italic;
}
.testimonial_item .user {
  margin-top: 30px;
}
.testimonial_item .user .image {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
  margin-bottom: 5px;
}
.testimonial_item .user .name {
  font-weight: 700;
}
.testimonial_item .user .position {
  font-size: 0.875rem;
  color: var(--mg-c2);
}
.testimonial_item .user .rate {
  margin-top: 10px;
  color: var(--mg-c1);
}
/* 
--------------------------------------
.detail
--------------------------------------
*/
.detail .mainimage img {
  width: 100%;
  height: auto;
}
.detail .sharer {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ececec;
}
.detail .date {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--mg-c1);
}
.detail .date i {
  color: var(--mg-c2);
}
.detail .shortdesc {
  padding: 15px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
  margin-bottom: 20px;
}
/*  */

.edtext img {
  max-width: 100%;
  height: auto;
}
.edtext ul,
.edtext ol {
  padding-left: 40px;
  margin-bottom: 10px;
}
.edtext img,
.edtext table,
.edtext embed,
.edtext p {
  margin-bottom: 20px !important;
}
.edtext h1,
.edtext h2,
.edtext h3,
.edtext h4,
.edtext h5,
.edtext h6 {
  font-weight: 700;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
}
/* 
--------------------------------------
contact
--------------------------------------
*/
.contactus .contactlist {
  font-size: 18px;
}

.contactus .contactlist li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.contactus .contactlist li i {
  position: absolute;
  display: block;
  width: 30px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: var(--mg-c1);
}
.contactus .csocial {
  display: inline-block !important;
  margin-top: 30px;
}
.contactus .csocial li {
  margin-right: 5px;
  display: inline-block;
}
.contactus .csocial li a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--mg-c2);
  color: #fff;
  border-radius: 5px;
  transition: ease all 0.3s;
}
.contactus .csocial li a:hover {
  background: var(--mg-c1);
}

/* 
--------------------------------------
listitems
--------------------------------------
*/
.listitems {
  position: relative;
}
.listitems .item {
  border-radius: var(--mg-border-radius);
  margin-bottom: 30px;
  background-color: #fff;
  overflow: hidden;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
}
.listitems .item .content {
  padding: 20px;
}
.listitems .item .image {
  position: relative;
  overflow: hidden;
}
.listitems .item .image img {
  transition: all 0.3s ease;
}
.listitems .item .pdate {
  font-size: 12px;
  color: var(--mg-c1);
}
.listitems .item .pdate i {
  color: var(--mg-c2);
}
.listitems .item .title {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 15px;
}
.listitems .item .title a {
  color: inherit;
  transition: all 0.3s ease;
}
.listitems .item .descrip {
  color: var(--mg-c2);
  margin-bottom: 15px;
}

/* 
--------------------------------------
event_detail
--------------------------------------
*/
.event_detail .listinfo {
  margin-bottom: 20px;
}
.event_detail .listinfo .item {
  display: inline-block;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.event_detail .listinfo .item i {
  color: var(--mg-c1);
  margin-right: 8px;
}
.event_detail .listinfo .item + .item {
  padding-left: 20px;
  margin-left: 20px;
}
.event_detail .listinfo .item + .item::before {
  position: absolute;
  display: block;
  content: "";
  height: 15px;
  width: 1px;
  background: #ccc;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 
--------------------------------------
tour_detail
--------------------------------------
*/
.tour_detail {
  overflow: hidden;
}
.tour_detail .title_wrap {
  position: relative;
}
.tour_detail .title_wrap .tour_title {
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  font-size: 48px;
  color: #fff;
  z-index: 99;
  font-weight: 700;
  text-shadow:
    -1px -1px 1px rgba(255, 255, 255, 0.2),
    1px 1px 1px rgba(0, 0, 0, 0.6);
}
.tour_detail .price {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
  text-shadow:
    -1px -1px 1px rgba(255, 255, 255, 0.2),
    1px 1px 1px rgba(55, 55, 55, 0.6);
}
.tour_detail .price span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 14px;
  margin-bottom: 5px;
  color: var(--mg-c2);
  font-weight: 400;
  text-shadow: none;
}
.tour_detail .tourinfo {
  margin-bottom: 30px;
}
.tour_detail .tourinfo .item {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.tour_detail .tourinfo .item .fa {
  color: var(--mg-c1);
  position: absolute;
  left: 0;
  top: 3px;
}
.tour_detail .tourinfo .item span {
  font-weight: 700;
  color: #333;
  display: inline-block;
  margin-left: 10px;
}

/* .tour_detail .tournav{
  background-color: #fff;
  position: relative;
  top: 0px;
  z-index: 2;
}
.tour_detail .tournav ul{  
  display: block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour_detail .tournav ul li{
  display: inline-block;
}
.tour_detail .tournav ul li a{
  color: var(--mg-c3);
  text-transform: uppercase;
  display: block;
  padding: 10px 20px;
  border-bottom: 3px solid transparent;
  transition: all .3 ease;
}
.tour_detail .tournav ul li a{
  color: #333;
  border-bottom-color: var(#333);
} */
#itinerary-tab {
  border-right: 2px solid var(--mg-c1);
}
#itinerary-tab .nav-link {
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 0;
  background-color: #ececec;
  color: var(--mg-c3);
  margin-bottom: 1px;
}
#itinerary-tab .nav-link:hover {
  color: var(--mg-c1);
}
#itinerary-tab .nav-link.active {
  background: var(--mg-c1);
}
#itinerary-tabContent h5 {
  color: #333;
  font-weight: 700;
}

#template-wrap {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}
#template-wrap .nav-wrap {
  margin-bottom: 30px;
}
#template-wrap #onepage-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  z-index: 99;
  background-color: #ececec;
  width: 100%;
  border-bottom: 3px solid var(--mg-c1);
}
#template-wrap #onepage-nav li {
  display: inline-block;
  margin-block: 0;
}
#template-wrap #onepage-nav li a {
  color: var(--mg-c3);
  text-transform: uppercase;
  display: block;
  padding: 15px 20px;
  transition: all 0.3 ease;
  font-weight: 700;
}
#template-wrap #onepage-nav li a.active {
  background-color: var(--mg-c1);
}
#template-wrap .section {
  margin-bottom: 80px;
}
#template-wrap .section:last-child {
  margin-bottom: 10px;
}
#template-wrap .section .title {
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  border-bottom: 1px dotted var(--mg-c2);
  margin-bottom: 15px;
  position: relative;
  font-weight: 700;
}

aside.tour {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  overflow: unset;
  box-shadow:
    0px 1px 2px rgb(0 0 0 / 8%),
    0px 4px 12px rgb(0 0 0 / 5%);
}

aside.tour .title {
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
aside.tour + aside.tour {
  margin-top: 30px;
}
/* 
--------------------------------------
socialButton
--------------------------------------
*/
.socialButton {
  width: 100%;
  display: block;
  padding: 6px 12px;
  border: 1px solid transparent;
  background-image: none;
  border-radius: 4px;
  cursor: pointer;

  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.socialButton.inlineblock {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

.socialButton.facebook {
  color: #fff !important;
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
}
.socialButton.facebook:hover {
  color: #fff !important;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.socialButton.facebook:before {
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: "\f39e";
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
  text-align: center;
  line-height: 33px;
}

.socialButton.instagram {
  color: #fff !important;
  background-color: #e1306c;
  border-color: rgba(0, 0, 0, 0.2);
}
.socialButton.instagram:hover {
  color: #fff !important;
  background-color: #c13584;
  text-decoration: none;
}
.socialButton.instagram:before {
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: "\f16d";
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 14px;
  text-align: center;
  line-height: 33px;
}
/*********/
.socialButton.twitter {
  color: #fff !important;
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
}
.socialButton.twitter:hover {
  color: #fff !important;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.socialButton.twitter:before {
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: "\f099";
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 14px;
  text-align: center;
  line-height: 33px;
}

.socialButton.google {
  color: #fff !important;
  background-color: #de5246;
  border-color: #de5246;
}
.socialButton.google:hover {
  color: #fff !important;
  background-color: #bd463c;
  border-color: #bd463c;
  text-decoration: none;
}
.socialButton.google:before {
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: "\f1a0";
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
  text-align: center;
  line-height: 33px;
}
/* 
--------------------------------------
footer
--------------------------------------
*/
footer {
  margin: 0 var(--mg-container-padding) var(--mg-container-padding);
  border-radius: var(--mg-border-radius);
  background-color: var(--mg-c3);
  padding: 70px 0 0;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
footer .copyright {
  color: #fff;
  padding: 15px 0 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .copyright .itsolutionslogo {
  height: 45px;
  width: auto;
}
footer .ftitle {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
  color: #fff;
  position: relative;
}
footer .ftitle::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--mg-c1);
  bottom: 0;
  left: 0;
}
footer .footeritem {
  margin-bottom: 10px;
}
footer .footeritem span {
  text-transform: capitalize;
  display: inline-block;
  margin-right: 5px;
  font-weight: 700;
}
footer .social_list {
  margin-top: 30px;
}
footer .social_list li + li {
  margin-left: 5px;
}
footer .social_list li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--mg-c1);
  color: var(--mg-c3);
  border-radius: 5px;
}
footer .social_list li a:hover {
  color: var(--mg-c3);
  background-color: var(--mg-c1-hover);
}
footer .ftitle2 {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}
footer .fmenu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
footer .fmenu li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all ease 0.3s;
  display: inline-block;
  padding: 2px 0 0 14px;
  position: relative;
}
footer .fmenu li a::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
footer .fmenu li a:hover {
  color: var(--mg-c1);
}
footer .fmenu li a:hover::before {
  background-color: var(--mg-c1);
}
footer .fmenu.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/*
|-------------------------------------------------------------
| bigloader begin
|-------------------------------------------------------------
*/
#bigloader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#bigloader:before {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  content: "\f1ce";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--mg-c1);
  font-size: 44px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  -webkit-animation: 1s linear infinite spinner-border;
  animation: 1s linear infinite spinner-border;
}

/* 
--------------------------------------
breadcrumb
--------------------------------------
*/
.breadcrumb {
  margin: 0;
  padding: 15px 0;
}
.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
}
.breadcrumb ul li + li {
  padding-left: 20px;
  margin-left: 15px;
}
.breadcrumb ul li + li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb ul li a {
  color: var(--mg-c3);
  transition: all ease 0.3s;
}
.breadcrumb ul li:last-child a,
.breadcrumb ul li:first-child a i {
  color: var(--mg-c1);
}
.breadcrumb ul li:last-child a {
  font-weight: 400;
}
.breadcrumb ul li a:hover {
  color: var(--mg-c1);
}
/* 
--------------------------------------
responsive
--------------------------------------
*/
@media (max-width: 1199px) {
  nav#mainmenu .menu li a {
    padding: 15px 15px;
  }
  /*  */
  .catlist .item .content h4 {
    font-size: 26px;
  }
  /*  */
  #homeslider .item {
    height: 450px;
  }
  /*  */
  .about .title_small {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 5px;
  }
  .about .title {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .about .text {
    margin-bottom: 20px;
  }
  .about .advs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .about .advs .item h5 {
    font-size: 1rem;
  }
  /*  */
  .tours .item .content {
    padding: 10px 10px 0;
  }
  .tours .item .content h4 {
    font-size: 1rem;
  }
  .tours .item .card-footer {
    padding: 0 10px 10px;
  }
  .tours .item .price {
    font-size: 14px;
  }
  .tours .item .more {
    font-size: 10px;
    padding: 5px 10px;
  }
}
@media (max-width: 992px) {
  :root {
    --mg-container-padding: 10px;
    --mg-border-radius: 15px;
  }
  .topheader {
    padding: 10px 0;
  }
  .topheader .contactItem + .contactItem {
    margin-left: 20px;
  }
  .social_list li + li {
    margin-left: 13px;
  }
  .langsection a + a {
    margin-left: 20px;
  }
  /*  */
  nav#mainmenu {
    min-height: 80px;
  }
  nav#mainmenu .full-container,
  nav#mainmenu .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  nav#mainmenu .nav-header {
    min-height: 80px;
  }
  nav#mainmenu .nav-header .brand {
    margin: 0 auto;
    float: none;
    top: 15px;
  }
  nav#mainmenu .brand img {
    height: 50px;
  }
  nav#mainmenu .nav-header .toggle-bar {
    /* font-size: 26px; */
    position: absolute;
    top: 20px;
    right: 15px;
    width: 80px;
    height: 40px;
    background: var(--mg-c1);
    color: var(--mg-c3);
    border-radius: 20px;
  }
  nav#mainmenu .menu,
  nav#mainmenu .attributes {
    margin-top: 0;
  }
  nav#mainmenu .menu li a {
    padding: 13px 10px;
    border-bottom: solid 1px #efefef;
  }
  nav#mainmenu .menu li:last-child a {
    border-bottom: none;
  }
  .core-nav .dropdown > .dropdown-content {
    position: relative;
    width: 100%;
  }
  .core-nav .dropdown > .dropdown-content {
    border-left: 10px solid #efefef;
  }
  .core-nav .dropdown > .dropdown-content li a {
    font-weight: 400 !important;
    padding: 10px 20px !important;
  }
  .core-nav .wrap-core-nav-list {
    max-height: 10000px;
  }
  nav#mainmenu .attributes {
    position: absolute;
    margin: 0;
    right: 150px;
    padding-top: 20px;
  }
  .nav-header ul.attributes li a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
  }
  /*  */
  #homeslider .item {
    height: 350px;
  }
  #homeslider .item .scontainer {
    padding: 20px;
  }
  #homeslider .item h2 {
    font-size: 26px;
    line-height: 1.3em;
  }
  #homeslider .item .more {
    margin-top: 15px;
    padding: 8px 25px;
  }
  /*  */
  section {
    padding: 50px 0;
  }
  .maintitle {
    font-size: 26px;
    line-height: 36px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  /*  */
  .tour_detail .price {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  #template-wrap #onepage-nav li a {
    padding: 10px 10px;
    font-size: 14px;
  }
  #itinerary-tab {
    border-right: none;
  }
  #itinerary-tab .nav-link {
    margin-right: 1px;
  }
  /*  */
  .catlist .item .content h4 {
    font-size: 24px;
  }
  /*  */
  .about .title {
    font-size: 1rem;
  }
  .about .text {
    line-height: 1.2;
  }
  .about .advs {
    gap: 10px;
  }
  .about .advs .item {
    gap: 15px;
  }
  .about .advs .item .icon img {
    width: 40px;
  }
  .about .advs .item .content {
    font-size: 14px;
  }
  /*  */
  .testimonial_item {
    padding: 50px 15px 15px;
  }
  .testimonial_item:before {
    top: 5px;
    font-size: 1.5rem;
  }
  .testimonial_item .user {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 20px 0;
  }
  .topheader {
    padding: 10px 0;
  }
  .topheader .social_list {
    display: none;
  }
  .langsection:before {
    display: none;
  }
  /*  */
  nav#mainmenu .menu li a {
    padding: 7px 10px;
    font-size: 14px;
  }
  nav#mainmenu .wrap-core-nav-list,
  nav#mainmenu .nav-header {
    z-index: 9999999;
  }
  nav#mainmenu .nav-header .toggle-bar {
    font-size: 22px;
    top: 12px;
    right: 5px;
    width: 70px;
    height: 35px;
  }
  nav#mainmenu .attributes {
    padding-top: 10px;
    right: 80px;
  }
  .core-content .wrap-search-fullscreen {
    z-index: 9999999999;
  }
  /*  */
  #homeslider .ratio-21x9 {
    --bs-aspect-ratio: 70%;
  }
  #homeslider .owl-dots {
    display: none;
  }
  #homeslider .containerwrap {
    width: 80%;
  }
  #homeslider .item {
    height: 300px;
  }
  #homeslider .item h2 {
    font-size: 26px;
  }
  #homeslider .item p {
    display: none;
  }
  #homeslider .item .scontainer {
    padding: 10px;
  }
  #homeslider .item .more {
    margin-top: 5px;
    padding: 5px 15px;
  }

  /*  */

  .maintitle {
    font-size: 26px;
    line-height: 32px;
  }

  /*  */

  .catlist .item .content h4 {
    font-size: 30px;
  }

  /*  */

  .event_detail .listinfo .item {
    display: block;
    width: 100%;
  }

  .event_detail .listinfo .item + .item {
    padding-left: 0px;
    margin-left: 0px;
    margin-top: 10px;
  }
  .event_detail .listinfo .item + .item::before {
    display: none;
  }

  /*  */

  .pageheader {
    padding-top: 100px;
  }

  /*  */

  /* .tour_detail .price{} */

  #template-wrap .section {
    margin-bottom: 40px;
  }
  /*  */
  footer .ftitle {
    font-size: 1rem;
  }
  footer {
    padding: 30px 0 0;
  }
}
@media (max-width: 575px) {
  /*  */
  nav#mainmenu {
    min-height: 60px;
  }
  nav#mainmenu .nav-header {
    min-height: 60px;
  }
  nav#mainmenu .nav-header .brand {
    top: 10px;
  }
  nav#mainmenu .brand img {
    height: 40px;
  }
  /*  */
  #homeslider .item {
    height: 250px;
  }
  #homeslider .item h2 {
    font-size: 24px;
  }
  #homeslider .item.ratio-21x9 {
    height: 200px;
  }
  /*  */
  .topheader .contactItem {
    display: none;
  }
  /*  */

  section {
    padding: 20px 0;
  }
  .maintitle {
    font-size: 22px;
    line-height: 28px;
  }

  /*  */

  .catlist .item .content h4 {
    font-size: 22px;
  }

  /*  */

  .pageheader {
    padding-top: 80px;
    padding-bottom: 15px;
  }

  /*  */

  .tour_detail .price {
    font-size: 22px;
    line-height: 26px;
  }

  /*  */
  .mapheader {
    height: 250px;
  }
  .mapheader iframe {
    height: 100%;
    width: 100%;
  }
  .contactus .csocial {
    margin-top: 5px;
    margin-bottom: 0px;
  }
  .contactus .csocial li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  /*  */

  footer {
    padding: 30px 0 0;
  }
  footer .ftitle {
    font-size: 18px;
  }
  footer .ftitle2 {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  #template-wrap #onepage-nav {
    background-color: transparent;
    display: none;
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    border-bottom: none;
  }
  #template-wrap #onepage-nav li {
    margin-bottom: 2px;
    margin-right: 2px;
    flex: 1;
  }
  #template-wrap #onepage-nav li a {
    padding: 10px;
    border-bottom: none;
    background-color: #ececec;
    display: block;
    text-align: center;
  }
  #template-wrap #onepage-nav li a.active {
    border-bottom: none;
  }
}
