/********** custom theme **********/
@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway-Light.ttf);
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Bold.ttf);
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-Regular.ttf);
}
@font-face {
  font-family: 'UTM A&S Signwriter';
  src: url('../fonts/UTMASSignwriter.woff2') format('woff2'),
  url('../fonts/UTMASSignwriter.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
html {
  box-sizing: border-box
}
*,
*:before,
*:after {
  box-sizing: inherit
}
body{
  color: var(--text_color);
  font-family: 'Raleway'!important;
  line-height: 1.5;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block
}
/* Typography  */
h1, h2, h3, h4, h5, h6 { 
  color: var(--title_color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--title_color);
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{
  color:var(--text_hover_color);
}
a {
  color: var(--text_color);
  text-decoration: none; 
  outline: none; 
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover, a:focus{
  color: var(--text_hover_color);
  text-decoration: none; 
  outline: none;
}
a:active { 
  outline: none; 
}
strong { 
  font-weight: 700; 
}
em { 
  font-style: italic; 
}
/* end Typography  */
.sticky{
  position: fixed!important;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 0 10px;
}
/* image */
.zozo-image {
  max-width: 100%;
  height: auto
}
img {
  vertical-align: middle
}
/* end image */

/* table */
.zozo-table,
.zozo-table-all {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  display: table
}

.zozo-table-all {
  border: 1px solid #ccc
}

.zozo-bordered tr,
.zozo-table-all tr {
  border-bottom: 1px solid #ddd
}

.zozo-striped tbody tr:nth-child(even) {
  background-color: #f1f1f1
}

.zozo-table-all tr:nth-child(odd) {
  background-color: #fff
}

.zozo-table-all tr:nth-child(even) {
  background-color: #f1f1f1
}

.zozo-hoverable tbody tr:hover,
.zozo-ul.zozo-hoverable li:hover {
  background-color: #ccc
}

.zozo-centered tr th,
.zozo-centered tr td {
  text-align: center
}

.zozo-table td,
.zozo-table th,
.zozo-table-all td,
.zozo-table-all th {
  padding: 8px 8px;
  display: table-cell;
  text-align: left;
  vertical-align: top
}

.zozo-table th:first-child,
.zozo-table td:first-child,
.zozo-table-all th:first-child,
.zozo-table-all td:first-child {
  padding-left: 16px
}
/* end table */

/* list */
.zozo-ul {
  list-style-type: none;
  padding: 0;
  margin: 0
}

.zozo-ul li {
  padding: 8px 16px;
  border-bottom: 1px solid #ddd
}

.zozo-ul li:last-child {
  border-bottom: none
}

.heading-title{
  font-weight: bold;
  font-size: 24px;
  line-height: var(--line-height);
  color: var(--main_color);
}
.description{
  font-size: 14px;
}
.title-item{
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #000;
}

/* text ellipsis */
.text-ellipsis{
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  display: -webkit-box;
}
.text-ellipsis.ellipsis-3{
  -webkit-line-clamp: 3;
  min-height: 90px;
}
.text-ellipsis.ellipsis-4{
  -webkit-line-clamp: 4;
}
.text-ellipsis.ellipsis-5{
  -webkit-line-clamp: 5;
}

/* btn */
/*.btn-zozo{
  padding: 10px 20px;
  background: var(--main_color);
  color: #fff;
}
.btn-zozo:hover{
  box-shadow: inset 0 0 0 100px rgba(0,0,0,.2);
  color: #fff;
}*/

.btn-zozo {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  line-height: normal;
  border: 1px solid #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  background-color: transparent;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  color: var(--text_color);
  overflow: hidden;
}
.btn-zozo:before {
  position: absolute;
  content: '';
  display: block;
  left: -2px;
  top: 0;
  right: -2px;
  bottom: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: -1;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),-webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-zozo:hover {color:#fff;}
.btn-zozo.btn-hover {color: #fff;border: 1px solid var(--btn_color);}
.btn-zozo.btn-hover:before {background-color:var(--btn_color);}
.btn-zozo.btn-hover:hover {color:var(--btn_color);}
.btn-zozo:hover:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
/* end btn */

/* main bg */
.bg-grey{
  background: #F6F6F6;
}
/* end main bg */

/********** custom theme **********/
/* menu */
header nav .mega-content .level0-wrapper2{
  border: none;
  padding: 0;
}
header nav .mega-content .level1.item{
  float: unset;
  width: 100%;
  padding: 0;
}
header nav .mega-content .level1.item a{
  padding: 15px 20px;
  position: relative;
  display: block;
  border-bottom: 1px solid #e2e8f0;
  transition: all 500ms ease 0s;
}
header nav .mega-content .level1.item a:after{
  position: absolute;
  top: -2px;
  left: 15px;
  bottom: 0;
  content: "";
  background: url(../../image/dropdown-menu-arrow.png);
  width: 26px;
  height: 11px;
  opacity: 0;
  transform: scale(0);
  transition: all 500ms ease;
  margin: 20px 0;
}
header nav .mega-content .level1.item:hover > h2 > a, header nav .mega-content .level2:hover > a{
  color: var(--main_color);
  padding-left: 50px;
}
header nav .mega-content .level1.item:hover > h2 > a:after, header nav .mega-content .level2:hover > a:after {
  opacity: 1;
  transform: scale(1.0);
}
header nav .mega-content .level1.item h2{
  margin: 0;
  font-weight: normal;
}
header nav .mega-content{
  padding: 0;
}
header nav .mega-content .level1 h2 a, header nav .mega-content .level1.parent h2 a{
  font-weight: normal;
}
/* menu con */
header nav .mega-content .level1.item ul.level1{
  position: absolute;
  min-width: 270px;
  background: #FFFFFF;
  z-index: 99999;
  border: 1px solid #EBEBEB;
  left: 100%;
  top: 20%;
  opacity: 0;
  transition: all 500ms ease;
  margin-bottom: 0;
}
header nav .mega-content .level1.item:hover ul.level1{
  opacity: 1;
  top: -1px;
}
header nav .mega-content .level1.item:last-child a{
  border: none;
}
/* end menu con */
.header-bottom .col-md-12{
  padding: 0;
}
#nav .nav-item:hover{
  background: #ffc757;
}
#nav .nav-item:hover > a{
  color: #fff;
}
.header-top{
  background: #ffffff;
  padding: 7px 0;
  border-bottom: 1px solid #e7e7e7;
}
header nav{
  background: transparent;
}
.logo img{
  max-height: 70px;
}
/* end menu */
.section .heading-title{
  padding-bottom: 30px; 
}
/* slider */
.rev_slider li.tp-revslider-slidesli{
  position: relative;
} 
.rev_slider_wrapper{
  max-width: 100%;
}
.tparrows.tp-leftarrow:before{
  content: '\f104';
}
.tparrows.tp-rightarrow:before{
  content: "\f105";
}
.tparrows.tp-leftarrow:before, .tparrows.tp-rightarrow:before{
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 40px!important;
}
/* end slider */

/* header */
.header .header-main{
  padding: 0;
}
.header .header-main .minicart-wrapper .showcart i{
  border: none;
  font-size: 18px;
  left: 0;
}
.header .header-main .minicart-wrapper .showcart .count_item_pr{
  background: unset;
  color: var(--main_color);;
}
.header .header-main .minicart-wrapper{
  padding: 0;
  float: unset;
}
.header #cart{
  line-height: 50px;
  border-left: 1px solid #DADADA;
}
.header .header-main .minicart-wrapper .showcart .count_item_pr{
  top: -15px;
  left: 30px;
  font-weight: bold;
}
.top-cart-content{
  top: 45px;
}
.box-search{
  display: none;
}
.header .icon-search{
  font-size: 18px;
  text-align: right;
  line-height: 50px;
}
.inside-header_main{
  position: relative;
  min-height: 90px;
}
.inside-header_main:before, .inside-header_main:after{
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 50%;
  background: #333;
  display: none;
}
.inside-header_main:after{
  left: unset;
  right: -1px;
}
.header .header-main .our-service .box{
  padding: 10px 15px;
}
.header .header-main .our-service .box .box-inner i{
  color: #fff;
  background: var(--main_color);
  border-color: var(--main_color);
  float: left;
  position: unset;
  transform: unset;
}
.header .header-main .our-service .box .box-inner .content{
  padding-left: 60px;
}
.header .header-main .our-service{
  margin-top: 0;
}
.header .header-main .our-service .box .box-inner .content .content-title{
  color: #27282C;
  opacity: 0.6;
}
.header .header-main .our-service .box .box-inner .content .content-description{
  color: #27282C;
  font-weight: bold;
  padding-top: 5px;
}
.mini-cart{
  height: auto;
}
.header .header-main .our-service .box .box-inner{
  padding: 0;
}
.header .header-main .our-service .box .box-inner .content p{
  color: var(--text_color);
}

/* menu */
.header .header-bottom{
  background: var(--mainmenu_color);
}
.header .header-bottom nav .nav .nav-item.active > a, .header .header-bottom nav .nav .nav-item:hover > a, header nav .nav-item.active{
  background: unset;
}
.header .header-bottom nav .nav .nav-item.active > a, .header .header-bottom nav .nav .nav-item:hover > a{
  color: #ebe9e9;
}
.header .header-bottom nav .nav .nav-item.active > a:focus, .header .header-bottom nav .nav .nav-item:hover:focus > a{
  background: unset;
}
.logo-box-style2 a{
  color: #27282c;
}
/* end menu */

/* box search */
.box-search{
  display: block;
}
.box-search form{
  margin: 0;
}
.box-search .input-group{
  width: 100%;
}
.search-box.now-visible{
  top: 65px;
}
/* end box search */

/* hightlight area */
.single-highlight-box{
  margin-bottom: 0;
}
.single-highlight-box .icon-holder i{
  display: block;
  color: #b3b3b3;
  font-size: 50px;
  line-height: 104px;
  transition: all 0.7s ease-in-out 0s;
}
.single-highlight-box:hover .icon-holder i{
  color: #fff;
}
.single-highlight-box .icon-holder::before{
  background: var(--main_color);
}
.single-highlight-box .icon-holder{
  border: 3px solid var(--main_color);;
}
.single-highlight-box:hover .inner-content a{
  color: var(--text_hover_color);
}
.img-holder{
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-highlight-box:hover .icon-holder.img-holder::before{
  display: none;
}

/* about area */
.sec-title p{
  color: var(--main_color);
}
.about-area .owl-dots{
  display: block!important;
}

/* about us */
.about-carousel-box .single-box .icon-holder i {
  color: #ffffff;
  font-size: 90px;
  line-height: 90px;
  margin-left: 1px;
}
.about-carousel-box .owl-dots{
  display: inline-block;
  text-align: left;
  bottom: unset;
}
.about-image-box .text-box:before{
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f10e";
  font-size: 60px;
  transform: perspective(1200px) rotateX(0) translateZ(0px);
}
.about-carousel-box:before{
  content: '';
  width: 30px;
  height: 30px;
  background: var(--main_color);
  border-right: 30px solid #fff;
  border-bottom: 30px solid transparent;
  transform: perspective(1200px) rotateY(0) rotateX(180deg) translateZ(0px);
}
.about-carousel-box{
  background: var(--main_color);
}
.about-carousel-box .owl-dots .owl-dot.active{
  background: var(--main_color);
  border-color: var(--main_color);
}

/* our customer */
.testimonial-area-custom .single-testimonial-item .inner-content .img-box{
  float: left;
  width: 60px;
  height: 60px;
}
.testimonial-area-custom .single-testimonial-item .inner-content .client-info{
  padding-left: 80px;
  text-align: left;
}
.testimonial-area-custom .single-testimonial-item .inner-content .text-box{
  text-align: left;
  padding-top: 0;
}
.testimonial-area-custom .brand-items-carousel .owl-nav .owl-next{
  margin-left: 50px!important;
}
.testimonial-area-custom .brand-items-carousel .owl-nav .owl-prev .fa-angle-left, .brand-items-carousel .owl-nav .owl-next .fa-angle-right{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-area-custom .brand-items-carousel .owl-dots{
  display: none;
}
.slotholder{
  transform: unset!important;
}
.tp-parallax-wrap{
  position: absolute;
  display: block;
  visibility: visible;
  left: 90px;
  top: 308px;
  z-index: 7;
}
.tp-caption{
  max-width: 900px!important;
  min-width: 1000px!important;
  white-space: inherit!important;
}
.brand-area{
  padding: 75px 0;
}
.single-testimonial-item{
  margin: 0;
}
.single-testimonial-item .client-info span{
  color: var(--text_color);
}
.single-testimonial-item{
  position: relative
}
.testimonial-area-custom .single-testimonial-item:after{
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f10e";
  font-size: 70px;
  position: absolute;
  bottom: 30px;
  right: 40px;
  color: #ebebeb;
  z-index: 1;
}
.testimonial-area-custom  .single-testimonial-item .text-box{
  position: relative;
  z-index: 2;
}
.testimonial-area-custom .single-testimonial-item .icon-star-box{
  text-align: left;
  color: var(--main_color);
  padding-top: 15px;
}

/* why choose */
.why_choose_us-area{
  background: #F6F6F6;
}
.why_choose_us-area .box-left .heading-title{
  padding-bottom: 30px;
}
.why_choose_us-area .box-right{
  text-align: right;
}

/* service contact us */
.bg-support{
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: 50% 50%;
}
.service-contact_us{
  min-height: 528px;
  position: relative;
}
.content-contact_us{
  padding: 40px 80px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px rgba(0,0,0,.22);
  width: 35%;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

/* service slogan  */
.item_service-slogan .item-text .title_item-text{
  font-weight: bold;
  font-size: 18px;
  color: var(--main_color);
  margin-bottom: 10px;
}
.item_service-slogan .item-text .description_item-text{
  color: var(--text_color);
}
.item_service-slogan .item-icon{
  text-align: center;
}
.item_service-slogan i{
  font-size: 60px;
  color: var(--main_color);
}

/* service style design */
.service-style_design .description{
  padding: 10px 0 15px 0;
}
.service-style_design{
  padding-bottom: 60px;
}
.title-style_design{
  padding: 25px 20px;
  border: 1px solid #DADADA;
  box-sizing: border-box;
}

/* latest blog area */  
.wrapper-news_custom{
  overflow: hidden;
}
.wrapper-news_custom .grid{
  width: 33.3333333%;
  float: left;
}
.wrapper-news_custom .grid:not(:nth-child(3n)) {
    border-right: 1px solid #E6E6E6;
}
.wrapper-news_custom .wrapper-grid{
  overflow: hidden;
  background: #fff;
  margin-bottom: 30px;
}
.wrapper-news_custom .wrapper-grid .img-item_news{
  padding: 30px 20px;
}
.wrapper-news_custom .wrapper-grid .title-item{
  position: relative;
  padding: 0 20px;
}
.wrapper-news_custom .wrapper-grid .title-item, .wrapper-news_custom .wrapper-grid .desc-item, .wrapper-news_custom .wrapper-grid .text-left{
  padding: 0 20px;
}
.wrapper-news_custom .wrapper-grid .title-item:before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: var(--main_color);
  width: 3px;
  height: 20px;
}
.latest-blog-area .title-item, .latest-blog-area .desc-item{
  text-align: left;
}
.latest-blog-area .description-item{
  color: #828282;
}
.latest-blog-area .description-item p{
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  display: -webkit-box;
  margin-bottom: 15px;
}
.latest-blog-area .description{
  padding: 0 100px 50px 100px;
}
@media(max-width: 767px){
  .latest-blog-area .description{
    padding: 20px 0;
  }
}
.latest-blog-area .info-item_news{
  border: none;
  padding: 20px 0;
}
.latest-blog-area .single-blog-post{
  margin: 0;
}
.spacing-30{
  clear: both;
  height: 30px;
  width: 100%;
  background: unset;
}

/* wrapper_content_mainbottom */
[id^="box-newsletter"]{
  background: var(--main_color);
}
.service-left_form, [id^="box-newsletter"]{
  padding: 40px 30px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.11);
}
.service-left_form .heading-title, [id^="box-newsletter"] .heading-title{
  text-align: center;
  padding-bottom: 30px;
}
.service-left_form ul{
  padding-left: 25px;
}
.service-left_form ul li{
  list-style-type: disc;
}
.service-left_form .img-service-left_form img{
  width: 100%;
}
[id^="box-newsletter"], [id^="box-newsletter"] .heading-title{
  color: #fff;
}
[id^="box-newsletter"] .description{
  text-align: left;
  margin-bottom: 20px;
}
[id^="box-newsletter"] .btn-zozo{
  width: 100%;
  line-height: unset;
  margin-top: 45px;
}
[id^="box-newsletter"] form{
  margin: 0!important;
}
[id^="box-newsletter"] textarea{
  margin: 0!important;
  width: 100%;
}
.newsletter .btn-zozo:before{
  background-color: #b20000;
}
.newsletter .btn-zozo.btn-hover:hover{
  color: #fff;
  border-color: #fff;
}
.service-left_form, [id^="box-newsletter"]{
  height: 570px; 
}
.footer-social-links{
  margin:0!Important;
}
/* product custom */
[class^="product_custom-"]{
  padding-bottom: 70px;
}
[class^="product_custom-"] .heading-title{
  text-align: center;
  margin-bottom: 50px;
}
.ant-product-item .box-info .product-item-name a{
  font-weight: bold;
}
.ant-product-item:hover .box-info .product-reviews-summary, .ant-product-item:hover .box-info .item-price{
  opacity: 1;
}
.ant-product-item .box-info .item-price .price-box .old-price .price, .ant-product-item .box-info .item-price .price-box .special-price .price{
  color: #111111;
  opacity: 0.6;
  font-size: 14px;
  font-weight: normal;
}
.ant-product-item .box-info .item-price .price-box .special-price .price{
  opacity: 1;
  font-weight: bold;
  padding-left: 10px;
}
.ant-product-item .box-info .item-price{
  padding-bottom: 15px;
}
.product-view_grid .item{
  margin-bottom: 30px;
}
.ant-product-item .btn-zozo{
  padding: 5px 20px;
}
.product-view_grid .button-view_all{
  margin-top: 70px;
}
.button-view_all .btn-zozo{
  display: inline-block;
}

/* news custom */
.info-item_news{
  padding: 20px 10px;
  text-align: center;
  border: 1px solid #DADADA;
  border-top: none;
  box-sizing: border-box;
}
.info-item_news .desc-item{
  margin: 10px 0 20px 0;
  min-height: 45px;
}
[class^="news_custom-"]{
  padding-bottom: 20px;
}
[class^="news_custom-"] .heading-title{
  padding-bottom: 30px;
}

/* news tab */
.news-tab{
  padding-bottom: 80px;
}
ul.tabs li{
  color: #000;
  padding-right: 30px;
}
ul.tabs li:last-child{
  padding-right: 0;
}
ul.tabs li.current{
  color: var(--main_color);;
}
.news-tab ul{
  padding: 0 0 50px 0;
}
/* appointment-box */
.appointment-box input[type="text"], .appointment-box input[type="email"], .appointment-form textarea, .appointment-box select {
    position: relative;
    display: block;
    padding: 0 20px;
    border: 1px solid #ededed;
    background: #ffffff;
    color: #7c7e84;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
}
.appointment-box button[type="submit"] {
    display: block;
    width: 100%;
    background: var(--main_color);
    color: #ffffff;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 15px;
    height: 60px;
    line-height: 60px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Rubik', sans-serif;
    padding: 0 30px 0;
    transition: all 500ms ease;
}
.appointment-box form, .appointment-box .valid .error{
  margin: 0;
}
.custom-select-wrapper {
  position: relative;
  user-select: none;
}
.custom-select-wrapper select {
  display: none;
}
.custom-select {
  position: relative;
}
.custom-select-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 84px 0 22px;
  line-height: 50px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #edf2f7;
  transition: all 0.3s;
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px; height: 10px;
  top: 50%; right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #5f5f5f;
  border-right: 1px solid #5f5f5f;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0,0,0,.07);
  background: #f9f9f9;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  z-index: 9999;
  overflow-y: scroll;
  max-height: 190px;
}
.custom-options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%; right: 25px;
  width: 7px; height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transition: all 0.4s ease-in-out;
  margin-left: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%; right: 25px;
  width: 7px; height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  color: #111111;
  line-height: 47px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.custom-option:hover,
.custom-option.selection {
  background: var(--main_color);
  color: #fff;
}
/* end */
/* testimonial area */
.testimonial-area-custom{
  padding-bottom: 50px;
}
.testimonial-area-custom .brand-items-carousel.owl-carousel .owl-nav [class*="owl-"]{
  background: #fff;
}
.testimonial-area-custom .text-ellipsis{
  min-height: 70px;
}

/* footer */
.footer-bottom-are{
  padding: 70px 0 60px 0;
  background: var(--main_color);
  color: #fff;
}
.footer-container .heading-title{
  color: #fff;
  padding-bottom: 30px;
}
.menu-footer{
  padding: 40px 0 45px 0;
}
.menu-footer ul li a{
  color: #fff; 
  position: relative;
  padding-left: 10px;
  padding-bottom: 5px;
  display: block;
}
.menu-footer ul li a:before{
  content: "-";
  position: absolute;
  left: 0;
}
.footer-left_column{
  padding-right: 100px;
}
#service-telephone_footer{
  background: rgb(255 255 255 / 0.1);
  box-sizing: border-box;
  border-radius: 6px;
  padding: 20px 30px 5px 30px;
}
#service-telephone_footer .title-telephone_footer{
  margin-bottom: 15px;
}
#service-telephone_footer .title-telephone_footer, #service-telephone_footer .desc-telephone_footer:nth-child(3){
  font-size: 24px;
}
/* end footer */
footer .back-to-top{
  background: var(--main_color);
}

