/**
* Template Name: BizLand - v1.2.1
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --fontFamily: 'Fraunces', serif;
  --bodyFontFamily: 'Josefin Sans', sans-serif;
  --headingColor: #000000;
  --mainColor: #26264a;
  --optionelColor: #cbcbcb;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --transition: all ease 0.7s;
}.
body {
  font-family: "Titillium Web", sans-serif !important;
  color: #444444;
}

a {
  color: #106eea;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #106eea;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3284f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #000;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  /* top: 40px; */
  box-shadow: 0px 2px 15px rgba(11, 11, 11, 0.37);
}

#header.header-scrolled {
  top: 0;
  padding: 10px;
  background: #fff;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 10px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #26264a;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #000;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #000;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #106eea;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #26264a;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
 
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 132px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  position: relative;
  font-weight: 600;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

/* Section Title 
========================================*/
.section-title {
  text-align: center;
  /*margin-bottom: 40px;*/
}

.section-title .top-title {
  font-size: 18px;
  font-family: var(--bodyFontFamily);
  font-weight: 500;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  line-height: 58px;
}

.section-title p {
  margin-top: 10px;
}

.section-title.left-title {
  text-align: left;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  /*padding-bottom: 30px;*/
}
/**
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #26264a;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px 0px 50px 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #FFA61F;
}


.section-title h3::before {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #26264a;
  margin: 4px 10px;
}
.section-title h3::after {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background: #26264a;
  margin: 4px 10px;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
  .section-title h3 {
    font-size: 20px;
    font-weight: 700;
  }
}

@media (max-width: 750px) {
  .section-title h3 {
    font-size: 13px;
    font-weight: 700;
  }
}
**/
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 200px;
  padding-top: 100px;
  position: relative;
}
.breadcrumbs .header {
 background: #FFA61F;
 padding: 70px;
 border-radius: 10px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(128, 128, 128, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #808080;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/* Start Testimonials Three area 
=========================================*/
.testimonials-three-area {
  background: #F5F9FC;
}

.testimonials-three-area .section-title {
  position: relative;
  top: 10px;
}

.testimonials-three-area .section-title.left-title .top-title {
  margin-bottom: 5px;
}





.single-testimonials-three-card .testimonials-three-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.single-testimonials-three-card .testimonials-three-img img {
  width: auto !important;
  margin-right: 20px;
}

.single-testimonials-three-card .testimonials-three-img .testimonials-three-text {
  position: relative;
  top: 2px;
  padding:2px 2px 2px 2px;
}

.single-testimonials-three-card .testimonials-three-img .testimonials-three-text h6 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  
}

.single-testimonials-three-card .testimonials-three-img .testimonials-three-text span {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.single-testimonials-three-card p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--headingColor);
}

.single-testimonials-three-card ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 15px;
}

.single-testimonials-three-card ul li {
  list-style-type: none;
  display: inline-block;
  color: var(--optionelColor);
  font-size: 20px;
}

.single-testimonials-three-card .testimonials-shape {
  position: absolute;
  top: 75px;
  right: -15px;
}

.single-testimonials-three-card .testimonials-shape img {
  width: auto !important;
}

.testimonials-three-slider {
  padding-right: 20px;
}




/* Start Callback For More
========================================*/
.single-callback-content .callback-counter-item {
  max-width: 606px;
}

.single-callback-content .callback-counter-count {
  background-color: #F5F9FC;
  padding: 23px;
  margin-top: 25px;
  text-align: center;
}

.single-callback-content .callback-counter-count h2 {
  font-size: 48px;
  font-weight: bold;
  color: var(--mainColor);
  margin-bottom: 5px;
}

.single-callback-content .callback-counter-count h2 .target {
  position: relative;
  top: 5px;
  left: -5px;
}

.single-callback-content .callback-counter-count p {
  font-size: 18px;
  font-weight: 500;
}

.single-callback-img {
  position: relative;
  z-index: 1;
}

.single-callback-img::after {
  content: '';
  position: absolute;
  width: 74%;
  height: 85%;
  top: 59px;
  right: 0;
  bottom: 0;
  left: 78px;
  z-index: -1;
  border: 2px solid rgba(61, 139, 193, 0.48);
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #106eea !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #106eea !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 100px;
  font-family: 'inherit';
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #000;
  text-align: center;
  }

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 13px;
  line-height: 26px;
  color: #393939;
  text-align: center;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #106eea;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #106eea;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  background: #000000;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #388D45;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #d9d9d9;
}

#footer .footer-top .footer-contact h3 span {
  color: #FFA61F;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #d9d9d9;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li p{
  color: #fff;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #d9d9d9;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #26264a;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000  ;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #666666;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;

}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.single-hero-post .hero-slides-content h6 {
  color: #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 15px;
}


.propil p {
  color: #fff;
  text-align: center !important;
}

.prod {
  margin: 20px 5px;
  transition: transform .2s;

  padding: 20px 25px;
  box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
}

.prod:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.prod h3 {
  /*text-align: center;*/
  font-size: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.prod h6 {
  font-weight: 500;
  color: #000;
}

.prod h4 {
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.prod .bord {
  border-left: 1px solid #00000047;
}

.prod .ikon i {
  min-width: 30px;
  font-size: 25px;
  margin: 10px 0px;
}

.prod1 {
  margin: 20px 5px;
  transition: transform .2s;
  background: #fff;
  padding: 20px 25px;
  box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 17px -8px rgba(0, 0, 0, 0.75);
}

.prod1:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.prod1 h3 {
  /*text-align: center;*/
  font-size: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.prod1 h6 {
  font-weight: 500;
  color: #000;
}

.prod1 h4 {
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.prod1 .bord {
  border-left: 1px solid #00000047;
}

.prod1 .ikon i {
  min-width: 30px;
  font-size: 25px;
  margin: 10px 0px;
}

.ikon {
  color: #000000b5;
  margin-bottom: 15px;
}

.learn_more {
  display: inline-block;
  background: #fff;
  padding: 8px 35px;
  border-radius: 5px;
  color: #26264a;
  border: 2px solid #26264a;
  margin: 20px 0px;
  font-weight: 700;
}

.learn_more:hover {
  background: #26264a;
  border: 2px solid #26264a;
  color: #fff;
}

.ket {
  color: #0000009c;
  font-style: italic;
}

.ket ul li {
  list-style: inherit;
}

.member-info ul {
  padding: 0px 20px;
  color: #000000bf;
}

.member-info li:before {
  content: "\f058";
  /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
  font-size: 12px;
  color: #090;
}

.fas {
  color: #ffa500 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 0px;
}

.member-button {
  text-align: center;
  padding: 10px 0px;
  background: #090;
}

.member-button a {
  color: #fff;
  font-weight: 700;
}

.harga {
  color: #008000 !important;
  font-weight: 700 !important;
  text-align: center;
  font-size: 18px !important;
  margin-top: 14px;
}

.cta {
  background: rgba(21, 21, 21, 0.8);
  padding: 70px;
}

.cta span p {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

.btn-cta {
  background-color: #26264a;
  padding: 20px 40px;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  transition: 0.5s;
}

.btn-cta:hover {
  background-color: #8888c7;
  color: #000;
  border-radius: 40px;
  border: 1px solid #8888c7;
  transition: 0.5s;
}
.waves{
  background: #26264a;
}
@media (max-width: 767px) {

  /* line 1, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_experts.scss */
  .cta {
      padding: 30px;
  }

  .cta span p {
      font-size: 12px;
  }

  .cta .btn-cta {
      padding: 10px 15px;
      font-size: 12px;
  }

  .single-hero-post .hero-slides-content h6 {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 5px;
  }
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.service-widget {
  padding: 20px 15px;
  border: 1px solid #f2f2f2;
  background-color: #ffffff;
  /* -webkit-box-shadow: 0px 2px 16px 0px rgb(204 204 204);
  -moz-box-shadow: 0px 2px 16px 0px rgba(204,204,204,1);
  box-shadow: 0px 2px 16px 0px rgb(204 204 204); */
}
.post-media {
  position: relative;
}
.post-media img {
  width: 100%;
}
.service-widget h3 {
  font-size: 21px;
  color: #ffffff;
  padding: 20px 0 12px;
  margin: 0;
}
.service-widget h3 {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 5px;
}
.service-widget h3 a, .service-widget h3{
  color: #1f1f1f;
}
.service-widget p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.text-muted {
  color: #777;
}
.tupik li:before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 5px;
  color: #089e2e;
}

/* Start Best Selections Area
========================================*/
.single-selections-card {
  background: #FFFFFF;
  border-width: 4px 0px;
  border-style: solid;
  border-color: #E9E9E9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.single-selections-card.bg-color-2 {
  background: #F8F8F8;
  border-radius: 10px;
  border: none;
}

.single-selections-card.bg-color-2.about-selections13 {
  border-radius: 0px;
}

.single-selections-card.bg-color-2.about-selections13 .selections-icon .location {
  border-radius: 0px;
}

.single-selections-card.bg-color-3 {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.07);
          box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.07);
  border-radius: 0px;
  border: none;
  padding: 50px 40px 50px 40px;
}

.single-selections-card.bg-color-3 .selections-icon h3 {
  font-family: var(--fontFamily);
  font-size: 20px;
  font-weight: bold;
}

.single-selections-card.bg-color-3 .selections-icon .location {
  border-radius: 50px;
  height: 60px;
  line-height: 66px;
  margin-right: 15px;
}

.single-selections-card .selections-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-selections-card .selections-icon .location {
  width: 60px;
  height: 55px;
  /* line-height: 61px; */
  background: var(--mainColor);
  border-radius: 10px 0px;
  text-align: center;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.single-selections-card .selections-icon .location::after {
  content: '';
  position: absolute;
  background-color: #4c4c78;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-selections-card .selections-icon .location i {
  font-size: 30px;
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-selections-card .selections-icon h3 {
  font-size: 22px;
  font-weight: bold;
  font-family: var(--bodyFontFamily);
}

.single-selections-card:hover .selections-icon .location::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.single-selections-card:hover .selections-icon .location i {
  color: var(--whiteColor);
}

/* Start About area 
=======================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-area .about-shape-1 {
  position: absolute;
  right: 3%;
  bottom: 8%;
  z-index: -1;
}

.single-about-img {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 35px;
  margin-right: 10px;
}

.single-about-img img {
  border-radius: 30px;
}

.single-about-img .about-img-two {
  position: absolute;
  right: 15px;
  bottom: -35px;
  background-color: var(--whiteColor);
  padding: 15px;
}

.single-about-img .about-img-two img {
  border-radius: 20px;
}

.single-about-img .about-shape {
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
}

.single-about-img .about-shape img {
  border-radius: 0px;
}

.single-about-content {
  margin-left: 15px;
}

.single-about-content ul {
  padding-left: 0;
  margin: 0;
  padding-right: 0;
  margin-top: 25px;
  margin-bottom: 35px;
}

.single-about-content ul li {
  list-style-type: none;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--headingColor);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.single-about-content ul li:last-child {
  margin-bottom: 0;
}

.single-about-content ul li i {
  font-size: 18px;
  font-weight: 500;
  color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-book{

}

.default-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border: none;
  text-align: center;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
  padding: 13.5px 30px 11.5px 30px;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
}

.default-btn.btn-style-one {
  background-color: var(--mainColor);
}

.default-btn.btn-style-one::after {
  background-color: var(--optionelColor);
}

.default-btn.btn-style-one::before {
  background-color: var(--optionelColor);
}

.default-btn.btn-style-one.btn-style-three {
  border-radius: 0px;
}

.default-btn.btn-style-two {
  background: #FFF5EA;
  border-radius: 5px;
  color: var(--mainColor);
}

.default-btn.btn-style-two::after {
  background-color: var(--mainColor);
}

.default-btn.btn-style-two::before {
  background-color: var(--mainColor);
}

.default-btn.btn-style-two.btn-style-three {
  border-radius: 0px;
}

.default-btn::before {
  position: absolute;
  content: '';
  width: 72%;
  height: 100%;
  background: var(--mainColor);
  opacity: 0;
  left: -100%;
  top: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transform: skew(-30deg);
          transform: skew(-30deg);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn::after {
  position: absolute;
  content: '';
  width: 72%;
  height: 100%;
  background: var(--mainColor);
  opacity: 0;
  right: -100%;
  top: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transform: skew(-30deg);
          transform: skew(-30deg);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn:hover {
  color: var(--whiteColor);
}

.default-btn:hover::before {
  opacity: 1;
  visibility: visible;
  left: -20%;
}

.default-btn:hover::after {
  opacity: 1;
  visibility: visible;
  right: -20%;
}


/* Start Page Banner Area
=========================================*/
.page-banner-area {
  background-image: url(../images/page-banner/page-banner-bg-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
}

.page-banner-area.page-banner-area-two {
  background-image: url(../images/page-banner/page-banner-bg-img-2.jpg);
}

.page-banner-area.team-page-banner-bg-img {
  background-image: url(../images/page-banner/team-page-banner-img.jpg);
}

.page-banner-area.page-banner-faqs-area {
  background-image: url(../images/page-banner/faq-pages-bg-img.jpg);
}

.page-banner-area.page-shop-area {
  background-image: url(../images/page-banner/shop-bg-img.jpg);
}

.page-banner-area.checkout-page-area {
  background-image: url(../images/page-banner/checkout-page-bg-img.jpg);
}

.page-banner-area.blog-page-area {
  background-image: url(../images/page-banner/blog-page-banner-img.jpg);
}

.page-banner-area::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.56);
  z-index: -1;
  opacity: 0.9;
}

.single-page-banner-content {
  text-align: center;
}

.single-page-banner-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--whiteColor);
  margin-bottom: 15px;
}

.single-page-banner-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.single-page-banner-content ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--whiteColor);
  font-size: 20px;
  margin-right: 15px;
  position: relative;
}

