.destination-masonry-filters .destination-hide{
  display: none;
}
.dt-grid:after {
  content: "";
  display: block;
  clear: both;
}

.destination-sli-cls.icon-2 .splide__arrow--prev {
  float: left;
}
.destination-sli-cls.icon-2 .splide__arrow--next {
  float: right;
}
.destination-sli-cls.icon-3 .splide__arrows {
  display: table;
  width: 100%;
  bottom: 0;
  position: absolute;
}
.destination-sli-cls.icon-2 .splide__arrows .splide__arrow--prev {
  left: 0;
}

.destination-sli-cls.icon-2 .splide__arrows .splide__arrow--next {
  right: 0;
}
.destination-sli-cls.icon-2 .splide__arrows .splide__arrow--prev,
.destination-sli-cls.icon-2 .splide__arrows .splide__arrow--next {
  display: table; 
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.destination-sli-cls.icon-1 .splide__arrows .splide__arrow--next,
.destination-sli-cls.icon-1 .splide__arrows .splide__arrow--prev { 
  top: inherit;
  transform: translateY(0);
  border: 0;
  bottom: -40px;
}
.destination-sli-cls .splide__pagination__page.is-active {
  background-color: #fcb100;
}
.destination-sli-cls .splide__arrow svg {
  fill: #000;
  height: 14px;
  width: 14px;
}
.destination-sli-cls.icon-1 .splide__arrows .splide__arrow--prev {
  left: 45%;
}
.destination-sli-cls.icon-1 .splide__arrows .splide__arrow--next {
  right: 45%;
}
/* ---- .grid-item ---- */
.destination-com-cls .grid-item {
  margin: 0px;
  
}

.dt-nav ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.dt-nav ul li {
  display: inline-block;
  margin-right: 10px; 
  cursor: pointer;
  color: #333;
  padding: 10px !important;
  font-weight: 600;
}
.dt-nav ul li.active,
.dt-nav ul li:hover {
  color: #ff555c;
} 

/* Image hover */
.destination-com-cls .hover-img-1 img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-1 img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.destination-com-cls .com-filter-mdl-com {
  position: relative;
}
.destination-com-cls .hover-img-2 img {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-2 img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Slide */
.destination-com-cls .hover-img-3 img {
  margin-left: 30px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-3 img {
  margin-left: 0;
}

/* Rotate */
.destination-com-cls .hover-img-4 img {
  -webkit-transform: rotate(15deg) scale(1.4);
  transform: rotate(15deg) scale(1.4);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-4 img {
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
}

/* Blur */
.destination-com-cls .hover-img-10 img {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-10 img {
  -webkit-filter: blur(0);
  filter: blur(0);
}
/* Sepia */
.destination-com-cls .hover-img-9 img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-9 img {
  -webkit-filter: sepia(0);
  filter: sepia(0);
}
/* Opacity #2 */
.destination-com-cls .hover-img-5 {
  background: #1abc9c;
}
.destination-com-cls .hover-img-5 img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-5 img {
  opacity: .5;
}

/* Flashing */
.destination-com-cls .com-filter-mdl-com:hover .hover-img-6 img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/* Shine */
.destination-com-cls .hover-img-7 {
  position: relative;
}
body .destination-com-cls .hover-img-7::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-7::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Circle */
.destination-com-cls .hover-img-8 {
  position: relative;
}
body .destination-com-cls .hover-img-8::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.destination-com-cls .com-filter-mdl-com:hover .hover-img-8::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/* Fullwidth */

.res-full-width .bg-image-property{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.res-full-width .column4 .span4{
  width: 33.33%;
  margin-left: 0 !important;
  margin-top: 0;
}
.res-full-width .column3 .span3{
  width: 25%;
  margin-left: 0 !important;
  margin-top: 0;
}
.res-full-width .column6 .span6{
  width: 50%;
  margin-left: 0 !important;
  margin-top: 0;
}
.res-full-width .column12 .span12{
  width: 100%;
  margin-left: 0 !important;
  margin-top: 0;
}
.res-full-width .split-slider .item {
  width: 100%;
}
.res-full-width .content-group{
  padding: 150px 20px;
}
.res-full-width .owl-item:nth-child(odd) .content-group,
.res-full-width .column12 .span12:nth-child(odd) .content-group,
.res-full-width .column6 .span6:nth-child(odd) .content-group,
.res-full-width .column4 .span4:nth-child(odd) .content-group,
.res-full-width .column3 .span3:nth-child(odd) .content-group{
  background-color: rgba(0, 0, 0, 0.8);
}
.res-full-width .owl-item:nth-child(even) .content-group,
.res-full-width .column12 .span12:nth-child(even) .content-group,
.res-full-width .column6 .span6:nth-child(even) .content-group,
.res-full-width .column4 .span4:nth-child(even) .content-group,
.res-full-width .column3 .span3:nth-child(even) .content-group{
  background-color: rgba(177,151,119, 0.8);
}
.res-full-width .heading h4 a{
  color: #ffffff !important;
  margin-bottom: 10px;
}
.res-full-width .content p{
  color: #f5f5f5;
}


/* creative slider 1 */
.creative-slider-1 .background-image-column {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.creative-slider-2 .splide__slide:nth-child(odd) .background-image-column {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.creative-slider-2 .splide__slide:nth-child(even) .background-image-column {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 0;
  margin-right: 20px;
}
.creative-slider-1 .features-prop-right-content {
  padding-top: 20px;
}
.creative-slider-1 p.features-prop-right-price {
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 1px;
}
.creative-slider-1 .float-right {
  float: right !important; 
  padding: 130px 15px;
  margin-left: 0;
}

.creative-slider-2 .float-right { 
  padding: 80px 15px;
  margin-top: 0 !important;
}

.creative-slider-2 .splide__slide:nth-child(odd) .span6:first-child { 
  position: relative;
  padding: 80px 15px;
}

.creative-slider-2 .splide__slide:nth-child(even) .span6:first-child { 
  float: right;
  position: relative;
  padding: 80px 15px;
  margin-right: 0;
}
.creative-slider-2 .owl-dots .owl-dot span {
  padding: 0;
}
.creative-slider-1 .sale-border1 {
  width: 2px;
  background-color: #f79206;
  position: absolute;
  left: 0;
  height: 200px;
  top: 0;
  right: 40px;
  margin: 0 auto;
}
.creative-slider-1 .sale-border {
  width: 33px;
  background-color: #222;
  padding: 10px 14px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 200px;
  right: 40px;
  margin: 0 auto;
}
.creative-slider-1 .sale-border h6 {
  word-break: break-all;
  text-align: center;
  line-height: 24px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: -1px;
}
.creative-slider-1 .features-prop-right-content h5 {
  color: #ffffff;
}
.creative-slider-1 .features-prop-right-content p {
  color: #aaaaaa;
}
.creative-slider-1 .features-prop-right-para {
  padding: 10px 0;
}
.creative-slider-1 .homeicon.content-ul {
  padding-top: 20px;
}
.creative-slider-1 .homeicon.featuresicon.content-ul li {
  color: #aaaaaa;
}
.creative-slider-1 .homeicon.content-ul li {
  color: #ffffff;
}
.creative-slider-1 .homeicon.content-ul li {
  display: inline-block;
  padding-right: 25px;
}
.creative-slider-1 .homeicon.content-ul li svg {
  padding-right: 15px;
  width: 30px;
  height: 30px;
  fill: #cccccc;
  vertical-align: top;
}

.creative-slider-1 .heading {
  position: relative;
  background: #fff;
  display: table;
  margin-bottom: 30px;
  margin-left: 10px;
}
.creative-slider-1 .heading::before {
  position: absolute;
  left: -11px;
  top: -6px;
  display: inline-block;
  content: " ";
  width: 120px;
  height: 64px;
  background: none;
  border: 2px solid #444444;
  z-index: -2;
}
.creative-slider-1 .two-col-bg .owl-nav .owl-next span,
.creative-slider-1 .two-col-bg .owl-nav .owl-prev span{
  display: block;
  width: auto;
  height: auto;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 50%;
  background: #f79206 !important;
  padding:5px 15px;
}
.creative-slider-1 .title-dark .heading::before {
  position: absolute;
  left: -11px;
  top: -6px;
  display: inline-block;
  content: " ";
  width: 120px;
  height: 64px;
  background: none;
  border: 2px solid #f2f2f2;
  z-index: -2;
}
.creative-slider-1 .title-dark .heading {
  background: #333333;
}
.creative-slider-1 .title-dark .heading {
  color: #ffffff;
}

.creative-slider-1 .owl-dots .owl-dot:hover span{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
}
.creative-slider-1 .theme-intro-content {
  color: #f79206;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.creative-slider-1 .title-main {
  position: relative;
  z-index: 1;
}
.creative-slider-1 .two-col-bg .owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  display: table;
  margin: 0 auto;
  top: inherit;
  transform: translateY(0);
}

.creative-slider-1 .two-col-bg .item {
  width: 100%;
} 
.creative-slider-1 .section-width .heading {
  margin: 0 auto;
}
.creative-slider-1 .owl-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.creative-slider-1 .owl-dots .owl-dot {
  display: block;
}
.creative-slider-2 .header-slider-btn ul,
.creative-slider-1 .header-slider-btn ul {
  display: flex;
  align-items: center;
}
.creative-slider-2 .header-slider-btn ul .padding-right15,
.creative-slider-1 .header-slider-btn ul .padding-right15 {
  padding-right: 15px;
}
.creative-slider-2 .header-slider-btn ul li,
.creative-slider-1 .header-slider-btn ul li {
  list-style: none;
}
.creative-slider-2 .owl-carousel button.owl-dot {
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 5px 10px;
  background: inherit;

}
.creative-slider-2 .owl-carousel button.owl-dot.active {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
}
.destination-filter-content-p p,
.destination-filter-head h4 {
  color: #fff;
}
.creative-slider-2 .owl-carousel .owl-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.creative-slider-2 .owl-carousel .owl-nav {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: auto;
  transform: translateY(0);
  width: auto;
}
.creative-slider-2 .owl-nav .owl-next span, 
.creative-slider-2 .owl-nav .owl-prev span {
  background: inherit;
  padding: 5px 10px;
}
.creative-slider-2 .owl-nav .owl-prev {
  float: none;
  position: relative;
}
.creative-slider-2 .owl-nav .owl-next {
  float: none;
  position: relative;
}


/* Tile model */

.dt--container .tile-model-1 .tile-col-width:nth-child(2) {
  margin-top: 0;
  top: 0 !important;
  right: 0 !important;
  left: inherit !important;
}
.dt--container .tile-model-1 .tile-col-width:nth-child(3) {
  margin-top: 0;
  top: 260px !important;
  right: 0 !important;
  left: inherit !important;
}
.dt--container .tile-model-1 .tile-col-width {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.dt--container .tile-model-1 .tile-col-width {
  width: 32.30%;
  *width: 32%; 
}
.dt--container .tile-model-1 .tile-col-width:first-child img {
  height: 505px !important;
  width: 100%;
} 
.dt--container .tile-model-1 .tile-col-width img {
  height: 242px !important;
  width: 100%;
}
.dt--container .tile-model-2 .tile-col-width img,
.dt--container .tile-model-3 .tile-col-width img,
.dt--container .tile-model-5 .tile-col-width img,
.dt--container .tile-model-4 .tile-col-width img {
  height: 300px !important;
  width: 100%;
}
.dt--container .tile-model-1 .tile-col-width:nth-child(4n) {
  margin-left: 0;
  clear: both;
}
.dt--container .tile-model-2 .tile-col-width:nth-child(2),
.dt--container .tile-model-2 .tile-col-width:first-child {
  width: 49.15%;
  *width: 49.15%;
  margin-left:5px;
  margin-top: 0;
} 
.dt--container .tile-model-2 .tile-col-width:first-child {
  margin-left: 0;
}
.dt--container .tile-model-2 .tile-col-width {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
} 
.dt--container .tile-model-2 .tile-col-width {
  width: 32.624%;
  *width: 32.624%; 
}

.dt--container .tile-model-2 .tile-col-width:nth-child(3n+0) {
  margin-left: 0;
}  
.dt--container .tile-model-3 .tile-col-width:nth-child(2) {
  width: 23.076923077%;
  *width: 23.076923077%;
  margin-top: 0;
}
.dt--container .tile-model-3 .tile-col-width:first-child {
  width: 48.717948718%;
  *width: 48.717948718%;
  margin-top: 0;
}
.dt--container .tile-model-3 .tile-col-width:first-child img,
.dt--container .tile-model-3 .tile-col-width:nth-child(2) img {
  height: 450px !important;
}
.dt--container .tile-model-3 .tile-col-width:first-child {
  margin-left: 0;
}
.dt--container .tile-model-3 .tile-col-width {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
} 

.dt--container .tile-model-3 .tile-col-width:nth-child(3),
.dt--container .tile-model-3 .tile-col-width:nth-child(4) {
  width: 23.076923077%;
  margin-left: 15px; 
} 
.dt--container .tile-model-3 .tile-col-width:nth-child(3) {
  margin-top: 0;
}
.dt--container .tile-model-3 .tile-col-width {
  width: 31.624%;
  *width: 31.624%; 
}
.dt--container .tile-model-3 .tile-col-width:nth-child(3n+5) {
  margin-left: 0;
}
.dt--container .tile-model-3 .tile-col-width:nth-child(4) img,
.dt--container .tile-model-3 .tile-col-width:nth-child(3) img {
  height: 215px !important;
  width: 100%;
}


.dt--container .tile-model-4 .tile-col-width:nth-child(4) {
  width: 23.076923077%;
  *width: 23.076923077%; 
}
.dt--container .tile-model-4 .tile-col-width:first-child {
  width: 48.717948718%;
  *width: 48.717948718%;
  margin-top: 0;
}
.dt--container .tile-model-4 .tile-col-width:first-child {
  margin-left: 0;
}
.dt--container .tile-model-4 .tile-col-width {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
} 

.dt--container .tile-model-4 .tile-col-width:nth-child(2),
.dt--container .tile-model-4 .tile-col-width:nth-child(3) {
  width: 25.076923077%;
  margin-left: 15px; 
} 
.dt--container .tile-model-4 .tile-col-width:nth-child(2) {
  margin-top: 0;
}
.dt--container .tile-model-4 .tile-col-width {
  width: 32.30%;
  *width: 32.30%; 
}
.dt--container .tile-model-4 .tile-col-width:nth-child(3n+5) {
  margin-left: 0;
} 
.dt--container .tile-model-5 .tile-col-width:nth-child(4) {
  width: 50%;
  *width: 50%; 
}
.dt--container .tile-model-5 .tile-col-width:first-child {
  width: 48.717948718%;
  *width: 48.717948718%;
  margin-top: 0;
  margin-left: 0;
}  
.dt--container .tile-model-5 .tile-col-width {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
} 

.dt--container .tile-model-5 .tile-col-width:nth-child(2),
.dt--container .tile-model-5 .tile-col-width:nth-child(3) {
  width: 24.35%;
  margin-left: 15px;
  margin-top: 0px;
}  
.dt--container .tile-model-5 .tile-col-width {
  width: 32.48%;
  *width: 32.48%; 
}
.dt--container .tile-model-5 .tile-col-width:nth-child(3n+5) {
  margin-left: 0;
} 
.dt--container .tile-model-5 .tile-col-width:first-child img {
  height: 501px !important;
}
.dt--container .tile-model-5 .tile-col-width:nth-child(2) img,
.dt--container .tile-model-5 .tile-col-width:nth-child(3) img,
.dt--container .tile-model-5 .tile-col-width:nth-child(4) img {
  height: 248px !important;
  width: 100%;
}
.destination-com-cls .img-hov-port {
  overflow: hidden;
}
.splide__slide img {
  width: 100%;
  height: auto;
}
.destination-com-cls .com-filter-mdl-4 .img-filter-mdl-4,
.destination-com-cls .com-filter-mdl-5 .img-filter-mdl-5,
.img-hov-port.img-filter-mdl-1 {
  position: relative;
}
.img-hov-port.img-filter-mdl-3:before,
.destination-com-cls .com-filter-mdl-5 .img-hov-port.img-filter-mdl-5:before,
.destination-com-cls .com-filter-mdl-4 .img-hov-port.img-filter-mdl-4:before,
.img-hov-port.img-filter-mdl-2:before,
.img-hov-port.img-filter-mdl-1:before {
  content: '';
  background: rgba(0,0,0, 0);
  position: absolute;
  width: 100%;
  height: 100%;  
  z-index: 1;
  left: 0;
}
.destination-com-cls .com-filter-mdl-4:hover .img-filter-mdl-4:before {
  background: rgba(0,0,0, .5);
}
@media (max-width: 767px) {
  .destination-com-cls .grid-item { 
    margin-bottom: 10px !important;
    width: 100% !important;
    position: relative !important;
    display: table;
    left: inherit !important;
    top: inherit !important;
    margin-left: 0 !important;
  }
  .destination-com-cls .grid-item:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  .creative-slider-1 .sale-border {
    display: table;
    position: inherit;
    margin: 0;
    margin-top: 20px;
  }
  .creative-slider-1 .sale-border1 {
    display: none;
  }
  .creative-slider-1 .sale-border h6 {
    word-break: inherit;
  }
  .destination-sli-cls.icon-1 .splide__arrows .splide__arrow--next {
    right: 0;
  }
  .destination-sli-cls.icon-1 .splide__arrows .splide__arrow--prev {
    left: 0;
  } 
  .destination-com-cls .creative-slider-1 .float-right,
  .creative-slider-1 .background-image-column {
    float: none !important;
  }
  .destination-split-head {
    display: table !important;
  }
} 
.destination-split-head {
  display: flex;
  align-items: center;
  justify-content: right;
  position: relative;
}
.split-slider.dots-left .splide__pagination {
  left: 0;
  right: inherit;
}
.split-slider.dots-right .splide__pagination {
  right: 0;
  left: inherit;
}
.split-slider.dots-center .splide__pagination {
  left: 0;
  right: 0;
}
.split-slider.dots-var-2 .splide__pagination button {
  height: 30px;
  margin: 0 5px;
  opacity: .7;
  padding: 0;
  transition: transform .2s linear;
  width: 2px;
  border-radius: 0;
}
.split-slider.dots-var-2 .splide__pagination {
  padding: 15px 10px;
}

.destination-sli-cls.dots-left .splide__pagination {
  left: 10px;
  right: inherit;
}
.destination-sli-cls.dots-right .splide__pagination {
  right: 10px;
  left: inherit;
}
.destination-sli-cls.dots-center .splide__pagination {
  left: 0;
  right: 0;
}
.destination-sli-cls.dots-var-2 .splide__pagination button {
  height: 30px;
  margin: 5px 5px;
  opacity: .7;
  padding: 0;
  transition: transform .2s linear;
  width: 2px;
  border-radius: 0;
}
.destination-sli-cls.dots-var-2 .splide__pagination {
  padding: 15px 10px;
}

.com-filter-mdl-1 .dt-overlay-content {
  background-color: rgba(0,55,77, .8);
  opacity: 0;
  -webkit-transition: opacity;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 800ms;
  -moz-transition: opacity;
  transition-duration: 0s;
  transition-timing-function: ease;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 800ms;
  position: absolute;
  display: table;	
  text-align: center;
  float: left;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.com-filter-mdl-1:hover .dt-overlay-content {
  opacity: 1; 
  -webkit-transition: opacity;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 800ms;
  -moz-transition: opacity;
  transition-duration: 0s;
  transition-timing-function: ease;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 800ms;
}
.com-filter-mdl-1 .filter-mdl-1 {
  position: absolute;
  bottom: 0;
  padding: 20px;
  display: table;
}
.com-filter-mdl-1 .dt-overlay-content-sec {
  display: table-cell;
  vertical-align: middle;
}
.com-filter-mdl-2 .features-tours-item .features-media {
  position: relative;
}
.com-filter-mdl-2 .features-tours-item .features-media::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.com-filter-mdl-2 .features-tours-item .features-media img {
  width: 100%;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top {
  position: absolute;
  z-index: 1;
  top: 0;
  width: -webkit-calc( 100% - 40px);
  width: -moz-calc( 100% - 40px);
  width: calc( 100% - 40px);
  left: 20px;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-price {
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
  transform: translateY(40%);
  opacity: 0;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-price span, 
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-temp span {
  color: #fcb100;
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-temp {
  text-align: right;
  margin-top: 30px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-price, 
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-temp {
  font-size: 22px;
  display: inline-block;
  width: 49%;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  color: #ffffff;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-top p.info-text {
  margin-top: 20px;
  line-height: 1.55;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  color: #ffffff;
  opacity: 0;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-bot {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 20px;
  width: -webkit-calc( 100% - 40px);
  width: -moz-calc( 100% - 40px);
  width: calc( 100% - 40px);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.com-filter-mdl-2 .features-info-bot h4 {
  color: #fff;
}
.com-filter-mdl-2 .features-tours-item .features-media .features-info-bot .button {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  font-size: 13px;
  color: #fcb100;
  border: 1px solid #fcb100;
  padding: 1px 10px;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  -o-transform: translateY(20%);
  transform: translateY(20%);
  opacity: 0;
}
.com-filter-mdl-2 .features-tours-item:hover .features-media .features-info-top .info-price {
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 1;
}
.com-filter-mdl-2 .features-tours-item:hover .features-media .features-info-top p.info-text {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.com-filter-mdl-2 .features-tours-item:hover .features-media .features-info-bot .button {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.com-filter-mdl-2 .features-tours-item:hover .features-media .features-info-bot {
  bottom: 20px;
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.com-filter-mdl-3 .recom-item {
  position: relative;
  z-index: 1;
  background: #ffffff;
  overflow: hidden; 
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
}
.com-filter-mdl-3 .recom-item .recom-media {
  position: relative;
  z-index: 1;   
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
} 
.com-filter-mdl-3 .recom-item .recom-media .location {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  color: #ffffff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.com-filter-mdl-3 .recom-item .recom-media .location {
  text-align: center;
  color: #ffffff;
} 
.com-filter-mdl-3 .recom-item .recom-item-body {
  padding: 20px 20px 20px 5px;  
}
.com-filter-mdl-3 .recom-item {
  background-color: #f5f5f5;
}
.com-filter-mdl-3 .btn-cls {
  position: relative;
  display: table;
  width: 100%;
}
.stars ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.stars ul li {
  list-style: none;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: #fcb100;
}
.com-filter-mdl-3 .recom-item .recom-item-body .recom-price span {
  font-size: 26px;
  color: #424d58;
}
.com-filter-mdl-3 .mb-30 {
  margin-bottom: 30px;
  margin-top: 8px;
}
.com-filter-mdl-3 .recom-item .recom-item-body .recom-button {
  line-height: 44px; 
  z-index: 1;
  bottom: -20px;
  left: 0;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #a9b5c1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.com-filter-mdl-3 .recom-item .recom-item-body .cws-button {
  min-width: initial;
  padding: 10px 34px;
  padding-right: 34px;
  padding-left: 34px;
  padding-right: 16px;
  padding-left: 24px; 
  z-index: 1;
  bottom: -20px;
  right: -20px;
  position: absolute;
}
.com-filter-mdl-3 .cws-button.alt {
  background: #00374d;
  color: #ffffff;
}
.com-filter-mdl-3 .cws-button.small {
  line-height: 20px;
  min-width: 120px;
  padding: 8px 20px;
  font-size: 12px;
}
.com-filter-mdl-3 .cws-button {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  min-width: 130px;
  padding: 10px 20px;
  color: #939ea9;
  background: #ffffff;
  border: 2px solid #00374d;
  text-transform: uppercase;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
} 
.com-filter-mdl-3 .recom-item .recom-item-body .action {
  position: absolute;
  z-index: 9;
  top: 30px;
  left: 0;
  color: #ffffff;
  background: #fcb100;
  font-size: 16px;
  line-height: 26px;
  padding: 6px 15px 6px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
}
.com-filter-mdl-3 .blog-title {
  margin-bottom: 10px;
}

.com-filter-mdl-3 .stars {
  margin-bottom: 10px;
}

.com-filter-mdl-4 .item_border {
  border: 1px solid #E8E8E8;
  margin-bottom: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
  background: #fff;
}

.com-filter-mdl-4 .dt-post-images {
  background: #d8d8d8; 
  line-height: 0;
  position: relative; 
} 
.com-filter-mdl-4 .dt-post-images > a {
  display: block;
}
.com-filter-mdl-4 .dt-post-images span.price {
  background: #fcb100;
}
.com-filter-mdl-4 .dt-post-images span.price,
.com-filter-mdl-4 .dt-post-images .price {
  position: absolute;
  top: 14px;
  left: 0;
  display: inline-block;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 0 3px 3px 0;
  z-index: 9;
}
.com-filter-mdl-4 .dt-post-images span.price del,
.com-filter-mdl-4 .dt-post-images .price del {
  font-size: 90%;
  font-weight: normal;
  opacity: 0.9;
}
.com-filter-mdl-4 .dt-post-images span.onsale {
  position: absolute;
  top: 14px;
  right: 0;
  padding: 3px 12px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px 0 0 3px;
  text-transform: uppercase;
  margin: 0;
  min-height: initial;
  line-height: 26px;
  display: inline-block;
  z-index: 9;
}
.com-filter-mdl-4 .dt-post-images .onsale {
  background: #00374d;
}
.com-filter-mdl-4 .dt-post-images .group-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.com-filter-mdl-4 .dt-post-images .group-icon a.frist::before {
  display: none;
}
.com-filter-mdl-4 .dt-post-images .group-icon a::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -13px;
  background: rgba(255,255,255,0.7);
}
.com-filter-mdl-4 .dt-post-images .group-icon a {
  margin: 10px 15px;
  color: #fff;
  position: relative;
  line-height: 0;
  z-index: 9;
}
.com-filter-mdl-4 .dt-post-images .group-icon a svg {
  width: 20px;
  height: 20px;
  fill: #fcb100;
}
.com-filter-mdl-4 .dt-post-images a {
  display: inline-block;
}

.com-filter-mdl-4 .dt-post-images .group-icon a i {
  font-size: 18px;
}

.com-filter-mdl-4 .item_content .wrapper_content {
  padding: 14px;
  background: #fff;
}
.com-filter-mdl-4 .post_date i::before, 
.com-filter-mdl-4 .wrapper-adults-children span::before {
  color: #fcb100;
}
.com-filter-mdl-4 .post_date i::before { 
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
} 
.com-filter-mdl-4 .post_date {
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
.com-filter-mdl-4 .read_more {
  background: #f5f5f5;
  height: 40px;
}

.com-filter-mdl-4 .item_rating {
  float: left;
  width: 45%;
  padding: 0 10px 0 15px;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-align: center;
} 
.com-filter-mdl-4 .item_rating .star-rating svg {
  fill: #fcb100;
  width: 16px;
  height: 16px;
}
.com-filter-mdl-4 .item_rating .star-rating ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 12px 0;
}
.com-filter-mdl-4 .item_rating .star-rating ul li {
  line-height: 0;
  margin-right: 5px;
}
.com-filter-mdl-4 .item_rating .star-rating ul li:last-child {
  margin-right: 0;
}
.com-filter-mdl-4 .read_more .product_type_tour_phys {
  float: right; 
  width: 55%;
  text-align: center;
  line-height: 41px;
  padding: 0 0 0 20px;
  position: relative; 
  margin-top: 0;
  margin-right: -1px;
  margin-bottom: -1px;
  border-radius: 0; 
  border: 0;
}
.com-filter-mdl-4 .read_more .product_type_tour_phys::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 20px solid #f5f5f5;
  border-bottom: 20px solid transparent;
} 

.tour-box { 
  -webkit-box-shadow:0 0 20px 0 rgba(62,28,131,0.1);
  box-shadow:0 0 20px 0 rgba(62,28,131,0.1);
  background: #FFF;
  font-size: 16px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: relative; 
}

.tour-box-image{
  position:relative;
}
.tour-box-image .tour-box-img {
  height:280px;
  -o-object-fit: cover;
  object-fit: cover;
  position:relative;
  width: 100%;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.tour-box-image>a {
  position:relative;
  display:table;
  overflow:hidden;
}
.tour-box-image>a:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:#303b61;
  display: block;
  height: 100%;
  width: 100%;
  opacity:0.4;
}
.tour-box .entry-bookmark a{
  position: absolute;
  top:20px;
  left:20px;
  z-index: 2;
  right:20px;
  font-size:20px;
  color:#ffffff;
  margin-bottom: 8px;
  pointer-events: none;
}
.fl-right {
  float: right;
}
.tour-place {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1; 
}
.tour-place a {
  color: #fff;
}
.tour-box .inner-box {
  padding: 15px 20px 15px;
  width: 100%;
}
.tour-box.style-1 .entry-meta {
  position:relative;
  width: 100%;
  padding:14px 20px 14px;
  border-bottom:1px solid #f4f4f4;
}
.entry-meta .meta-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 12px;
  line-height: 18px;
}
.entry-meta {
  margin-bottom: 0;
}
.coauthors .vcard {
  margin-right: 10px;
}

.coauthors .vcard:last-child {
  margin-right: 0;
}
.meta-author img {
  border-radius: 50%;
  vertical-align: -10px;
  display: inline-block;
  margin-right: 4px;
  width:30px;
  height:30px;
}
.box-inner-ellipsis { 
  display: table;
  width: 100%;
}
.box-inner-ellipsis>* {
  display: table-cell;
  vertical-align: middle;
}  
.meta-rating {
  margin-top: 8px;
}
.meta-item.meta-comment {
  margin-top: 7px;
} 
.meta-rating ul {
  display: flex;
  align-items: center;
  list-style: none;
} 
.meta-rating ul li svg {
  width: 15px;
  height: 15px;
  fill: #fcb100;
}
.meta-comment i{
  margin-right:5px;
}
.tour-box-image .tour-time{
  position:absolute;
  right:20px;
  bottom:20px;
  color:#ffffff;
  font-size:16px;
  z-index:1;
}
.tour-time i, .tour-price i{
  margin-right:5px;
}   
.meta-item.meta-views:before {
  content: "\f005";
  font-family: FontAwesome;
  margin-right: 5px;
}
.tour-box.style-1 span.meta-item.meta-rating {
  bottom: 20px;
  right:30px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .com-filter-mdl-2 .features-tours-item .features-media .features-info-top {
    width: calc( 100% - 20px);
    left: 10px;
  }
  .com-filter-mdl-2 .features-tours-item .features-media .features-info-top .info-temp {
    margin-top: 0;
  }
  .com-filter-mdl-3 .recom-item .recom-item-body {
    padding: 0 20px 20px;
  }
}
@media (max-width: 400px) {
  .tour-place {
    bottom: 50px;
  }
}
@media (max-width: 800px) {
  .dt-container .tile-col-width {
    margin-left: 0 !important;
  }
}