@media(min-width: 991px){
  .logo{
    padding: 0;
    font-size: unset;
  }
}
.header .header-main .minicart-wrapper{
  padding: 10px 0;
}

/* information */
.bg_breadcrumb{
  position: relative;
}
.bg_breadcrumb .text-module{
  position: absolute;
  bottom: 100px;
  left: 95px;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
}
.bg_breadcrumb .text-module p{
  margin: 0;
}
.bg_breadcrumb img{
  width: 100%;
}
[class^="information-information"] .about-area{
  display: none;
}
.breadcrumb{
  padding: 0!important;
}
.breadcrumb li > a > span, .breadcrumb li span .fa, .breadcrumb li a:hover, .breadcrumb li.active, .breadcrumb li strong{
  color: #000;
}
.breadcrumb-area .breadcrumb-menu ul li{
  margin-right: 0;
  padding-right: 6px;
}
.history-carousel .owl-prev, .history-carousel .owl-next{
  width: unset!important;
  height: unset!important;
}
.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover{
  background: unset!important;
}
.history-carousel .owl-prev i, .history-carousel .owl-next i{
  cursor: pointer; 
  position: unset;
}

/* about counter */
.about-counter{
  background: #f6f6f6;
}

.footer-container{
  position: relative;
  z-index: 2;
}
.information-contact .text-module{
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* contact */
.contact-form .input-box {
    position: relative;
    display: block;
}
.contact-form .icon {
    position: absolute;
    top: 19px;
    left: 20px;
}
.contact-form .btn-hover:hover{
  color: var(--btn_color)!important;
  border-color: var(--btn_color)!important;
}
.valid{
  position: relative;
  margin-top: 10px;
}
.valid .error{
  padding: 10px;
}
.valid button{
  position: absolute!important;
  width: unset!important;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* news category */
.single-blog-post.style3 .post-date{
  color: #fff;
}
.breadcrumb-area.style2{
  height: 380px;
}
.news-category .breadcrumb-menu, .news-news .breadcrumb-menu, [class^="product-category"] .breadcrumb-menu, [class^="product-product"] .breadcrumb-menu{
  bottom: 0;
  top: unset;
}
.news-news .about-area, [class^="product-category"] .about-area{
  padding: 0;
}
/* category product */
.category-products .sort-cate{
  margin: 0!important;
}
.showing-result-shorting{
  border: none;
}
.category-products .sort-cate{
  border-top: none;
  margin-bottom: 50px!important;
}
.showing-result-shorting{
  margin: 0;
}
#sort-by ul ul{
  left: -1px;
  right: unset;
}
#sort-by ul ul li a:hover, #sort-by ul ul li a:focus{
  color: #333;
}
.category-products-grids .products-view-grid .ant-product-item .product-item-photo{
  height: auto;
}
.category-products-grids .products-view-grid .ant-product-item .product-item-photo img{
  width: 100%!important;
  position: unset;
}
input[type="checkbox"], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], input[type="radio"], .radio input[type=radio], .radio-inline input[type=radio]{
  top: 1px;
}
/* product */
.product .owl-nav{
  display: block;
}
.product .owl-prev, .product .owl-next{
  transform: translateY(-50%);
  display: block!important;
}
.product .owl-dots{
  display: none;
}
.inventory_quantity{
  margin: 10px 0;
}
.form_button_details .form_hai{
  overflow: hidden;
}
/* cart */
.box-info-product button{
  line-height: 30px;
}
.checkout-cart .breadcrumb, .checkout-checkout .breadcrumb, .product-search .breadcrumb{
  margin: 10px 0;
}
.checkout-cart .breadcrumb span, .checkout-cart .breadcrumb i, .checkout-checkout .breadcrumb span, .checkout-checkout .breadcrumb i, .product-search .breadcrumb span, .product-search .breadcrumb i{
  padding: 0;
  margin: 0!important;; 
}
i.fa{
  font-family: FontAwesome!important;
}
.header .icon-search:before{
  display: none;
}
.latest-blog-area {
  padding: 50px 0;
}
.position-content-top .single-blog-post{
  margin-bottom: 50px;
}
.single-working-process .inner .icon-holder i:before{
  color: #bababa;
  font-size: 80px;
  line-height: 80px;
  transition: all 700ms ease 500ms;
}
.single-footer-widget .contact-info-box ul li p a{
  color: inherit;
}
.footer-logo img{
  height: auto;
  width: 150px;
}
#back-to-top{
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--main_color);
  border: 2px solid var(--main_color);
  width: 55px;
  height: 55px;
  border-radius: 0%;
  color: #ffffff;
  font-size: 25px;
  line-height: 50px;
  font-weight: normal;
  cursor: pointer;
  display: none;
  text-align: center;
  transition: all 500ms ease 0s;
  z-index: 9999999999999;
  box-shadow: 0px 8px 23px -6px rgba(27,27,27,1);
}
#back-to-top:hover {
    opacity: .5;
}