.single-page-banner-content ul li::before {
  content: '';
  position: absolute;
  background-color: var(--whiteColor);
  width: 1px;
  height: 17px;
  right: -9px;
  top: 5.7px;
  bottom: 0;
}

.single-page-banner-content ul li:last-child {
  margin-right: 0;
}

.single-page-banner-content ul li:last-child::before {
  display: none;
}

.single-page-banner-content ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--optionelColor);
  font-size: 20px;
}

.det-title {
    color: #26264a !important;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-bottom-color: #26264a;
}

.det-title h3 {
    color: #000000 !important;
}
.det-title {
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 10px;
    margin-bottom: 10px;
    background-image: linear-gradient(to bottom, white,white,#FFFFFF);
	width: 100%;
}
.gambar__dekstop{
    background-position: center;
    background-size: cover;
       padding: 140px;
    /*background-image: url(../../images/test170898.png); */
    display:block!important ;
}.gambar_mobile{
   /*background-image: url(../../images/test12.png); */
      display:none!important ;
        background-position: center;
   
    padding: 0px;
}
@media only screen and (max-width: 767px) {
  .gambar_mobile{
    /*background-image: url(../../images/test12.png); */
      display:block!important  ;

   
    padding: 0px;
  }
  .gambar__dekstop{
      background-position: center;
    background-size: cover;
       padding: 113px;
    /*background-image: url(../../images/test170898.png); */
    display:none!important;
   
}
@media (max-width: 767px) {
  /* line 2, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_section_title.scss */
  
  .our_department_area {
    background: #f3f1f1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* line 1, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area {
  background: #f3f1f1;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* line 5, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department {
  background: #fff;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 6px 10px rgb(0 0 0 / 4%);
    -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 10px rgb(0 0 0 / 4%);
    transition: .2s;
    border-radius: 14px;
}

.our_department_area .single_department:hover {
  box-shadow: -1px -1px 20px 0px rgb(0 0 0 / 75%);
    -webkit-box-shadow: -1px -1px 20px 0px rgb(255, 228, 56);
    -moz-box-shadow: -1px -1px 20px 0px rgba(241, 221, 38, 0.75);
    -ms-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.our_department_area .single_department:hover .btn-book{
  background: rgb(255 227 25);
}

/* line 9, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_thumb {
  overflow: hidden;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
}

/* line 13, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_thumb img {
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 19, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content {
  padding: 22px 30px 24px 30px;
}

/* line 21, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content h3 {
  margin-bottom: 0;
}

/* line 23, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content h3 a {
  font-size: 22px;
  color: #1F1F1F;
  line-height: 33px;
  font-weight: 500;
}

/* line 28, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content h3 a:hover {
  color: rgb(254 157 0);
}

/* line 33, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content p {
  font-size: 12px;
  line-height: 20px;
  color: #5c5c5c;
  /* margin-top: 5px; */
  margin-bottom: 0px !important;
}

/* line 40, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content a.learn_more {
  color: #000;
  font-size: 15px;
  /*background: rgb(254 157 0);*/
  padding: 10px 15px;
  border-radius: 25px;
}

/* line 43, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content a.learn_more:hover {
  text-decoration: underline;
}

.our_department_area .single_department .department_content a.learn_more2 {
  color: #000;
  font-size: 15px;
  background: rgb(254 157 0);
  padding: 10px 15px;
  border-radius: 25px;
}

/* line 43, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department .department_content a.learn_more2:hover {
  text-decoration: underline;
}

/* line 50, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_department.scss */
.our_department_area .single_department:hover .department_thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}


/* responsive */
@media only screen and (max-width: 767px) {
    .others-option-vg {
      display: none !important;
    }
    .pt-100 {
      padding-top: 50px;
    }
    .pb-100 {
      padding-bottom: 50px;
    }
    .pb-70 {
      padding-bottom: 20px;
    }
    .pb-90 {
      padding-bottom: 50px;
    }
    .ptb-100 {
      padding-bottom: 50px;
      padding-top: 50px;
    }
    .pt-70 {
      padding-top: 50px;
    }
    p {
      font-size: 14px;
    }
    .coming-soon-content #timer {
      margin-bottom: 10px;
      font-size: 30px;
    }
    .default-btn {
      font-size: 16px;
      padding: 12.5px 18px 11.5px 18px;
    }
    .single-contact-content {
      margin-bottom: 30px;
    }
    .contact-card {
      margin-top: 30px;
    }
    .switch-theme-mode {
      right: 30px;
      z-index: 9999;
    }
    .coupon-code .bottom {
      margin-bottom: 20px;
    }
    .single-persons-card .persons-content h3 {
      font-size: 18px;
    }
    .single-great-places-card .great-places-list {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-great-places-card .great-places-list ul li {
      font-size: 14px;
      padding-left: 10px;
    }
    .single-great-places-card .great-places-list.tours-list ul li {
      padding-left: 16px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list li {
      padding-left: 16px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list li::after {
      right: -10px !important;
    }
    .popular-destination-item .popular-destination-content {
      padding: 10px 5px;
    }
    .popular-destination-item .popular-destination-content .d-flex span {
      width: 70px;
      height: 31px;
      line-height: 35px;
      font-size: 11px;
    }
    .popular-destination-item .popular-destination-content .d-flex h3 {
      font-size: 14px;
    }
    .privacy-text h3 {
      font-size: 22px;
    }
    .great-places-three-area .section-title.left-title {
      margin-bottom: 20px;
      top: 0;
    }
    .slick-prev::after {
      width: 40px;
      height: 40px;
      line-height: 45px;
      font-size: 20px;
      right: auto;
      left: 30px;
      top: unset;
      bottom: -16px;
    }
    .slick-slide {
      height: 57vh !important;
    }
    .slick-next::before {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      font-size: 20px;
    }
    .popular-destination-area .section-title {
      margin-bottom: 15px;
    }
    .single-blog-details h2 {
      font-size: 26px;
    }
    .single-blog-details .blog-details-cart {
      padding: 20px;
    }
    .single-blog-details .blog-details-cart p {
      font-size: 14px;
    }
    .single-blog-details .blog-details-list-two ul li {
      font-size: 14px;
    }
    .single-blog-details .d-flex {
      display: block !important;
    }
    .single-blog-details .d-flex .share {
      margin-bottom: 20px;
    }
    .single-banner-content .explore-form .form-group {
      border-bottom: 1px solid #f1f1f1;
    }
    .single-banner-content .explore-form .form-group.bg-left-content {
      padding-left: 0;
    }
    .single-banner-content .explore-form .form-group.bg-border {
      padding-left: 0;
    }
    .single-banner-content .explore-form .default-btn {
      float: left;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 2px;
    }
    .widget-area {
      margin-top: 30px;
    }
    .popular-post {
      padding: 20px;
    }
    .popular-post .popular-post-card {
      display: flex;
    }
    .popular-post .popular-post-card .popular-post-content {
      margin-left: 15px;
      margin-top: 15px;
    }
    .popular-post .popular-post-card .popular-post-content h3{
      font-size: 15px;
    }
    .single-great-places-card.single-great-places-card-two .packages-btn {
      top: 51%;
    }
    .single-about-img {
      margin-bottom: 20px;
    }
    .single-about-img .about-img-two {
      padding: 0;
    }
    .footer-widget .widget-contact-list.bgs-bottom {
      margin-top: 15px;
    }
    .error-content h2 {
      font-size: 35px;
    }
    .coming-soon-content p {
      margin-bottom: 10px;
    }
    .coming-soon-content #timer {
      margin-bottom: 0;
    }
    .coming-soon-content #timer div {
      margin-bottom: 20px;
    }
    .forgot-password-area .register .my-account-content .section-title h2 {
      font-size: 28px;
    }
    .banner-two-area .banner-two-shape {
      display: none;
    }
    .my-account-content {
      padding: 20px;
    }
    .my-account-content .section-title h2 {
      font-size: 28px;
    }
    .my-account-content .text-account {
      float: left;
      margin-bottom: 20px;
    }
    .my-account-content .border-or::before {
      width: 26%;
    }
    .my-account-content .border-or::after {
      width: 26%;
    }
    .my-account-content.register-form {
      padding: 20px;
    }
    .section-title {
      margin-bottom: 30px;
    }
    .section-title h2 {
      font-size: 25px;
      line-height: unset;
    }
    .section-title .top-title {
      font-size: 16px;
      margin-bottom: 5px;
    }
    .myslider .item .single-testimonials-content p {
      font-size: 14px;
    }
    .single-faq-item .section-title h2 {
      font-size: 30px;
    }
    .accordion-item .accordion-header .accordion-button {
      font-size: 15px;
    }
    .faqs-img {
      margin-left: 0;
      margin-top: 30px;
    }
    .table-responsive {
      overflow-x: auto;
    }
    .checkout {
      padding: 15px;
    }
    .checkout-from {
      padding-right: 0;
    }
    .coupon-code .coupon {
      margin-bottom: 20px;
    }
    .coupon-code .coupon .coupon-group-form .default-btn {
      top: 6px;
      padding: 12px;
    }
    .shop-single-img {
      margin-right: 0;
      margin-bottom: 30px;
    }
    .shop-single-content h2 {
      font-size: 28px;
    }
    .shop-single-content .details-two {
      font-size: 20px;
    }
    .shop-single-tads {
      margin-top: 30px;
    }
    .shop-single-tads .nav .nav-item {
      margin-right: 18px;
    }
    .shop-single-tads .nav .nav-item .nav-link {
      font-size: 14px;
    }
    .additional-information {
      padding: 10px;
    }
    .additional-information .information li {
      padding: 8px;
      font-size: 15px;
    }
    .showing .from-group {
      margin-bottom: 20px;
      margin-top: 20px;
    }
    .leave-form h2 {
      font-size: 25px;
      margin-bottom: 20px;
    }
    .tours-details-tads .maps h3 {
      font-size: 22px;
    }
    .tours-details-tads .maps h3 b {
      font-size: 22px;
    }
    .customer-review .review-item .review-img12 {
      display: inline-block;
      margin-bottom: 20px;
    }
    .customer-review .review-item .review-img12 .review-img13 {
      border-radius: unset;
      margin-bottom: 20px;
    }
    .customer-review .review-item .review-img12 .review-img13::after {
      display: none;
    }
    .customer-review .review-item:hover .review-img12 .review-img13 img {
      -webkit-transform: unset;
              transform: unset;
    }
    .single-shop-card .shop-text h3 {
      font-size: 20px;
    }
    .customer-review h2 {
      font-size: 22px;
      margin-bottom: 25px;
    }
    .page-banner-area {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .single-booking-item {
      margin-bottom: 30px;
    }
    .single-booking-item span {
      font-size: 16px;
    }
    .single-booking-item h2 {
      font-size: 27px;
    }
    .single-booking-item .payment-information-card {
      padding: 30px;
    }
    .single-booking-item .payment-information-card p {
      margin-bottom: 0;
    }
    .single-booking-item .payment-information-card .booking-shape-1 {
      display: none;
    }
    .single-booking-item .form-check {
      margin-bottom: 20px;
    }
    .single-tours-content .tours-img .tours-card {
      padding: 15px;
      left: 15px;
      top: 15px;
    }
    .single-tours-content .tours-img .tours-card h3 {
      font-size: 18px;
    }
    .single-tours-content .tours-img .tours-card p {
      font-size: 13px;
    }
    .single-tours-content h3 {
      font-size: 24px;
    }
    .single-tours-content .tours-list-bgs10 {
      margin-bottom: 20px;
    }
    .single-tours-content .tours-gallery-img {
      margin-top: 0;
    }
    .booking-tours-details-form {
      margin-top: 30px;
      padding: 20px;
    }
    .travel-tips {
      padding: 20px;
    }
    .travel-tips h2 {
      font-size: 23px;
    }
    .single-choose-us-content .section-title.left-title h2 {
      margin-right: 0;
    }
    .choose-us-img .choose-us-1 {
      left: 0;
    }
    .tours-details-tads .nav .nav-item {
      margin-right: 15px;
    }
    .tours-details-tads .nav .nav-item .nav-link {
      font-size: 14px;
    }
    .tours-details-tads .tab-content {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .single-tours-content {
      padding-right: 0;
    }
    .single-tours-content .tours-details-list {
      max-width: unset;
      height: 50px;
      line-height: 48px;
    }
    .single-tours-content .tours-details-list ul li {
      font-size: 14px;
      margin-right: 14px;
      padding-left: 20px;
    }
    .single-tours-content .tours-details-list ul li::after {
      display: none;
    }
    .single-page-banner-content h1 {
      font-size: 25px;
      margin-bottom: 10px;
    }
    .single-page-banner-content ul li {
      font-size: 16px;
    }
    .single-page-banner-content ul li::before {
      top: 3px;
    }
    .single-page-banner-content ul li a {
      font-size: 16px;
    }
    .single-destinations-details-content {
      padding-right: 0;
    }
    .single-destinations-details-content .destinations-img {
      margin-bottom: 20px;
    }
    .single-destinations-details-content h2 {
      font-size: 22px;
      margin-bottom: 15px;
    }
    .single-destinations-details-content h3 {
      font-size: 22px;
    }
    .single-destinations-details-content .single-destinations-card {
      padding: 0px 20px 20px 20px;
    }
    .single-destinations-details-content .single-destinations-card .destinations-text {
      margin-top: 20px;
    }
    .single-destinations-details-content .destinations-imgs-2 {
      margin-bottom: 25px;
    }
    .single-destinations-details-content .destinations-history-item {
      margin-left: 30px;
    }
    .single-destinations-details-content .destinations-history-item .destinations-history h4 {
      font-size: 18px;
    }
    .destinations-widget {
      margin-top: 40px;
    }
    .categories-card {
      padding: 20px;
    }
    .popular-destination-img-item {
      padding: 20px 32px 20px 20px;
    }
    .popular-destination-img-item .destination-bgs-img10::after {
      left: 19px;
      top: 11%;
      -webkit-transform: scale(0) translateY(-50%);
              transform: scale(0) translateY(-50%);
    }
    .tags-item {
      padding: 20px;
    }
    .destination-lists-area .col-lg-3:nth-child(5) .single-destination-card {
      margin-top: 0;
    }
    .destination-lists-area .col-lg-3:nth-child(6) .single-destination-card {
      margin-top: 0;
    }
    .destination-lists-area .col-lg-3:nth-child(7) .single-destination-card {
      margin-top: 0;
    }
    .single-destination-card.destination-item {
      top: 0;
    }
    .pagination-area .page-numbers {
      width: 35px;
      height: 35px;
      line-height: 35px;
      font-size: 13px;
      margin-right: 5px;
    }
    .single-beautiful-place-item .beautiful-place-text.beautiful-place-page {
      left: unset;
      right: unset;
    }
    .footer-area::after {
      top: 0;
    }
    .single-destination-lists-content .default-btn.btn-style-one.btn-style-three {
      margin-top: 15px;
    }
    .single-about-two-img .about-two-shape {
      max-width: 190px;
    }
    .single-about-two-img .about-two-text {
      top: 16px;
      left: 16px;
    }
    .single-about-two-img .about-two-text h3 {
      font-size: 22px;
    }
    .single-about-two-img .about-two-text p {
      font-size: 15px;
    }
    .destination-lists-area .col-lg-7 .col-lg-6:nth-child(4) .single-destination-card {
      margin-top: 30px;
    }
    .single-about-two-content {
      margin-top: 20px;
    }
    .banner-three-img {
      margin-left: 0;
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 3px;
    }
    .slick-next::after {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
    }
    .single-download-content .download-btn-item .download-btn {
      padding: 10px 0px 10px 40px;
    }
    .single-download-content .download-btn-item .download-btn a i {
      font-size: 28px;
      left: 7px;
    }
    .single-download-content .download-btn-item .download-btn a p {
      margin-bottom: 0;
      font-size: 13px;
    }
    .single-download-content .download-btn-item .download-btn a h5 {
      font-size: 14px;
    }
    .single-beautiful-place-item .beautiful-place-text {
      max-width: unset;
      left: 20px;
      right: 20px;
      padding: 25px;
    }
    .blog-two-title .default-btn {
      float: left;
      margin-top: 20px;
    }
    .download-img {
      margin-top: 30px;
    }
    .download-img .download-img-two {
      display: none;
    }
    .single-banner-content.single-banner-two-content .explore-item {
      margin-bottom: 0;
    }
    .single-great-places-card.single-great-places-card-two .great-places-list ul li::after {
      display: none;
    }
    .single-choose-us-content {
      margin-bottom: 40px;
    }
    .single-choose-us-content h3 {
      font-size: 18px;
    }
    .single-choose-us-content .section-title.left-title {
      margin-bottom: 15px;
    }
    .choose-us-img .choose-us-1 {
      max-width: 170px;
    }
    .choose-us-img .choose-us-2 {
      max-width: 170px;
    }
    .myslider .item .single-testimonials-content {
      padding: 20px;
    }
    .single-testimonials-img {
      margin-bottom: 40px;
    }
    .navbar-area {
      padding: 45px 0;
    }
    .navbar-area.bg-one-nav-color {
      background-color: #000;
    }
    .navbar-area.bg-one-nav-color.is-sticky {
      background-color: #000;
    }
    .navbar-area.navbar-area-two {
      background-color: #ffffff;
    }
    .navbar-area.navbar-area-two.is-sticky {
      background-color: #ffffff;
    }
    .navbar-area.navbar-area-three {
      background-color: #ffffff;
    }
    .navbar-area.navbar-area-three.is-sticky {
      background-color: #ffffff;
      box-shadow: 2px 4px 5px 0px rgba(212,238,255,0.75);
      -webkit-box-shadow: 2px 4px 5px 0px rgba(212,238,255,0.75);
      -moz-box-shadow: 2px 4px 5px 0px rgba(212,238,255,0.75);
    }
    .navbar-area .mobile-nav .logo {
      top: -18px;
      max-width: 250px !important;
    }
    .navbar-area .others-option-for-responsive .others-options {
      margin-top: 33px;
      max-width: 247px;
    }
    .navbar-area .others-option-for-responsive .others-options button {
      border: none;
      background-color: transparent;
      font-size: 26px;
      margin-right: 15px;
    }
    .banner-three-area {
      padding-bottom: 50px;
      padding-top: 50px;
    }
    .banner-three-area .banner-three-shape-2 {
      display: none;
    }
    .single-selections-card.bg-color-3 {
      padding: 30px;
    }
    .single-about-three-img {
      padding-right: 0;
      margin-bottom: 15px;
    }
    .single-about-three-content {
      /* padding-left: 0; */
      margin-bottom: 20px;
    }
    .single-about-three-content ul {
      margin-bottom: 18px;
      margin-top: 14px;
    }
    .great-places-three-area .container-fluid {
      left: auto;
    }
    .great-places-three-slider.owl-theme .owl-nav {
      position: unset;
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 0;
    }
    .mean-container .mean-nav {
      margin-top: 45px;
    }
    .testimonials-three-slider.owl-theme .owl-nav {
      position: unset;
      margin-top: 30px !important;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 0;
    }
    .single-special-content {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .special-item {
      margin-left: 10px;
    }
    .persons-travel-slider.owl-theme .owl-nav {
      position: unset;
      margin-top: 25px;
    }
    .persons-travel-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .persons-travel-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 0;
    }
    .single-persons-card .persons-img::after {
      top: 25px;
    }
    .beautiful-place-slider.owl-theme .owl-nav {
      margin-bottom: 30px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 20px;
      top: 0;
    }
    .single-callback-img {
      margin-top: 30px;
    }
    .single-callback-img::after {
      height: 73%;
      top: 47px;
      left: 37px;
    }
    .single-testimonials-three-card {
      padding: 20px;
    }
    .single-testimonials-three-card .testimonials-three-img {
      display: block;
    }
    .single-testimonials-three-card .testimonials-three-img img {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .single-testimonials-three-card .testimonials-three-img .testimonials-three-text h6 {
      font-size: 20px;
    }
    .single-callback-content .callback-counter-count h2 {
      font-size: 38px;
    }
    .single-destination-lists-content .section-title.left-title p {
      margin-top: 6px;
    }
    .others-option-for-responsive .container .container {
      right: 0;
    }
    .navbar-nav {
      max-height: 50vh;
      overflow-y: scroll;
      -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    }
    .navbar-nav::-webkit-scrollbar {
      width: 3px;
    }
    .navbar-nav::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    .navbar-nav::-webkit-scrollbar-thumb {
      background: #888;
    }
    .navbar-nav::-webkit-scrollbar-thumb:hover {
      background: #555;
    }
    .mean-container .mean-nav ul li a {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 400;
      font-size: 16px !important;
      color: #555555 !important;
    }
    .single-banner-content.single-banner-two-content h1 {
      font-size: 38px;
    }
    .single-banner-content.single-banner-two-content h2 {
      font-size: 25px;
    }
    .single-banner-content.single-banner-two-content .explore-form {
      margin-bottom: 0;
    }
    .testimonials-three-slider {
      padding-right: 0;
    }
    .banner-two-area {
      padding-top: 140px;
      padding-bottom: 50px;
    }
    .banner-one-area {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .banner-one-area .container-fluid {
      padding-left: 10px;
      padding-right: 10px;
      max-width: 570px;
    }
    .banner-one-area .banner-shape-1 {
      display: none;
    }
    .banner-one-area .banner-shape-2 {
      display: none;
    }
    .banner-one-area .banner-shape-3 {
      display: none;
    }
    .single-banner-content {
      text-align: center;
    }
    .single-banner-content h1 {
      font-size: 30px;
      line-height: 45px;
      margin-bottom: 10px;
    }
    .single-banner-content p {
      font-size: 14px;
      margin-bottom: 15px;
    }
    .single-banner-content .explore-item {
      margin-bottom: 30px;
    }
    .single-banner-content .explore-item .explore-form {
      padding: 15px;
    }
    .single-banner-content .explore-item .explore-form::before {
      display: none;
    }
    .single-banner-content .explore-item .explore-form .form-group {
      margin-bottom: 20px;
    }
    .single-banner-content .explore-item .explore-form .form-group::after {
      display: none;
    }
    .single-banner-content .explore-item .explore-form .form-group .form-label {
      float: left;
    }
    .single-banner-content .explore-item .explore-form .default-btn.btn-style-one {
      font-size: 15px;
    }
    .single-testimonials-card p {
      font-size: 15px;
    }
    .popular-destination-item {
      margin: 13% 10%;
    }
    .mean-container .mean-nav ul li a.mean-expand {
      width: 92%;
    }
    .single-selections-card .selections-icon {
      display: block;
      margin-bottom: 15px;
    }
    .single-selections-card .selections-icon .location {
      margin-bottom: 15px;
    }
    .single-about-img .about-img-two {
      position: unset;
      margin-top: 15px;
    }
    .single-about-content {
      margin-left: 0;
    }
    .single-about-content ul {
      margin-top: 12px;
      margin-bottom: 18px;
    }
    .single-about-content ul li {
      font-size: 14px;
    }
    .about-area .about-shape-1 {
      display: none;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] {
      width: 35px;
      height: 35px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-travel-image {
      right: 0;
    }
    .popular-destination-slider .owl-stage-outer {
      padding: 0;
    }
    .single-great-places-card .great-places-list ul li {
      font-size: 14px;
    }
    .single-great-places-card .great-places-text {
      padding: 15px;
    }
    .single-great-places-card .great-places-text .d-flex p {
      font-size: 13px;
    }
    .single-great-places-card .great-places-text .d-flex p span {
      margin-left: 5px;
      font-size: 14px;
    }
    .single-great-places-card .great-places-text .d-flex ul li i {
      font-size: 15px;
    }
    .single-subscribe-content h2 {
      font-size: 30px;
      margin-right: 0;
    }
    .subscribe-from {
      padding-left: 0;
      margin-top: 15px;
    }
    .subscribe-from .newsletter-form .form-control {
      padding: 17px;
    }
    .subscribe-area .subscribe-shape-1 {
      display: none;
    }
    .subscribe-area .subscribe-shape-2 {
      display: none;
    }
    .subscribe-area .subscribe-shape-3 {
      display: none;
    }
    .subscribe-area .subscribe-shape-4 {
      display: none;
    }
    .travel-area .travel-shape-2 {
      display: none;
    }
    .travel-area .travel-shape-3 {
      display: none;
    }
    .single-travel-content .travel-odometer {
      text-align: center;
      margin-top: 10px;
    }
    .single-travel-content .travel-odometer h2 {
      font-size: 40px;
    }
    .single-travel-content .travel-odometer h2 .target {
      left: -10px;
    }
    .single-travel-content .travel-odometer p {
      font-size: 16px;
    }
    .single-travel-image {
      margin-left: 0;
      margin-right: 0;
      margin-top: 30px;
    }
    .single-travel-image .travel-shape-img {
      display: none;
    }
    .popular-destination-slider.owl-theme .owl-dots {
      position: absolute;
      left: 10px;
      bottom: -35px;
    }
    .popular-destination-slider.owl-theme .owl-dots .owl-dot span {
      width: 70px;
    }
    .popular-destination-area {
      padding-bottom: 145px;
    }
    .popular-destination-area .destination-btn {
      bottom: 50px;
      right: 0;
      right: auto;
    }
    .popular-destination-area #counter {
      display: none;
    }
    .single-explore-travel-content .section-title.left-title p {
      margin-top: 6px;
    }
    .single-explore-travel-content .default-btn.btn-style-one {
      margin-top: 15px;
    }
    .single-testimonials-card {
      padding: 20px;
    }
    .single-testimonials-card .d-flex .testimonials-text h3 {
      font-size: 17px;
    }
    .single-testimonials-card .d-flex .testimonials-text span {
      font-size: 14px;
    }
    .single-testimonials-card ul {
      margin-top: 8px;
      margin-bottom: 7px;
    }
    .single-testimonials-card ul li i {
      font-size: 13px;
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] {
      width: 35px;
      height: 35px;
      position: unset;
      font-size: 13px;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 18px;
    }
    .single-explore-travel-img {
      margin-top: 30px;
    }
    .single-explore-travel-img .explore-travel-shape-1 {
      display: none;
    }
    .explore-travel-area .explore-travel-shape-2 {
      display: none;
    }
    .explore-travel-area .explore-travel-shape-3 {
      display: none;
    }
    .single-blog-content {
      padding: 15px;
    }
    .single-blog-content .blog-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
      margin-top: 15px;
    }
    .footer-widget{
      margin-bottom: 20px;
    }
    .footer-widget.footer-left-widget {
      padding-left: 0;
      margin-top: 30px;
    }
    .footer-widget.footer-left-two-widget {
      padding-left: 0;
      margin-bottom: 30px;
      margin-top: 30px;
    }
    .footer-widget h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .footer-widget .list-widget li {
      margin-bottom: 8px;
    }
    .footer-widget .list-widget li a {
      font-size: 14px;
    }
    .footer-area .footer-shape-1 {
      bottom: -120px;
    }
    .footer-area::after {
      height: 100%;
      bottom: 0;
    }
    .destination-lists-area .col-lg-7 .col-lg-6:nth-child(4) .single-destination-card {
      margin-top: 30px !important;
    }
    .single-beautiful-place-item .beautiful-place-text h3 {
      font-size: 20px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .pt-100 {
      padding-top: 70px;
    }
    .pb-100 {
      padding-bottom: 70px;
    }
    .ptb-100 {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .pb-70 {
      padding-bottom: 40px;
    }
    .pb-90 {
      padding-bottom: 70px;
    }
    .pt-90 {
      padding-top: 90px;
    }
    p {
      font-size: 15px;
    }
    .single-shop-card .shop-text h3 {
      font-size: 20px;
    }
    .showing .from-group {
      margin-bottom: 20px;
      margin-top: 20px;
    }
    .related-products-area .section-title h2 {
      font-size: 28px;
    }
    .tours-details-tads .maps h3 {
      font-size: 28px;
    }
    .tours-details-tads .maps h3 b {
      font-size: 28px;
    }
    .single-faq-item .section-title h2 {
      font-size: 35px;
    }
    .single-destinations-details-content h2 {
      font-size: 28px;
    }
    .single-destinations-details-content h3 {
      font-size: 22px;
    }
    .single-destinations-details-content .destinations-history-item .destinations-history h4 {
      font-size: 18px;
    }
    .single-great-places-card .great-places-list {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-great-places-card .great-places-list ul li {
      font-size: 14px;
      padding-left: 10px;
    }
    .single-great-places-card .great-places-list.tours-list ul li {
      padding-left: 26px;
    }
    .single-great-places-card.single-great-places-card-two .great-places-list ul li {
      padding-left: 25px;
      font-size: 15px;
    }
    .single-great-places-card.single-great-places-card-two .great-places-list ul li:first-child {
      padding-left: 0;
    }
    .single-great-places-card.single-great-places-card-two .great-places-list ul li::after {
      right: -15px;
      top: -17px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list li {
      padding-left: 30px;
      font-size: 16px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-list li::after {
      right: -17px !important;
    }
    .my-account-content .section-title h2 {
      font-size: 30px;
    }
    .single-tours-content .tours-details-list ul {
      padding: 0 80px;
    }
    .single-about-three-content ul {
      margin-bottom: 20px;
      margin-top: 15px;
    }
    .switch-theme-mode {
      top: 25px;
      right: 50%;
      z-index: 9999;
    }
    .single-testimonials-three-card p {
      font-size: 15px;
    }
    .error-content h2 {
      font-size: 35px;
    }
    .shop-single-img {
      margin-right: 0;
      margin-bottom: 30px;
    }
    .privacy-text h3 {
      font-size: 22px;
    }
    .widget-area {
      margin-top: 30px;
    }
    .shop-single-content h2 {
      font-size: 28px;
    }
    .shop-single-content .details-two {
      font-size: 20px;
    }
    .single-contact-content {
      margin-bottom: 30px;
    }
    .single-contact-content .section-title h2 {
      font-size: 30px;
    }
    .contact-card {
      margin-top: 30px;
    }
    .leave-form h2 {
      font-size: 24px;
    }
    .main-nav .container-fluid {
      padding-left: 0;
      padding-right: 0;
      max-width: 720px;
    }
    .slick-prev::after {
      width: 40px;
      height: 40px;
      line-height: 45px;
      font-size: 20px;
      right: auto;
      left: 84px;
      top: unset;
      bottom: -16px;
    }
    .slick-slide {
      height: 62vh !important;
    }
    .slick-next::before {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      font-size: 20px;
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 23px;
      top: 2.3px;
    }
    .faqs-img {
      margin-left: 0;
      margin-top: 30px;
    }
    .faqs-img img {
      width: 100%;
    }
    .single-booking-item {
      margin-bottom: 30px;
    }
    .single-banner-content .explore-form .form-group.bg-left-content {
      padding-left: 0;
    }
    .single-banner-content .explore-form .form-group.bg-border {
      padding-left: 0;
    }
    .single-banner-content .explore-form .default-btn {
      float: left;
    }
    .single-testimonials-card ul {
      margin-top: 5px;
      margin-bottom: 5px;
    }
    .section-title.left-title p {
      margin-top: 10px !important;
    }
    .single-explore-travel-content .default-btn.btn-style-one {
      margin-top: 15px;
    }
    .single-travel-image {
      right: 0;
    }
    .customer-review h2 {
      font-size: 28px;
    }
    .tours-right-bar {
      margin-top: 35px;
    }
    .banner-two-area .banner-two-shape {
      display: none;
    }
    .destinations-imgs-2 {
      margin-bottom: 30px;
    }
    .destinations-widget {
      margin-top: 35px;
    }
    .single-destinations-details-content {
      padding-right: 0;
    }
    .single-tours-content {
      padding-right: 0;
    }
    .single-tours-content .tours-img .tours-card {
      padding: 19px 26px;
      left: 20px;
      top: 20px;
    }
    .single-tours-content h3 {
      font-size: 32px;
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-destination-card.destination-item {
      top: 0;
    }
    .single-beautiful-place-item .beautiful-place-text.beautiful-place-page {
      left: 0;
      right: 0;
    }
    .destination-lists-area .col-lg-3:nth-child(5) .single-destination-card {
      margin-top: 0;
    }
    .destination-lists-area .col-lg-3:nth-child(6) .single-destination-card {
      margin-top: 0;
    }
    .destination-lists-area .col-lg-3:nth-child(7) .single-destination-card {
      margin-top: 0;
    }
    .single-choose-us-content .section-title.left-title h2 {
      margin-right: 0;
    }
    .choose-us-img .choose-us-1 {
      left: 0;
    }
    .single-choose-us-content {
      margin-bottom: 30px;
    }
    .single-testimonials-img {
      margin-bottom: 40px;
      text-align: center;
    }
    .slick-slide {
      height: 81vh !important;
    }
    .single-banner-content.single-banner-content-three .explore-form::before {
      display: none;
    }
    .banner-three-area .banner-three-shape {
      display: none;
    }
    .single-selections-card.bg-color-3 {
      padding: 20px;
    }
    .single-selections-card.bg-color-3 p {
      font-size: 14px;
    }
    .single-about-three-img {
      padding-right: 0;
      text-align: center;
    }
    .single-about-three-img::after {
      left: 80px;
    }
    .great-places-three-area .container-fluid {
      left: auto;
    }
    .single-great-places-card.single-great-places-card-three {
      max-width: 425px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text h3 {
      font-size: 19px;
    }
    .great-places-three-slider.owl-theme .owl-nav {
      position: unset;
      margin-top: 30px;
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .single-beautiful-place-item .beautiful-place-text {
      max-width: unset;
      bottom: 20px;
      left: 20px;
      right: 20px;
      padding: 20px;
    }
    .single-callback-content .callback-counter-item {
      max-width: unset;
    }
    .single-special-content {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .single-special-content .special-item {
      max-width: unset;
      margin-left: 30px;
    }
    .single-persons-card .persons-img::after {
      top: 30px;
    }
    .single-testimonials-three-card {
      padding: 20px;
    }
    .single-testimonials-three-card .testimonials-three-img .testimonials-three-text h6 {
      font-size: 20px;
    }
    .single-testimonials-three-card .testimonials-three-img .testimonials-three-text span {
      font-size: 15px;
    }
    .beautiful-place-slider.owl-theme .owl-nav {
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .testimonials-three-slider.owl-theme .owl-nav {
      position: unset;
      margin-top: 30px !important;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 23px;
      top: 0;
    }
    .slick-next::after {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      left: 40px;
    }
    .slick-next::before {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      left: 30px;
    }
    .main-nav.main-nav-three.page-nav .others-option-vg .option-item button {
      color: #555555 !important;
    }
    .navbar-area {
      padding: 45px 0;
    }
    .navbar-area.bg-one-nav-color {
      background-color: #000000;
    }
    .navbar-area.bg-one-nav-color.is-sticky {
      background-color: #000000;
    }
    .navbar-area.bg-one-nav-color .mean-nav .others-option-vg .option-item button {
      color: #ffffff;
    }
    .navbar-area.navbar-area-two {
      background-color: #ffffff;
    }
    .navbar-area.navbar-area-two .mean-nav .others-option-vg .option-item button {
      color: #555555;
    }
    .navbar-area.navbar-area-two.is-sticky {
      background-color: #ffffff !important;
    }
    .navbar-area.navbar-area-three {
      background-color: #ffffff;
    }
    .navbar-area.navbar-area-three .mean-nav .others-option-vg .option-item button {
      color: #555555;
    }
    .navbar-area.navbar-area-three.is-sticky {
      background-color: #ffffff !important;
    }
    .navbar-area .mobile-nav .logo {
      top: -18px;
      max-width: 250px;
    }
    .navbar-area .others-option-for-responsive .others-options {
      margin-top: 33px;
      max-width: 247px;
    }
    .navbar-area .others-option-for-responsive .others-options button {
      border: none;
      background-color: transparent;
      font-size: 26px;
      margin-right: 15px;
    }
    .navbar-area .others-option-for-responsive {
      display: none !important;
    }
    .banner-three-area {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .banner-three-area .container-fluid {
      margin-right: unset;
      max-width: 720px;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .banner-three-area .banner-three-shape-2 {
      display: none;
    }
    .download-img {
      margin-top: 70px;
    }
    .download-img .download-img-two {
      left: 0;
      right: 0;
      top: -30px;
    }
    .mean-container .mean-nav ul li a.mean-expand {
      width: 92%;
    }
    .mean-nav .others-option-vg {
      position: absolute;
      top: -26px;
      right: 60px;
    }
    .mean-nav .others-option-vg .option-item button {
      border: none;
      background-color: transparent;
      font-size: 25px;
      margin-right: 20px;
      color: #555555;
    }
    .mean-container .mean-nav ul li a {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 400;
      font-size: 16px !important;
      color: #555555 !important;
    }
    .mean-container .mean-nav {
      margin-top: 45px;
    }
    .banner-three-img {
      margin-left: 0;
    }
    .banner-two-area {
      padding-top: 140px;
      padding-bottom: 70px;
    }
    .choose-us-img img {
      width: 100%;
    }
    .single-banner-content.single-banner-two-content h1 {
      font-size: 65px;
      margin-bottom: 15px;
    }
    .single-banner-content.single-banner-two-content h2 {
      font-size: 40px;
    }
    .single-banner-content.single-banner-two-content .explore-item {
      margin-bottom: 0;
    }
    .single-banner-content.single-banner-two-content .explore-item .explore-form {
      margin-bottom: 0;
    }
    .single-banner-content.single-banner-two-content .explore-item .explore-form::before {
      height: 106%;
    }
    .destination-lists-area .col-lg-7 .col-lg-6:nth-child(1) .single-destination-card {
      margin-top: 0;
    }
    .destination-lists-area .col-lg-7 .col-lg-6:nth-child(4) .single-destination-card {
      margin-top: 0;
    }
    .single-destination-lists-content {
      max-width: unset;
      margin-bottom: 40px;
    }
    .single-about-two-img {
      margin-bottom: 30px;
    }
    .single-about-two-img img {
      width: 100%;
    }
    .navbar-nav {
      max-height: 50vh;
      overflow-y: scroll;
      -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    }
    .navbar-nav::-webkit-scrollbar {
      width: 3px;
    }
    .navbar-nav::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    .navbar-nav::-webkit-scrollbar-thumb {
      background: #888;
    }
    .navbar-nav::-webkit-scrollbar-thumb:hover {
      background: #555;
    }
    .banner-one-area {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .banner-one-area .container-fluid {
      padding-left: 10px;
      padding-right: 10px;
      max-width: 720px;
    }
    .single-about-content ul {
      margin-top: 14px;
      margin-bottom: 23px;
    }
    .single-banner-content {
      text-align: center;
    }
    .single-banner-content h1 {
      font-size: 53px;
    }
    .single-banner-content p {
      font-size: 15px;
    }
    .single-banner-content .explore-item {
      margin-bottom: 50px;
    }
    .single-banner-content .explore-item .explore-form::before {
      height: 110%;
    }
    .single-banner-content .explore-item .explore-form .form-group {
      margin-bottom: 20px;
    }
    .single-banner-content .explore-item .explore-form .form-group.bg-border {
      margin-bottom: 0;
    }
    .single-banner-content .explore-item .explore-form .form-group::after {
      display: none;
    }
    .single-banner-content .explore-item .explore-form .form-group .form-label {
      float: left;
      margin-bottom: 10px;
    }
    .banner-one-area .banner-shape-1 {
      display: none;
    }
    .banner-one-area .banner-shape-2 {
      display: none;
    }
    .banner-one-area .banner-shape-3 {
      display: none;
    }
    .single-about-content {
      margin-left: 0;
      margin-top: 15px;
    }
    .section-title h2 {
      font-size: 34px;
      line-height: unset;
    }
    .about-area .about-shape-1 {
      right: 6%;
      bottom: 4%;
    }
    .great-places-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      font-size: 13px;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 18px;
      top: 3.5px;
    }
    .single-great-places-card .great-places-text {
      padding: 16px;
    }
    .single-great-places-card .great-places-text h3 {
      margin-bottom: 10px;
    }
    .subscribe-from {
      padding-left: 0;
      margin-top: 25px;
    }
    .single-subscribe-content h2 {
      margin-right: 0;
      font-size: 36px;
    }
    .subscribe-area .subscribe-shape-3 {
      display: none;
    }
    .single-travel-content .section-title.left-title {
      max-width: unset;
    }
    .travel-area .travel-shape-2 {
      top: 57px;
      left: 70px;
      right: 0;
    }
    .single-travel-image {
      margin-left: 0;
      margin-right: 0;
      margin-top: 40px;
    }
    .popular-destination-area {
      padding-top: 50px;
    }
    .popular-destination-slider.owl-theme .owl-dots .owl-dot span {
      width: 55px;
    }
    .popular-destination-item .popular-destination-content {
      padding: 15px;
    }
    .popular-destination-item .popular-destination-content .d-flex h3 {
      font-size: 19px;
    }
    .popular-destination-slider.owl-theme .owl-dots {
      left: 15%;
    }
    .single-testimonials-card p {
      font-size: 15px;
    }
    .testimonials-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      position: unset;
      font-size: 13px;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 18px;
      top: 3.5px;
    }
    .single-testimonials-card {
      padding: 20px;
    }
    .single-testimonials-card .d-flex .testimonials-text h3 {
      font-size: 20px;
    }
    .single-testimonials-card .d-flex .testimonials-text span {
      font-size: 15px;
    }
    .explore-travel-area {
      padding-bottom: 120px;
    }
    .single-explore-travel-img {
      text-align: left;
      margin-top: 40px;
    }
    .single-explore-travel-img .explore-travel-shape-1 {
      top: -30px;
      right: 18px;
    }
    .single-blog-content {
      padding: 15px;
    }
    .single-blog-content .blog-content h3 {
      margin-bottom: 15px;
      margin-top: 15px;
      font-size: 20px;
      line-height: 28px;
    }
    .footer-widget.footer-left-widget {
      padding-left: 0;
      margin-bottom: 30px;
    }
    .footer-widget.footer-left-two-widget {
      padding-left: 0;
    }
    .footer-widget h2 {
      font-size: 20px;
    }
    .footer-widget .list-widget li {
      margin-bottom: 10px;
    }
    .footer-widget .souile-footer-widget-list {
      margin-top: 20px;
    }
    .footer-widget .widget-contact-list.bgs-bottom {
      margin-bottom: 12px;
      margin-top: 17px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-nav::before {
      width: 20%;
      border-radius: 0px 0px 82px 0px;
    }
    .main-nav .container-fluid {
      padding-left: 0;
      padding-right: 0;
      max-width: 960px;
    }
    .main-nav .others-option-vg {
      margin-left: 20px;
    }
    .main-nav .others-option-vg .option-item .default-btn {
      font-size: 15px;
      padding: 19.5px 16px 13.5px 19px;
    }
    .main-nav .others-option-vg .option-item button {
      margin-right: 15px;
    }
    .main-nav nav .navbar-nav .nav-item {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-tours-content .tours-details-list ul li::after {
      right: -45px;
    }
    .customer-review .review-item .review-img12 .review-text h4 {
      font-size: 16px;
    }
    .leave-form h2 {
      font-size: 24px;
    }
    .customer-review h2 {
      font-size: 24px;
    }
    .single-shop-card .shop-text h3 {
      font-size: 20px;
    }
    .related-products-area .section-title h2 {
      font-size: 30px;
    }
    .tours-details-tads .maps h3 {
      font-size: 24px;
    }
    .tours-details-tads .maps h3 b {
      font-size: 24px;
    }
    .single-destinations-details-content h2 {
      font-size: 30px;
    }
    .single-destinations-details-content h3 {
      font-size: 22px;
    }
    .single-destinations-details-content .destinations-history-item .destinations-history h4 {
      font-size: 18px;
    }
    .banner-three-area .banner-three-shape-3 {
      display: none;
    }
    .single-banner-content .explore-form.explore-form-two .form-group {
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0;
    }
    .single-banner-content .explore-form.explore-form-two .default-btn.btn-style-one {
      padding: 15.5px 38px 13.5px 40px !important;
      font-size: 15px !important;
    }
    .single-banner-content .explore-form .form-group {
      margin-bottom: 15px;
      border-bottom: 1px solid #f9f9f9;
      padding-bottom: 10px;
    }
    .single-banner-content .explore-form .form-group.bg-border {
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0;
    }
    .single-banner-content .explore-form .default-btn.btn-style-one {
      padding: 15.5px 22px 13.5px 23px !important;
      font-size: 15px !important;
    }
    .popular-destination-img-item .destination-bgs-img10::after {
      left: 7px;
      top: 8px;
    }
    .single-great-places-card .great-places-list {
      margin-left: 15px;
      margin-right: 15px;
    }
    .single-great-places-card .great-places-list ul li {
      font-size: 14px;
      padding-left: 10px;
    }
    .single-great-places-card .great-places-list.tours-list ul li {
      padding-left: 15px !important;
    }
    .single-great-places-card .great-places-list.tours-list ul li:first-child {
      padding-left: 0 !important;
    }
    .single-great-places-card .great-places-list.tours-list ul li::after {
      right: -9px;
    }
    .error-content h2 {
      font-size: 38px;
    }
    .single-testimonials-three-card p {
      font-size: 15px;
    }
    .single-great-places-card .great-places-text {
      padding: 13px;
    }
    .single-great-places-card .great-places-text h3 {
      font-size: 18px !important;
      line-height: unset;
      margin-bottom: 10px;
    }
    .single-great-places-card .great-places-text .d-flex p {
      font-size: 18px;
    }
    .single-great-places-card .great-places-text .d-flex ul li i {
      font-size: 12px;
    }
    .single-tours-content .tours-details-list ul {
      padding: 0 80px;
    }
    .popular-post {
      padding: 20px;
    }
    .popular-post .popular-post-card .popular-post-content {
      margin-left: 15px;
    }
    .popular-post .popular-post-card .popular-post-content span {
      font-size: 14px;
    }
    .popular-post .popular-post-card .popular-post-content h3 {
      font-size: 14px;
    }
    .privacy-text h3 {
      font-size: 28px;
    }
    .slick-next::before {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      left: 50px;
    }
    .single-choose-us-content .section-title.left-title h2 {
      margin-right: 0;
    }
    .choose-us-img .choose-us-1 {
      left: 0;
    }
    .single-banner-content.single-banner-two-content h1 {
      font-size: 80px;
    }
    .single-banner-content.single-banner-two-content h2 {
      font-size: 55px;
      margin-bottom: 35px;
    }
    .single-banner-content.single-banner-two-content .explore-form .default-btn.btn-style-one {
      padding: 15.5px 29px 11.5px 31px;
      font-size: 18px;
      float: left;
    }
    .single-about-two-content .about-custom-card {
      padding: 10px;
    }
    .single-about-two-content .about-custom-card h4 {
      font-size: 13px !important;
    }
    .slick-prev::after {
      width: 40px;
      height: 40px;
      line-height: 43px;
      font-size: 22px;
      right: auto;
      top: unset;
      bottom: -16px;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .my-account-content {
      padding: 31px 20px;
    }
    .my-account-content .section-title h2 {
      font-size: 32px;
    }
    .my-account-content .border-or::before {
      width: 34%;
    }
    .my-account-content .border-or::after {
      width: 34%;
    }
    .my-account-content.register-form {
      padding: 20px;
    }
    .shop-single-img {
      margin-right: 20px;
    }
    .accordion-item .accordion-header .accordion-button {
      font-size: 15px;
    }
    .accordion-item .accordion-body p {
      font-size: 14px;
    }
    .single-contact-content .section-title h2 {
      font-size: 30px;
    }
    .banner-two-area .banner-two-shape {
      max-width: 300px;
    }
    .contact-card {
      padding: 25px 22px 25px 50px;
    }
    .contact-card .contact-icon {
      width: 32px;
      height: 32px;
      line-height: 38px;
      left: 9px;
    }
    .contact-card .contact-icon i {
      font-size: 20px;
    }
    .contact-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }
    .contact-card p {
      font-size: 14px;
    }
    .shop-single-content h2 {
      font-size: 28px;
    }
    .shop-single-content .details-two {
      font-size: 20px;
    }
    .single-tours-content h3 {
      font-size: 27px;
    }
    .single-faq-item .section-title h2 {
      font-size: 33px;
    }
    .tours-details-tads .tab-content {
      margin-top: 25px;
      margin-bottom: 25px;
    }
    .pagination-area.tours-pagination {
      margin-top: 0;
    }
    .pagination-area .page-numbers {
      width: 40px;
      height: 40px;
      line-height: 43px;
      font-size: 15px;
    }
    .single-great-places-card.single-great-places-card-three.tours-bg .great-places-text {
      padding: 20px;
    }
    .single-great-places-card.single-great-places-card-three.tours-bg .great-places-text h3 {
      font-size: 20px;
      line-height: 35px;
    }
    .single-great-places-card.single-great-places-card-three.tours-bg .great-places-text .d-flex p {
      font-size: 18px;
    }
    .single-great-places-card.single-great-places-card-three.tours-bg .great-places-text .d-flex p span {
      font-size: 14px;
    }
    .single-great-places-card.single-great-places-card-three.tours-bg .great-places-text .d-flex ul li i {
      font-size: 11px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text {
      padding: 15px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text h3 {
      font-size: 23px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex ul li i {
      font-size: 13px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex p {
      font-size: 18px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex p span {
      font-size: 14px;
    }
    .booking-tours-details-form {
      padding: 20px;
    }
    .travel-tips {
      padding: 20px;
    }
    .travel-tips h2 {
      font-size: 20px;
    }
    .single-tours-content {
      padding-right: 0;
    }
    .single-about-two-img .about-two-shape {
      max-width: 225px;
    }
    .single-about-two-img .about-two-text h3 {
      font-size: 22px;
    }
    .single-about-two-img .about-two-text p {
      font-size: 16px;
    }
    .single-destinations-details-content {
      padding-right: 10px;
    }
    .subscribe-from {
      padding-left: 0;
    }
    .categories-card {
      padding: 20px;
    }
    .popular-destination-img-item {
      padding: 20px 32px 20px 20px;
    }
    .tags-item {
      padding: 20px;
    }
    .single-destinations-details-content .single-destinations-card {
      padding: 13.5px 15px;
    }
    .single-destinations-details-content .single-destinations-card .destinations-text ul li {
      font-size: 13px;
    }
    .destinations-imgs-2 {
      position: relative;
      top: 5px;
    }
    .beautiful-place-area .beautiful-place-slider.owl-theme .owl-nav {
      margin-top: 0;
    }
    .banner-three-area .container-fluid {
      max-width: 960px;
      padding-right: 0;
      margin-right: auto;
      padding-left: 0;
    }
    .banner-three-area .banner-three-shape {
      max-width: 612px;
    }
    .banner-three-area .banner-three-shape-2 {
      right: 10%;
    }
    .single-selections-card.bg-color-3 {
      padding: 25px;
    }
    .single-selections-card.bg-color-3 p {
      font-size: 14px;
    }
    .great-places-three-slider.owl-theme .owl-nav {
      bottom: 14%;
    }
    .great-places-three-area .container-fluid {
      left: calc((100% - 975px)/2.4);
    }
    .great-places-three-area .section-title h2 {
      font-size: 27px;
    }
    .great-places-three-area .section-title p {
      font-size: 14px;
    }
    .beautiful-place-slider.owl-theme .owl-nav {
      margin-top: 30px !important;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      line-height: 45px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .single-beautiful-place-item .beautiful-place-text {
      left: 20px;
      right: 20px;
      padding: 20px;
    }
    .single-callback-content .callback-counter-count h2 {
      font-size: 40px;
    }
    .section-title h2 {
      line-height: unset;
      font-size: 40px;
    }
    .testimonials-three-area .section-title h2 {
      font-size: 35px;
      line-height: unset;
    }
    .choose-tour-card {
      padding: 15px;
    }
    .choose-tour-card h3 {
      font-size: 15px;
    }
    .single-special-content {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .single-special-content .special-item {
      margin-left: 50px;
    }
    .single-persons-card .persons-img::after {
      top: 25px;
    }
    .single-blog-content .blog-content h3 {
      font-size: 20px;
      margin-top: 15px;
      margin-bottom: 20px;
    }
    .testimonials-three-slider.owl-theme .owl-nav {
      right: -118px;
      bottom: 0;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .single-testimonials-three-card {
      padding: 20px;
    }
    .single-testimonials-three-card .testimonials-three-img img {
      margin-right: 10px;
    }
    .single-testimonials-three-card .testimonials-three-img .testimonials-three-text h6 {
      font-size: 20px;
    }
    .section-title h2 {
      font-size: 40px;
    }
    .single-about-three-content {
      padding-left: 0;
    }
    .single-banner-content.single-banner-content-three .explore-form .form-group {
      margin-bottom: 15px;
      border-bottom: 1px solid #f9f9f9;
      padding-bottom: 10px;
    }
    .single-banner-content.single-banner-content-three .explore-form .form-group.bg-border {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .single-banner-content.single-banner-content-three .explore-form .default-btn.btn-style-one {
      padding: 15.5px 16px 10.5px 19px;
      font-size: 15px;
    }
    .single-banner-content.single-banner-content-three h1 {
      font-size: 45px;
    }
    .single-banner-content.single-banner-content-three p {
      margin-bottom: 15px;
      font-size: 14px;
    }
    .slick-slide {
      height: 67vh !important;
    }
    .destination-lists-area .destination-lists-shape {
      max-width: 820px;
    }
    .great-places-two-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .choose-us-img .choose-us-1 {
      max-width: 250px;
    }
    .choose-us-img .choose-us-1 {
      max-width: 250px;
    }
    .myslider .item .single-testimonials-content {
      padding: 15px;
    }
    .slick-slide {
      height: 56vh !important;
    }
    .single-great-places-card.single-great-places-card-two .great-places-text h3 {
      font-size: 20px;
    }
    .single-great-places-card.single-great-places-card-two .great-places-text span {
      left: auto;
      right: 20px;
    }
    .single-great-places-card.single-great-places-card-two .great-places-list ul li::after {
      display: none;
    }
    .single-great-places-card.single-great-places-card-two .packages-btn {
      top: 42%;
    }
    .single-about-two-content .about-custom-card span {
      margin-right: 8px;
    }
    .single-about-two-content .about-custom-card h4 {
      font-size: 16px;
    }
    .banner-one-area .container-fluid {
      padding-left: 0;
      padding-right: 0;
      max-width: 960px;
    }
    .single-banner-content h1 {
      font-size: 58px;
    }
    .single-banner-content p {
      font-size: 16px;
    }
    .single-banner-content .explore-form .default-btn.btn-style-one {
      padding: 16.5px 13px 15.5px 15px;
      font-size: 14px;
    }
    .single-banner-content .explore-form .form-group::after {
      display: none;
    }
    .single-selections-card {
      padding: 20px;
    }
    .single-selections-card .selections-icon {
      display: block;
      margin-bottom: 13px;
    }
    .single-selections-card .selections-icon .location {
      margin-bottom: 20px;
    }
    .single-selections-card .selections-icon h3 {
      font-size: 20px;
    }
    .single-about-content {
      margin-left: 0;
    }
    .single-about-content .section-title h2 {
      font-size: 43px;
    }
    .single-about-img .about-img-two {
      right: -5px;
    }
    .great-places-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-subscribe-content h2 {
      font-size: 32px;
      margin-right: 0;
    }
    .single-subscribe-content p {
      font-size: 15px;
    }
    .single-travel-content .travel-odometer h2 {
      font-size: 50px;
    }
    .single-travel-content .travel-odometer p {
      font-size: 17px;
    }
    .single-travel-image {
      right: 0;
      margin-left: 50px;
    }
    .single-banner-content .explore-form .form-group.bg-border {
      padding-left: 0;
    }
    .single-banner-content .explore-form .form-group.bg-left-content {
      padding-left: 0;
    }
    .single-banner-content .explore-form .default-btn.btn-style-one {
      padding: 11.5px 13px 10.5px 17px;
      font-size: 13px;
      float: left;
    }
    .popular-destination-slider.owl-theme .owl-dots {
      left: 125px;
      bottom: -78px;
    }
    .popular-destination-slider.owl-theme .owl-dots .owl-dot span {
      width: 70px;
    }
    .popular-destination-area .destination-btn {
      bottom: 97px;
      right: 6%;
    }
    .single-testimonials-card {
      padding: 30px;
    }
    .testimonials-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-explore-travel-content .section-title h2 {
      font-size: 35px;
      margin-bottom: 10px;
    }
    .single-blog-content {
      padding: 15px;
    }
    .footer-widget.footer-left-widget {
      padding-left: 30px;
    }
    .footer-widget.footer-left-two-widget {
      padding-left: 0;
    }
    .footer-widget p {
      font-size: 13px;
    }
    .footer-widget h2 {
      font-size: 22px;
    }
    .footer-widget .list-widget li a {
      font-size: 14px;
    }
    .footer-widget .widget-contact-list {
      margin-bottom: 25px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .main-nav::before {
      width: 16%;
      border-radius: 0px 0px 82px 0px;
    }
    .main-nav .container-fluid {
      /* padding-left: 0;
      padding-right: 0;
      max-width: 1140px; */
    }
    .main-nav .others-option-vg {
      margin-left: 40px;
    }
    .main-nav .others-option-vg .option-item .default-btn {
      font-size: 15px;
      padding: 17.5px 16px 12.5px 19px;
    }
    .main-nav .others-option-vg .option-item button {
      margin-right: 25px;
    }
    .main-nav nav .navbar-nav .nav-item {
      /*margin-left: 33px !important;*/
      /* margin-right: 15px; */
    }
    .banner-three-area .container-fluid {
      max-width: 1140px;
      padding-right: 0;
      margin-right: auto;
      padding-left: 0;
    }
    .banner-three-area .banner-three-shape {
      max-width: 720px;
    }
    .shop-single-content h2 {
      font-size: 36px !important;
    }
    .single-destinations-details-content h2 {
      font-size: 30px;
    }
    .single-destinations-details-content h3 {
      font-size: 22px;
    }
    .single-destinations-details-content .destinations-history-item .destinations-history h4 {
      font-size: 18px;
    }
    .single-great-places-card .great-places-list {
      margin-left: 25px;
      margin-right: 25px;
    }
    .single-great-places-card .great-places-list ul li {
      font-size: 16px;
      padding-left: 18px;
    }
    .single-great-places-card .great-places-list.tours-list ul li {
      padding-left: 34px;
    }
    .single-great-places-card .great-places-list.tours-list ul li::after {
      right: -19px;
    }
    .single-banner-content.single-banner-two-content .explore-form .default-btn.btn-style-one {
      padding: 16.5px 26px 12.5px 30px;
      font-size: 18px;
    }
    .single-about-two-content .about-custom-card h4 {
      font-size: 15px;
    }
    .slick-next::before {
      position: relative;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 40px;
      top: 15px;
      left: 50px;
    }
    .slick-prev::after {
      width: 40px;
      height: 40px;
      line-height: 43px;
      font-size: 22px;
      right: auto;
      top: unset;
      bottom: -16px;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-destinations-details-content .single-destinations-card {
      padding: 16.5px 20px;
    }
    .single-destinations-details-content .single-destinations-card .destinations-text ul li {
      font-size: 15px;
    }
    .popular-post {
      padding: 20px;
    }
    .popular-post .popular-post-card .popular-post-content {
      margin-left: 15px;
    }
    .popular-post .popular-post-card .popular-post-content span {
      font-size: 14px;
    }
    .popular-post .popular-post-card .popular-post-content h3 {
      font-size: 17px;
    }
    .single-faq-item .section-title h2 {
      font-size: 38px;
    }
    .my-account-content .border-or::before {
      width: 34%;
    }
    .my-account-content .border-or::after {
      width: 34%;
    }
    .error-content h2 {
      font-size: 38px;
    }
    .single-contact-content .section-title h2 {
      font-size: 35px;
    }
    .single-banner-content .explore-form .form-group::after {
      right: -62px !important;
    }
    .contact-card {
      padding: 25px 22px 25px 79px;
    }
    .contact-card .contact-icon {
      width: 45px;
      height: 45px;
      line-height: 50px;
      left: 20px;
    }
    .contact-card .contact-icon i {
      font-size: 20px;
    }
    .single-travel-content .travel-odometer h2 {
      font-size: 55px;
    }
    .banner-two-area .banner-two-shape {
      max-width: 300px;
    }
    .shop-single-img {
      margin-right: 20px;
    }
    .shop-single-content .details-two {
      font-size: 20px;
    }
    .related-products-area .section-title h2 {
      font-size: 36px;
      line-height: 58px;
    }
    .single-choose-us-content .section-title.left-title h2 {
      margin-right: 0;
    }
    .choose-us-img .choose-us-1 {
      left: 0;
    }
    .single-tours-content {
      padding-right: 0;
    }
    .single-tours-content h3 {
      font-size: 34px;
    }
    .booking-tours-details-form {
      padding: 25px;
    }
    .travel-tips {
      padding: 25px;
    }
    .popular-destination-img-item {
      padding: 25px 35px 25px 25px;
    }
    .single-banner-content .explore-form .default-btn.btn-style-one {
      font-size: 13px;
      float: left;
    }
    .slick-slide {
      height: 66vh !important;
    }
    .single-banner-content.single-banner-content-three .explore-form .default-btn.btn-style-one {
      padding: 14.5px 12px 9.5px 10px;
      font-size: 14px;
    }
    .single-banner-content.single-banner-content-three p {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .single-banner-content.single-banner-content-three h1 {
      font-size: 56px;
      margin-bottom: 15px;
    }
    .single-selections-card.bg-color-3 {
      padding: 30px;
    }
    .great-places-three-area .container-fluid {
      left: calc((100% - 1140px)/2.4);
    }
    .great-places-three-area .section-title h2 {
      font-size: 36px;
      line-height: unset;
    }
    .great-places-three-slider.owl-theme .owl-nav {
      bottom: 11%;
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
    }
    .single-blog-content .blog-content h3 {
      font-size: 19px;
      margin-bottom: 20px;
      margin-top: 10px;
    }
    .single-beautiful-place-item .beautiful-place-text {
      left: 20px;
      right: 20px;
      padding: 20px;
    }
    .choose-tour-card {
      padding: 15px;
    }
    .choose-tour-card h3 {
      font-size: 18px;
    }
    .beautiful-place-area .single-beautiful-place-item {
      margin-bottom: 30px;
    }
    .single-special-content {
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .single-special-content .special-item {
      /* margin-left: 50px; */
    }
    .testimonials-three-slider.owl-theme .owl-nav {
      bottom: -10px;
      right: -121px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] {
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .testimonials-three-area .section-title h2 {
      font-size: 44px;
      line-height: unset;
    }
    .testimonials-three-area .section-title p {
      font-size: 14px;
    }
    .single-callback-content .section-title p {
      font-size: 15px;
    }
    .beautiful-place-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      width: 40px;
      height: 40px;
      line-height: 45px;
    }
    .beautiful-place-slider.owl-theme .owl-nav [class*=owl-] i {
      font-size: 25px;
      top: 0;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text {
      padding: 15px;
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex p {
      font-size: 16px;
      margin-bottom: 0;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex p span {
      font-size: 14px;
    }
    .single-great-places-card.single-great-places-card-three .great-places-text .d-flex ul li i {
      font-size: 13px;
    }
    .destination-lists-area .destination-lists-shape {
      max-width: 940px;
    }
    .great-places-two-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .great-places-two-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .banner-one-area .container-fluid {
      padding-left: 0;
      padding-right: 0;
      max-width: 1140px;
    }
    .single-banner-content h1 {
      font-size: 70px;
    }
    .single-banner-content p {
      font-size: 16px;
    }
    .single-banner-content .explore-form .form-group::after {
      right: -35px;
    }
    .default-btn {
      font-size: 16px;
    }
    .single-selections-card {
      padding: 20px;
    }
    .single-selections-card .selections-icon {
      display: block;
    }
    .single-selections-card .selections-icon .location {
      margin-bottom: 20px;
    }
    .great-places-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .great-places-three-slider.owl-theme .owl-nav [class*=owl-] i {
      top: 1px;
    }
    .testimonials-three-slider.owl-theme .owl-nav [class*=owl-] i {
      top: 0;
    }
    .persons-travel-slider.owl-theme .owl-nav [class*=owl-] i {
      top: 3px;
    }
    .single-subscribe-content h2 {
      font-size: 41px;
    }
    .popular-destination-slider.owl-theme .owl-dots {
      left: 125px;
      bottom: -90px;
    }
    .popular-destination-slider.owl-theme .owl-dots .owl-dot span {
      width: 90px;
    }
    .testimonials-slider.owl-theme .owl-nav {
      margin-top: 30px;
    }
    .testimonials-slider.owl-theme .owl-nav [class*=owl-] {
      position: unset;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    .single-testimonials-card {
      padding: 40px;
    }
    .single-explore-travel-content .section-title h2 {
      font-size: 43px;
    }
    .single-blog-content {
      padding: 15px;
    }
    .footer-widget.footer-left-widget {
      padding-left: 50px;
    }
    .footer-widget.footer-left-two-widget {
      padding-left: 0;
    }
  }
  
  @media only screen and (min-width: 1550px) {
    .banner-one-area .container-fluid {
      max-width: 1620px;
      padding-left: 0;
      padding-right: 0;
    }
    .banner-one-area .banner-shape-1 {
      left: 3.5%;
      top: 13.5%;
    }
    .main-nav .container-fluid {
      max-width: 1620px;
      padding-left: 0;
      padding-right: 0;
    }
    .main-nav::before {
      width: 16%;
    }
    .single-banner-content h1 {
      font-size: 100px;
    }
    .about-area .about-shape-1 {
      right: 10%;
    }
    .popular-destination-area .destination-btn {
      right: 16%;
    }
    .subscribe-area .subscribe-shape-2 {
      left: 4%;
      max-width: 100%;
      top: 31%;
    }
    .subscribe-area .subscribe-shape-1 {
      right: 8%;
      top: 55%;
    }
    .subscribe-area .subscribe-shape-3 {
      right: 21%;
    }
    .great-places-three-slider.owl-theme .owl-nav {
      bottom: 17%;
    }
    .banner-three-area .container-fluid {
      max-width: 1782px;
      padding-right: 0;
      margin-right: inherit;
    }
    .banner-three-area .banner-three-shape {
      left: 104px;
      max-width: 1065px;
    }
    .banner-three-area .banner-three-shape-2 {
      right: 15%;
      top: 6.8%;
      max-width: unset;
      margin-left: unset;
      margin-right: unset;
    }
    .banner-three-area .banner-three-shape-3 {
      left: 7%;
      bottom: -12px;
      max-width: unset;
    }
    .banner-three-img {
      margin-left: -190px;
    }
    .about-three-area .about-three-shape {
      right: 17%;
    }
    .slick-slide {
      height: 54vh !important;
    }
    .popular-destination-area #counter {
      left: 15.8%;
      bottom: 9.8%;
    }
  }
  
 
  /*# sourceMappingURL=responsive.css.map */
/* Start Shop Area