/* chi tiet tin tuc */
.btn-blues, #btnnewreview{
  background: var(--main_color);
}
.article-wraper .article-main .blog_related h2{
  text-transform: unset;
}
.article-wraper .article-main .blog_related h2 i{
  margin-right: 10px;
}
/* end chi tiet tin tuc */
/* checkout success */
.checkout-success .page{
  float: unset;
}

/* responsive */
@media(min-width: 991px){
  .information-contact .highlights-area{
    padding-top: 150px;
  }
}
@media(max-width: 991px){
  .footer-social-links .sociallinks-style-one{
    float: unset;
  }
  .inside-header_main{
    min-height: 80px;
  }
  .top-cart-contain{
    padding: 0!important;
  }
}
@media(max-width: 991px) and (min-width: 767px){
  .col-100-h .mobile-cart{
    right: -40px;
  }
  .nav-mobile-button{
    top: 30px;
    transform: unset;
  }
}
@media(max-width: 767px){
  .inside-header_main:before, .inside-header_main:after{
    display: none;
  }
  .inside-header_main{
    border: none;
  }
  .header #cart{
    line-height: inherit;
    border-left: none;
  }
  .col-100-h #trigger-mobile{
    top: 40px;
  }
  .content-contact_us{
    width: 100%;
    right: unset;
    padding: 15px;
  }
  .wrapper-news_custom .grid{
    width: 100%;
  }
  .service-left_form, [id^="box-newsletter"]{
    height: auto;
  }
  .brand-items-carousel.owl-carousel .owl-nav{
    position: relative;
    top: 0;
  }
  .brand-area .owl-carousel .owl-nav{
    top: -110px;
  }
  .footer-left_column{
    padding-right: 0;
    padding-bottom: 30px;
  }
  #service-telephone_footer .title-telephone_footer, #service-telephone_footer .desc-telephone_footer:nth-child(3){
    font-size: 18px;
  }
  .service-left_form, [id^="box-newsletter"]{
    padding: 40px 15px;
  }
  .product-view_grid .col-xs-6:nth-child(odd){
    clear:both;
  }
  /* information */
  .bg_breadcrumb .text-module{
    display: none;
  }
  .contact-form .inner-box{
    padding: 15px;
  }
  .contact-form-image-box{
    display: none;
  }
  .about-area{
    padding: 50px 0;
  }
  .contact-info-area{
    padding: 0;
  }
  .item_service-slogan{
    margin-bottom: 30px;
  }
  .single-blog-colum-style1{
    padding-left: 0;
  }
  .single-blog-colum-style1:before{
    display: none;
  }
  .footer-social-links .sociallinks-style-one{
    float: unset;
  }
  .sidenav{
    background-color: var(--main_color);
  }
  ul.tabs li{
    display: block;
    padding: 0;
    text-align: left;
    padding: 5px 30px
  }
  .highlights-area{
    z-index: unset;
  }
}
/**Start Product_category**/
.container-fluid{
  max-width: 1640px;
}

.product-category .item .category-item{
  height: 192px;
  border-radius: 30px;
  position: relative;
  overflow:hidden;
  margin-bottom: 45px;
}
.product-category .item .category-item h6{
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}
.product-category .item .category-item:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34,51,40,.4);
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition: all .3s;
  pointer-events: none;
  z-index: 1;
}
.product-category .item .category-item:hover:before {
  background: rgba(4,4,4,.4);
}

.product-category .item .category-item img {
  min-height: 315px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  vertical-align: middle;
  height: auto;
  box-sizing: border-box;
}
.product-booking .heading span {
  width: 492px;
  height: 73px;
}
.product-booking .heading span {
  display: inline-block;
  background: url(../../image/icon-before.jpg) no-repeat;
  background-size: 100%;
}
.product-booking .heading {
  font-size: 55px;
  margin-bottom: 40px;
}
.product-booking .heading *{
  font-family: 'UTM A&S Signwriter'!important;
}
.product-booking .heading {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center!important;
  color: #fff;
  text-transform: capitalize;
  font-weight:400
}
/**End Product_category**/
.product-detail-related .heading{
  text-align: left!important;
  color: #fff;
  text-transform: capitalize;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media (min-width: 960px)
{
  .product-detail-related .heading span {
    width: 400px;
    height: 60px;
    display: inline-block;
    text-align: center;
    padding: 0px 50px;
  }
}
.product-detail-related .heading span {
  display: inline-block;
  background: url(../../image/icon-before.jpg) no-repeat;
  background-size: 100%;
}
.product-booking {
  padding: 60px 0;
}
/**Start Product sales **/
.product-booking .heading{
  margin-bottom: 55px;
}
.product_special {
  background: #fff;
  position: relative;
  z-index: 1
}
.product_special .wrap_item {
  margin-bottom: 20px
}

.product_special .item {
  position: relative
}

.product_special .wrap_img {
  height: 315px;
  position: relative
}

.product_special .wrap_countdown, .product_special .rating {
  text-align: center
}

.product_special .wrap_img img {
  min-height: 315px;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%)
}

.product_special .price {
  position: absolute;
  right: -1px;
  top: 50px;
  z-index: 1;
  background: #fff;
  color: #f73923;
  padding: 25px 0 25px 30px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 40px 0 0 40px
}

.product_special .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30%;
  z-index: 1;
  width: 90%;
  padding: 20px;
  background: #223328;
  border-radius: 30px;
  padding-bottom: 0;
  margin: 0 auto;
}
.product_special .countdownHolder {
  margin: 40px 0 10px;
  padding-bottom: 10px;
  text-align: center;
  display: inline-block;
}
.product_special .body a {
  color: #fff
}

.product_special .title {
  font-size: 22px;
  font-weight: 600;
  text-align: center
}

.product_special .rating {
  color: #fd450f
}
/**End Product sales **/
.product-booking *{
  margin:0 auto;
}
.product-booking .caption {
  font-size: 17px;
  font-weight: 500;
  max-width: 900px;
  text-align: center;
  line-height: 1.3;
  color: #4d5a6b;
  margin-bottom: 30px;
  position: relative;
}
/**Productcusstom**/
.product-booking .wrap_img{
  overflow: hidden;
}
.service-booking:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34,51,40,.75);
}
.service-booking>div {
  position: relative;
  z-index: 1;
}
.service-booking .caption {
  text-align: left;
  margin-bottom: 90px;
}
.section.contrast .caption {
  color: #fff;
}
.service-booking .heading {
  font-family: 'UTM A&S Signwriter'!important;
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  font-weight:400;
}
.service-booking .caption {
  font-size: 17px;
  font-weight: 500;
  max-width: 900px;
  text-align: center;
  line-height: 1.3;
  color: #4d5a6b;
  position: relative;
  text-align:left;
  margin-bottom: 90px;
}
.service-booking *{
  margin:0 auto;
}
.product_category_custom .caption {
  color: #fff;
}
.product_category_custom .item {
  position: relative;
  height: 100%;
  padding: 10px;
  background: #fff;
}
.product_category_custom .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px dashed #999;
  position: relative;
}
.product_category_custom .title a {
  color: #f73923;
}
.product_category_custom .booking_bt {
  background: #e5e5e5;
  color: #333;
  position: relative;
  cursor: pointer;
  padding: 18px 40px 15px;
  font-weight: 500;
  display: block;
  text-align: center;
  font-size: 16px;
  border-radius: 10px;
}
.product_category_custom .wrap_img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product_category_custom .wrap_img img {
  min-height: 240px;
  -o-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  max-width: 120%;
}
.product_category_custom .wrap_img {
  max-height: 240px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.product_category_custom .transition {
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition: all .3s;
}
.product_category_custom .hot_sale {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 150px;
  height: 41px;
  line-height: 41px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
.product_category_custom .booking_bt:hover {
  background: #f73923;
  color: #fff;
}
.product_category_custom .price {
  color: #f73923;
  font-size: 18px;
  margin: 15px 0 15px 0!important;
}
.product_category_custom .meta p{
  margin: 15px 0 15px 0!important;
}
.product_category_custom .meta i{
  color: #f73923;
  font-size: 18px;
}
.news-carousel{
  margin-bottom:50px;
}
.slick-next,
.slick-prev{
  bottom:-35px!important;
  top:unset!important;

}
.slick-next{
  left:50.5%!important;
  right:unset!important;
}
.slick-prev{
  right:50.5%!important;
  left:unset!important;
}
.news-carousel .fa-angle-right:before,
.news-carousel .fa-angle-left:before{
  color:#000
}
.news-carousel .slick-prev:before, .news-carousel .slick-next:before{
  font-family: FontAwesome!important;
  line-height:0;
}
.item-news{
  margin:10px;
}
.booking_news .info-item_news .title-item a{
  color:#000;
}
/***/
.custom_default_1.item {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
  padding: 10px;
  background: #fff;
  margin-bottom: 20px;
}
.custom_default_1 .caption {
  color: #fff;
}
.custom_default_1 .item {
  position: relative;
  height: 100%;
  padding: 10px;
  background: #fff;
}
.custom_default_1 .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding: 15px 15px 15px 15px;
  margin: 0 0 15px;
  border-bottom: 1px dashed #999;
  position: relative;
}
.custom_default_1 .title a {
  color: #f73923;
}
.custom_default_1 .meta{
  padding: 0 15px;
}
.custom_default_1 .booking_bt {
  background: #e5e5e5;
  color: #333;
  position: relative;
  cursor: pointer;
  padding: 18px 40px 15px;
  font-weight: 500;
  display: block;
  text-align: center;
  font-size: 16px;
  border-radius: 10px;
}
.custom_default_1 .wrap_img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.custom_default_1 .wrap_img img {
  min-height: 240px;
  -o-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  max-width: 120%;
}
.custom_default_1 .wrap_img {
  max-height: 240px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.custom_default_1 .transition {
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition: all .3s;
}
.custom_default_1 .hot_sale {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 150px;
  height: 41px;
  line-height: 41px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
.custom_default_1 .booking_bt:hover {
  background: #f73923;
  color: #fff;
}
.custom_default_1 .price {
  color: #f73923;
  font-size: 18px;
  margin: 15px 0 15px 0!important;
}
.custom_default_1 .meta p{
  margin: 15px 0 15px 0!important;
}
.custom_default_1 .meta i{
  color: #f73923;
  font-size: 18px;
}
/***New***/
.booking_news{
  padding:50px 0;
}
.booking_news .heading {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 55px;
  text-align: center!important;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
}

.booking_news .heading span {
  display: inline-block;
  background: url(../../image/icon-before.jpg) no-repeat;
  background-size: 100%;
}
.booking_news .heading span {
  width: 492px;
  height: 73px;
}
.booking_news .heading * {
  font-family: 'UTM A&S Signwriter'!important;
}
.booking_news *{
  margin:0 auto;
}
.booking_news .caption {
  font-size: 17px;
  font-weight: 500;
  max-width: 900px;
  text-align: center;
  line-height: 1.3;
  color: #4d5a6b;
  margin-bottom: 30px;
  position: relative;
}
/**Endnew**/
.product-detail-title {
  color: #ff0000;
  text-transform: uppercase;
  font-weight: bold;
}

.title_module_.heading h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 26px;
  color: #000;
  font-weight: bold;
  text-transform: inherit;
}

.title_module_.heading h3 a {
  text-transform: initial;
}

.product-mini-item {
  border: 1px solid #ededed;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
}

.product-mini-item .product-info h3 a {
  font-size: 16px;
}

.product-mini-item .product-price {
  color: #f73923;
  font-size: 16px;
}

@media (min-width: 960px) {
  #header_cover {
    padding: 70px 0 150px;
  }

  .custom_default_1.item {
    min-height: 550px;
  }
}

.slick-initialized .slick-slide {
  padding: 10px;
}

/***/
@media (min-width: 768px) {
  .uk-width-large-2-5, .uk-width-large-4-10 {
    width: 40%;
  }

  #tour_info .col-2 {
    display: block;
  }

  .uk-width-large-3-10 {
    width: 30%;
  }

  .uk-width-large-3-10 {
    width: 30%;
  }

  .uk-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #tour_info .wrap_img.sec_img img {
    max-width: 150%;
    min-height: 220px;
  }

  #tour_info .wrap_img.pri_img {
    height: 465px;
    border-radius: 20px;
    margin-bottom: 25px;
  }
}

#tour_info {
  background: #223428;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  margin-top: -90px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative
}

#tour_info table {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  border: none;
}

#tour_info .col-2 {
  display: none
}

#tour_info .title {
  color: #fff;
  margin-top: 10px
}

#tour_info .wrap_img {
  border-radius: 10px;
  margin-bottom: 15px
}

#tour_info img {
}

#tour_info .meta {
  font-size: 19px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px
}

#tour_info .meta i {
  margin-right: 10px;
  color: #fff
}

#tour_info .meta .price {
  margin-top: 20px;
  font-size: 22px
}

#tour_info .booking_bt {
  background: #f73923;
  color: #fff;
  padding: 18px 40px;
  font-weight: 700;
  display: block;
  text-align: center;
  font-size: 22px;
  border-radius: 30px
}

#tour_info .rating {
  color: #f36621
}


#tour_info img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

#tour_info table {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

#tour_info table * {
  border: none;
}

#tour_info {
  padding: 50px 50px 20px 50px;
}

#tour_info .meta:after {
  display: none;
}

img.wp-smiley, img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 .07em !important;
  vertical-align: -.1em !important;
  background: none !important;
  padding: 0 !important;
}

#tour_info .booking_bt {
  width: 100%;
  padding: 10px 40px;
  font-size: 18px;
}

.modal-dialog {
  width: 1030px;
}

button.btn.btn-v3.btn-zozo.btn-hover.pull-left {
  background: #f73923;
  color: #fff;
  border: none;
  padding: 5px 45px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 100%;
  border-radius: 30px;
}

@media (min-width: 768px) {
  #register_popup {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  [class^='product-product'] .modal-dialog {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }
}

.contact-cs {
  padding: 50px 0;
}

#contact_info {
  border-right: 1px solid #ededed;

}

.wrap_pd * {
  color: #000;
}

h2.h-title {
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: 800;
  color: #222;
}

#contact_info .txt1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.breadcrumb-area.style2 {
  background: #fdc7c0;
}

.express-new-new h1.heading-title {
  background-color: #f4f4f4;
  border: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 25px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.right_content_detail {
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #d4d4d4;
  padding: 8px;
}

.row.select {
  margin-bottom: 20px;
}

#booking_panel .uk-modal-dialog {
}

#booking_panel .uk-close:after {
  content: ""
}

#register_popup {
  background: #fff;
  color: #555;
  padding: 20px 20px 10px;
  z-index: 12;
  border-radius: 30px;
  font-weight: 500
}

#register_popup.middle {
  bottom: 40%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%)
}

#register_popup .wrap_img {
  border-radius: 20px;
  margin-bottom: 20px
}

#register_popup .wrap_heading {
  border-top: 2px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
  position: relative
}

#register_popup .heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  display: inline-block
}

#register_popup .desc {
  font-style: italic;
  margin-bottom: 15px
}

#register_popup .form-row {
  margin-bottom: 15px
}

#register_popup .title {
  color: #f73923;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0
}

#register_popup .rating {
  color: #f26422;
  font-size: 17px
}

#register_popup .total {
  color: #f73923;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 4px 25px
}

#register_popup .price {
  color: #f73923;
  font-size: 18px
}

#register_form {
  position: relative
}

#register_form input {
  height: 30px;
  width: 100%;
  color: #555;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 12px
}

#register_form #num_child {
  padding-left: 200px
}

#register_form .uk-form-icon-flip > [class*="uk-icon-"] {
  right: 13px
}

#register_form .wrap_item {
  margin-bottom: 15px
}

#register_form label {
  font-weight: 400;
  background: none !important
}

#register_form .label {
  font-style: italic;
  margin-bottom: 15px
}

#register_form #submit[disabled="disabled"] {
  background: #999 !important;
  opacity: 1 !important;
  color: #666;
  cursor: default
}

#register_form .contact_bt {
  background: #f73923;
  color: #fff;
  border: none;
  padding: 5px 45px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 100%;
  border-radius: 30px
}

#register_form .contact_bt:hover {
  background: #333
}

#register_form .wrap_input {
  position: relative
}

#register_form select {
  padding-left: 10px;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  background: none;
  height: 30px;
  color: #999;
  border: none;
  text-indent: -2px;
  font-size: 12px
}

#register_form select:hover {
  cursor: pointer
}

#register_form .select_wrap {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 190px;
  border-right: 1px solid #ddd
}

#register_form .select_wrap:after {
  position: absolute;
  content: "\f107";
  right: 10px;
  top: 1px;
  bottom: 1px;
  font-size: 18px;
  color: #777;
  font-family: FontAwesome;
  line-height: 30px;
  width: 20px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  background: #fff
}

#register_form option {
  padding: 5px 20px;
  background: #fff;
  color: #333
}

#depar_local_wrap .select_wrap {
  width: 100%;
  border: none
}

@media (min-width: 480px) {
  #child_age_wrap .select_wrap {
    width: 130px
  }

  #register_form #num_child {
    padding-left: 140px
  }
}

@media (min-width: 768px) {
  #booking_panel .uk-modal-dialog {
    width: 700px
  }

  #register_popup {
    padding: 40px
  }

  #register_popup .wrap_heading {
    padding-top: 30px;
    margin-top: 30px
  }

  #register_popup .heading {
    font-size: 24px;
    text-transform: uppercase;
    padding: 10px 0;
    font-weight: 900
  }

  #register_popup .d-cell-lg {
    margin-bottom: 15px
  }

  #register_form input {
    height: 58px;
    border-radius: 40px;
    font-size: 16px;
    padding: 8px 20px
  }

  #register_form select {
    font-size: 16px;
    padding-left: 20px
  }

  #register_popup .total {
    padding: 18px 25px
  }

  #register_form .contact_bt {
    padding: 15px 45px
  }

  #child_age_wrap .select_wrap {
    width: 200px
  }

  #register_form #num_child {
    padding-left: 210px
  }

  #register_form {
    min-height: auto
  }

  #register_form .contact_bt {
    font-size: 20px
  }
}

@media (min-width: 960px) {
  #booking_panel .uk-modal-dialog {
    width: 900px
  }
}

@media (min-width: 1220px) {
  #booking_panel .uk-modal-dialog {
    width: 1030px
  }

  #register_popup .title {
    font-size: 22px
  }

  #register_popup .wrap_img {
    max-height: 240px
  }

  #register_popup .wrap_img img {
    min-height: 240px
  }
}

@media (min-width: 1900px) {
  #booking_panel .uk-modal-dialog {
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
  }
}
.tab-content {
  opacity: unset!important;
  visibility: unset!important;
  height: unset!important;
  overflow: unset!important;
}
.nav-tabs>li>a{
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  background: #2bb9eb;
  border-radius: 0;
  margin-right: 11px;
  text-align: center;
  width: auto;
  border: 1px solid #2bb9eb;
}
.nav-tabs>li.active>a{
  background: #ff7f00!important;
  color: #FFF!important;
  border: 1px solid #ff7f00!important;
}
.nav-tabs {
  margin-top:15px;
  border-bottom:0!important;
}
.tab-content {
  padding: 30px 0;
  font-size: 15px;
  text-align: justify;
}
.tab-content img {
  border-radius: 10px;
  max-width: 100%;
  margin: 5px 0;
}
.tit_sp_left {
  font-size: 12px;
  color: #fefeff;
  position: relative;
  background: #005999 ;
  border-bottom: 4px solid #b2b2b2;
  text-transform: uppercase;
  line-height: 20px;
  padding: 6px 5px 6px 13px;
  margin: 0;
}
.tit_sp_left:after, .tit_sp_left:before {
  top: 100%;
  left: 50px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.tit_sp_left:before {
  border-color: rgba(194,225,245,0);
  border-top-color: #b2b2b2;
  border-width: 13px;
  margin-left: -4px;
}
.txt_sp_leftmain {
  font-size: 18px;
  color: #005a9b;
}
.number_sp_leftmain {
  font-size: 24px;
  font-weight: 700;
  color: #dc0303;
}
.list_box_sp_left li {
  overflow: hidden;
  border-bottom: 1px dotted #bdbabd;
  padding: 10px 0 12px 0;
}
.list_box_sp_left a {
  display: inline-block;
  margin: 0 5px;
  border-radius: 3px;
  text-align: center;
}
.sp_left {
  width: 100%;
  padding: 20px;
  margin: auto;
}
.bd_sp_left {
  overflow: hidden;
  border: 1px solid #cccce6;
  padding: 13px 0 10px 0;
}
.list_box_sp_left *{
  color:#000;
}
.wrap_pd{
  padding:15px 0;
}
.list_banner_left img{
  margin-top:15px;
}
.single-creative .featured {
  position: relative;
  height: 663px;
}
.single-creative .featured .image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.single-creative .parallax .wp-post-image {
  visibility: hidden;
}
.single-creative .featured .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
.wp-post-image, .post-content img, .gallery-slider img {
  will-change: opacity;
  transition: opacity 0.3s ease-in;
}
.single-creative .featured .post-meta {
  font-size: 11px;
}
.single-creative .featured .the-post-meta {
  position: absolute;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 40px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
.single-creative .featured .category:last-child {
  margin-right: 0;
}
.single-creative .featured .category {
  display: inline-block;
  padding: 0 8px;
  margin-right: 5px;
  background: #000;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.06em;
}
.single-creative .featured .post-title {
  margin-top: 25px;
  margin-bottom: 23px;
  color: inherit;
  font-size: 46px;
  line-height: 1.1;
}
.single-creative .featured:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.3);
  pointer-events: none;
}

.service_about_us_new .widget-title {
  margin-bottom: 35px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  background: #000;
}
.widget-about .author-image {
  margin-bottom: 18px;
}
.widget-about .author-image img {
  margin: 0 auto;
  display: block;
  max-width:100%;
}
.widget-about .about-text {
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #505050;
}
.list_banner_left img {
  margin-bottom: 15px;
}
#bunyad-widget-about-2{
  border:1px solid #ebebeb;
}
.aside-item.aside-blog-promotion{
  border:1px solid #ebebeb;
  padding:0;
}
.aside-item .heading .title-head{
  width:100%;
}
.aside-item .heading .title-head{
  margin-bottom: 35px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  background: #000;
  padding-bottom:0;
}
.aside-item.aside-blog-promotion .heading .title-head a{
  color: #fff;
  background: #000;
}
.aside-item.aside-blog-promotion .blogs-promotion-small .blog-item-name a {
  font-size:15px;
  font-weight:bold;
}
.fashion-slider .slick-track {
  -webkit-perspective: 2000;
}
.fashion-slider .item {
  position: relative;
  height: 625px;
  min-height: 400px;
}
.fashion-slider .image-link {
  display: block;
  height: 100%;
}
.fashion-slider .wp-post-image {
  width: 100%;
  max-width: none;
  max-width: initial;
  height: inherit;
  will-change: initial;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.fashion-slider .wp-post-image:hover {
  opacity: 1;
}
.fashion-slider .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.fashion-slider .overlay {
  max-width: 680px;
  min-width: 50%;
  opacity: 0;
  will-change: opacity;
  pointer-events: auto;
  padding: 35px 45px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}
.fashion-slider .active .overlay {
  opacity: 1;
  animation: 0.8s fade-in-up-lg, 0.9s fade-in;
  animation-timing-function: cubic-bezier(0.32, 0.29, 0, 0.96);
  animation-fill-mode: both;
  animation-delay: 0.75s;
}
.fashion-slider .post-meta {
  margin-bottom: 0;
}
.fashion-slider .post-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 33px;
  line-height: 1.3;
}
.fashion-slider .slick-arrow {
  opacity: 0;
  visibility: hidden;
  transition-property: all;
}
.fashion-slider .prev-arrow {
  left: 36px;
}
.fashion-slider .next-arrow {
  right: 36px;
}
.fashion-slider .slides:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
} .main-pagination {
    margin-top: 100px;
    font-family: Poppins, Arial, sans-serif;
  }
.fashion-slider .slick-active .overlay {
  opacity: 1;
  animation: 0.8s fade-in-up-lg, 0.9s fade-in;
  animation-timing-function: cubic-bezier(0.32, 0.29, 0, 0.96);
  animation-fill-mode: both;
  animation-delay: 0.75s;
}
.fashion-slider:hover .slick-arrow{
  opacity: 1;
  visibility: visible;
}
button.slick-prev.slick-arrow:before{
  color: #F62D3E;
}

.fashion-slider .slick-prev{
  position: absolute!important;
  z-index: 100!important;
  top: 50%!important;
  left: 10px!important;
  margin-top: -16px!important;
  background: transparent!important;
  border: 1px solid #fff!important;
  color: #fff!important;
  font-size: 18px!important;
  height: 32px!important;
  width: 30px!important;
  line-height: 30px!important;
  text-align: center!important;
  box-sizing: border-box!important;
  transition-property: color, background;
}
.fashion-slider .slick-next{
  position: absolute!important;
  z-index: 100!important;
  top: 50%!important;
  right: 10px!important;
  left:unset!important;
  margin-top: -16px!important;
  background: transparent!important;
  border: 1px solid #fff!important;
  color: #fff!important;
  font-size: 18px!important;
  height: 32px!important;
  width: 30px!important;
  line-height: 30px!important;
  text-align: center!important;
  box-sizing: border-box!important;
  transition-property: color, background;
}
.fashion-slider i.slick-prev:before,
.fashion-slider i.slick-next:before{
  font-family:'FontAwesome'!important;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: transparent;
    border-color: #006600;
  color:#000
}
.pagination li span,
.pagination li a{
      display: inline-block;
    min-width: 16px;
    padding: 3px 5px;
    line-height: 20px;
    text-decoration: none;
    box-sizing: content-box;
    text-align: center;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 0;
  
      background: 0;
      padding: 0;
    width: 45px;
    font-size: 18px;
    border-radius: 50%;
    height: 45px;
    line-height: 47px;
  
      background: transparent;
    border: 3px solid #333;
    color: #333;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
     border-top-left-radius: 50%!important;
     border-bottom-left-radius: 50%!important; 
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 50%!important;
    border-bottom-right-radius: 50%!important;
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color:  #006600;
}

/**StartProduct**/
.custom_default_1 .body,
.custom_default_1 .wrap_img{
  background: rgba(0,0,0,.02);
}
[class^='product-product'].btn:before{
  display:none
}
[class^='product-product'] a[aria-controls^='table-of-content'] {
  display:none;
}
[class^='product-product'] #table-of-content{
  border:none!important;
  background:0!important;
  border-bottom:1px solid #ccc!important;
  margin-bottom:30px;
}
[class^='product-product'] #table-of-content.sticky{
  background:#fff!Important;
  z-index:99999;
  max-width:100%;
  box-shadow:unset!important;

}
[class^='product-product'] #table-of-content ul{
  display:flex;
}
[class^='product-product'] #table-of-content ul li{
  font-size: 16px;
  font-weight: 600;
  padding: 28px 25px 28px;
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
[class^='product-product'] #table-of-content ul li a,
.news-new-default #table-of-content ul li a{
  color: #000;
}
[class^='product-product'] .panel-table-of-content{
  border: none!important;
  border-radius: 0!important;
  background: none!important;
  color: #000000 !important;
  overflow: hidden;
}
/**EndProduct**/
/*new deffault*/
.news-news #table-of-content ul {
    margin-left: 50px;
}
.news-news #table-of-content ul li{
  padding:5px 0;
}
.news-news #table-of-content ul li a{
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 14px;
  color: #0084F4!important;
}
/*
.news-new-default .panel-table-of-content{
  border: none!important;
  border-radius: 0!important;
  background: none!important;
  color: #000000 !important;
  overflow: hidden;
}
.news-new-default .panel-table-of-content{
  border: none!important;
  background: none!important;;
  color: #000000 !important;
}
.news-new-default #table-of-content{
  border: none!important;
  border-bottom:1px solid #ddd!important;
}
.news-new-default [aria-controls="table-of-content"]{
  display:none;
}
#table-of-content ul li {
  font-size: 16px;
  font-weight: 600;
  padding: 28px 25px 28px;
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
.news-new-default .panel-table-of-content .sticky {
  background: #fff;
  box-shadow: none!important;
  z-index:9999;
}*/
/*new deffault*/
.main-menu.style2{
  width:100%;
}
.main-menu.style2 .navigation{
  align-items:center;
  display:flex;
  justify-content: center;
}
.main-menu.style2 .navigation > li > a{
  padding:0
}