/**
* Template Name: AgriCulture
* Template URL: https://bootstrapmade.com/agriculture-bootstrap-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;,  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Oswald", sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #231f20; /* Background color for the entire website, including individual sections */
  --default-color: #727272; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #116530; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f15e31; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f8f8f8; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #231f20; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #bababa; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ea359;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--nav-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--nav-hover-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email 
 Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin: 0 15px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    /*padding: 18px 15px;*/
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-block;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
.navmenu a::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: var(--nav-hover-color);
    transition: width .3s;
    position: absolute;
    bottom: -33px
}

.navmenu a:hover::after {
    width: 100%;
    //transition: width .3s;
}
  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    right: -15px;
    top: -56px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);

  }

  .navmenu .dropdown ul li {
    /*min-width: 200px;*/
  }

  .navmenu .dropdown ul a {
    padding: 10px 10px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--nav-dropdown-color);
    font-weight: 400;
  }
.navmenu .dropdown ul a::after {
    background: none;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    background-color: #303030;
    border: none;
  }
  .navmenu .dropdown ul a:hover::after {
    background: none;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 40px;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #7e7e7e;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #383838;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #383838;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--nav-hover-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 15px;
      font-family: "Oswald", sans-serif;
}


.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links li {
  font-size: 14px;
    margin-bottom: 13px;
    padding-left: 0;
    margin-top: 13px;
    line-height: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #303030;

}
.footer-column-divider{
  
    border-left: 1px solid #303030;
   
    padding-left: 30px;
    padding-right: 30px;
}
.footer-column-divider:first-child {
    border:none;
}
.footer .footer-links li:first-child {
  padding-top: 0;
}

.footer .footer-links a {
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links a:hover {
  color: var(--nav-hover-color);
}

.footer .footer-contact div {
  margin-bottom: 7px;
}
.footer .footer-contact i {
  font-size: 15px ;
  color: #ffffff ;
  margin-right: 10px ;
}
.footer .footer-contact span {
  color: #f2e020;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-copy {
  padding: 30px 0;
  text-transform: uppercase;
  color: #838383;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #f15e31 transparent #f15e31 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: url(../img/page-title-background.jpg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #f8f8f8;
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 21px;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #343434;
    font-family: "Oswald", sans-serif;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  height: calc(100vh - 90px);
  padding: 0;
  background: url(../img/baftravel-hero-mobile.jpg) no-repeat;
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  display: flex; /* Flexbox for centering content */
  align-items: end; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  text-align: center; /* Centers text inside the hero */
  padding-bottom: 100px;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
  .hero {
  height: calc(100vh - 90px);
  padding: 0;
  background: url(../img/baftravel-hero.jpg) no-repeat;
  background-attachment: fixed; /* Enables Parallax scrolling */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  background-position-y: 0px;
  display: flex; /* Flexbox for centering content */
  align-items: end; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  text-align: center; /* Centers text inside the hero */
  padding-bottom: 100px;
}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-title h2 {
  color: var(--accent-color);
  font-size: 20px;
}

.services .content .service-item {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.services .content .service-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .content .service-item .service-item-icon {
  position: relative;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.services .content .service-item .service-item-icon img {
  width: 50px;
}

.services .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 400;
}

.services .content .service-item .service-item-content p {
  font-size: 15px;
}

@media (min-width: 769px) {
  .services .content [class^=col-]:nth-child(4n+4) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:nth-last-child(-n+4) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 768px) {
  .services .content [class^=col-]:nth-child(2n+2) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:last-child .service-item,
  .services .content [class^=col-]:nth-last-child(2) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .services .content [class^=col-] .service-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about .content .img-overlap {
  margin-top: -150px;
}

.about p {
  color: var(--contrast-color);
}

.about .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
  /*margin-bottom: 200px;*/
}

.services-2 .section-title {
  text-align: left;
}



.services-2 .section-title p {
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  /*margin-bottom: -200px;*/
}

.services-2 .swiper-wrapper {
  height: auto;
}
.services-2 .swiper {
  /*overflow: initial;*/
}
.excursiones-item {
  position: relative;
  /*overflow: hidden;*/
}
.tour-related .excursiones-item {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 20px rgba(0,0,0,.2);
    /* -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .2); */
}

.excursiones-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.excursiones-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.excursiones-item .excursiones-item-contents {
 
    line-height: 1;
    z-index: 2;
    position: absolute;
    top: 30px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px 14px 30px;
    left: -10px;
    color: #ffffff;
    background-color: #009ad4;

}
.excursiones-item-contents-cornor {
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    background: url(../img/ribbon-corner-shadow.png) 0px 0px no-repeat;
    border-width: 0 10px 10px;
    border-left-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
}
.excursiones-item h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize; 
  font-family: "Oswald", sans-serif;
  color: #333;
}
.excursiones-item .excursiones-price {
  text-decoration: line-through;
  color: #aaa;
}
.excursiones-item .excursiones-discount-price {
      font-size: 19px;
    line-height: 1;
    margin-top: 6px;
    font-weight: 800;
  color: #009ad4;
}
.excursiones-item .excursiones-time {
margin-bottom: 9px;
    font-weight: 500;
    font-size: 14px;
    color: #727272;
    }

.excursiones-item .excursiones-time i {
  color: #009ad4;
      width: 20px;
    display: inline-block;
    margin-right: 4px;
}

.excursiones-item-info {
  padding: 0 10px; 
}

.tourmaster-tour-item .tourmaster-tour-title a {
    color: #333;
}
.services-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.services-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.2);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: -80px;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: none;
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: none;
  opacity: 0.3;
}

.services-2 .navigation-prev {
  right: 50px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
    padding: 0 15px;
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

.info-content h2 {
  font-size: 38px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #193555;
        display: inline-block;
    text-transform: uppercase;
        font-family: "Oswald", sans-serif;
}
.info-content p {
    color: #687d8e;
}
.info-content a {
    color: #009ad4;
}
.info-content a:hover {
    color: #9ed7cf;
}
.info-content-divider {
    border-color: #ffa019;
    border-width: 4px;
   width: 50px;
    border-bottom-style: solid;
}
.info-action a {
  font-size: 17px;
  font-weight: 600;
  color: #009ad4;
  padding-left: 0px;
}

.location-info h3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: none;
  color: #193555;
  font-family: "Oswald", sans-serif;
}
.location-info p {
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  font-family: "Oswald", sans-serif;
  color: #383838;
  letter-spacing: 2px;
}

.galery-img-cover {
  background: url(../img/home-galery6.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.galery-info img {
  max-width: 100%;
  height: auto;
}
.galery-move {
  margin-top: -8px;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonials .testimonial blockquote p {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .content {
  padding: 20px 0;
}

.call-to-action .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
}

.call-to-action .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrrast-color);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.about-3 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-3 .list-check {
  margin-bottom: 50px;
}

.about-3 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-3 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}

.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team .person img {
  transition: 0.3s all ease;
}

.team .person .person-contents {
  text-align: center;
}

.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team .person .person-contents .position {
  color: var(--accent-color);
}

.team .person:hover img {
  transform: scale(1.05);
}

.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}



/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--nav-hover-color);
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--nav-hover-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.contact .info-item a:hover {
  color: var(--nav-hover-color);
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--nav-hover-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

/*.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}*/

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*whatsapp*/


#whatsappMain > * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    box-sizing: border-box !important;
    bottom: 14px;
    right: 16px;
    // opacity: 0;
    // transition: opacity 0.5s;
    box-sizing: border-box;
    position: fixed !important;
    z-index: 9999999999 !important;
    direction: ltr;
    text-align: right;
    display: false;
    align-items: false;
    flex-direction: false;
}

.whatsapp-label {
    display: flex;
    margin: 7px;
    position: relative;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
.whatsapp-label-budget {
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    flex-shrink: 0;
    border: 1px solid rgb(226, 226, 226);
    border-radius: 5px;
    background: white;
    cursor: pointer;
    margin: auto 31px auto auto;
    max-width: 172px;
    max-height: 65px;
    display: flex;
    order: 1;
    text-decoration: none !important;
    color: rgb(0, 0, 0) !important;
}


.whatsapp-label-link {
    transform: translateX(0px);
    position: relative;
    animation-duration: 0.64s;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-delay: 0.16s;
    animation-fill-mode: backwards;
    animation-name: jTSRH;
}
.whatsapp-label-budget::before {
    content: "";
    position: absolute;
    background: white;
    border-bottom: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
    right: -5px;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    z-index: 1;
    transform: rotate(-45deg);
}

.whatsapp-label-budget::after {
    content: "";
    position: absolute;
    background: white;
    border-bottom: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
    right: -5px;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    z-index: 1;
    transform: rotate(-45deg);
}

.whatsapp-sms {
    text-align: center;
    padding: 7px 10px;
    line-height: 16px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    margin: auto;
}
.whatsapp-icon {
    order: 2;
    position: relative;
}
.whatsapp-icon-link {
    display: block;
    flex-shrink: 0;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    order: 2;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    transition: 0.5s;
    position: relative;
    z-index: 200;
    text-decoration: none !important;
    background-color: rgb(77, 194, 71) !important;
}

.btn-primary {
  color: #fff;
  background: var(--nav-hover-color);
  border-radius: 50px;
  padding: 15px 20px;
  border: none;
}
.btn-primary:hover {
  color: #fff;
  background: #dd9933;
  border-radius: 50px;
  padding: 15px 20px;
  border: none;
}

/*TOUR*/
.tour-page-title {
  height: calc(100vh - 90px);
  
  position: relative;
  overflow: hidden;
}

.tour-page-title.todo-glaciares{
  background: url(../img/hero-todo-glaciares.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.full-day-torres-del-paine {
  background: url(../img/hero-full-day-torres-del-paine.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.marpatag-gourmet {
  background: url(../img/hero-marpatag-gourmet.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.nativo-experience {
  background: url(../img/hero-nativo-experience.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.tour-page-title.safari-nautico {
  background: url(../img/hero-safari-nautico.jpg) no-repeat;
  background-size: cover;
  background-position: top;
}
.tour-page-title.full-day-chalten {
  background: url(../img/hero-full-day-chalten.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.tour-page-title.minitrekking {
  background: url(../img/hero-minitrekking.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.nibepo-aike {
  background: url(../img/hero-nibepo-aike.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.kayak-darwin {
  background: url(../img/hero-kayak-darwin.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.cerro-frias-4×4 {
  background: url(../img/cerro-frias-1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.perito-moreno-con-guia {
  background: url(../img/perito-moreno-con-guia.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.bus-perito-moreno-sin-guia {
  background: url(../img/bus-perito-moreno-sin-guia.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.kayak-moreno-experience {
  background: url(../img/kayak-moreno-experience.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.bus-chalten-por-tramo {
  background: url(../img/bus-chalten-por-tramo.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.mil-outdoor-4x4-balcon-el-calafate-quads {
  background: url(../img/mil-outdoor-4x4-balcon-el-calafate-quads.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title.mil-outdoor-4x4-balcon-el-calafate {
  background: url(../img/mil-outdoor-4x4-balcon-el-calafate-header.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.tour-page-title h1{  
  font-size: 40px;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px #060606;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding-top: 20vh;
}


.tour-content {
  display: inline-block;
}
.tour-sidebar {
  position:relative; 
  margin-top:-204px; 
}

.tour-content > div {
  padding: 78px 0 0;
  display: inline-block;

}

.tour-content h2 {
  font-size: 24px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: none;
    color: #383838;
    margin-bottom: 25px;
}
.tour-content h2 i {
  font-size: 20px;
}

.tour-content p {
  color: #727272;
  line-height: 1.5;
  font-size: 15px;
}

.tour-content .swiper-wrapper {
    margin-bottom: 40px;
    
}

.tour-info {}

.tour-info h3 {
      font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.tour-info h3 i {
  color: #009ad4;
  font-size: 25px
}

.tour-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-info li { 
  margin-bottom: 15px
}

.tour-info li i {
    font-size: 16px;
    color: #9ed7cf;
    margin-left: 5px;
    margin-right: 10px;
}

.tour-line-divider {
  border-bottom: 1px solid var(--default-color)
}

.tour-resume {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
    
    text-align: center;
}
.tour-resume-price {
    background: rgba(0, 154, 212, .9);
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
    box-shadow: 0px -2px 3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px -2px 3px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px -2px 3px rgba(0, 0, 0, .2);

}
.tour-info-desccount {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  padding: 12px;
  color: #fff;
  height: 60px;
}
.tour-info-price {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.tour-info-price:before {
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f02b";
    font-size: 23px;
    margin-right: 15px;
        position: absolute;
    top: 50%;
    left: 40px;
}
.price-tooltip {
  vertical-align: top;
  color: #b5b5b5;
  font-size: 12px
}
.tour-price-title {}
.tour-price {
  font-size: 15px;
    font-weight: 500;
    color: #b5b5b5;
    height: 23px;
}
.tour-price span {
    text-decoration: line-through;
         
}
.tour-price-disccount {
  font-size: 32px;
    font-weight: 800;
    color: #fff
}
.tour-booking {
   background: #f8f8f8;
}
.tour-status {
  padding: 40px 34px;
  position: relative; 
}

.tour-booking-actions {
  display: flex;
  border-top: 1px solid #ebebeb;
  text-align: center;
}
.tour-save-wish-list {
      padding: 28px 10px;
    text-align: center;
    
    border-right: 1px solid #ebebeb;
    cursor: pointer;
    line-height: 1;
}
.tour-save-wish-list-icon-wrap {

}
.tour-icon-inactive  {}
.tour-view-count {
  padding: 28px 0;
  text-align: center;
  overflow: hidden;
  line-height: 1;
  margin: 0 auto;
}
 .tour-view-count i {
  color: #009ad4;
}

.info-questions {
  width: 100%;
  font-size: 13px;
    padding: 40px 35px 10px;
    position: relative;
    background: url(../img/fondo-2-1.jpg);
    background-size: cover;
    background-position: center;
}
.info-questions h3 {
  font-size: 21px;
  font-size: #fff;
}
.info-questions p {
  font-size: 13px;
  font-size: #fff;
  line-height: 1.5;
  color: rgb(201, 226, 255);
}

.info-questions-contact a {
  color: #fff;
}
.info-questions-contact a:hover {
  color: var(--nav-hover-color)
}
.info-questions-contacts i {
  font-size: 20px ;color: #ffa11a ;margin-right: 10px;
}

.tour-schedule {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: none;
  font-family: "Oswald", sans-serif;
}

.tour-schedule-corner,
.tour-schedule-corner-2,
.tour-schedule-step {
  display: flex;
  align-items: center;
}
.tour-schedule h4 {
  font-size: 20px;
}

.tour-schedule-corner span {
  background: #445c98;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 56px;
  text-align: center;
  margin-right: 30px;
}

.tour-schedule-corner-2 span {
  background: #f15d31;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 56px;
  text-align: center;
  margin-right: 30px;
}
.tour-schedule-corner-2 .tour-schedule-hour {
    font-size: 11px;
    background: transparent;
    width: inherit;
    height: inherit;
    line-height: 1;
    margin: 0;
  }
.tour-schedule-corner h4 {
  color: #383838;
  margin-bottom: 0;
}
.tour-schedule-corner p {
      font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-style: italic;
    color: #727272
}

.tour-schedule-step {
  padding: 15px 50px 15px 60px;
    border-left: 4px solid  #445c98;
    margin-left: 30px;
    /*width: 380px;*/
}
.tour-schedule-step-2 {
  padding: 15px 50px 15px 80px;
    border-left: 4px solid  #f15d31;
    margin-left: 30px;
}
.tour-schedule-step span {
  margin-right: 10px;
}
.tour-schedule-step h4 {
  font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: #727272;
}

.tour-explanation {
  background: #ebeced;
  padding: 10px 5px;
  border-radius: 3px;
  color: #919192;
  font-size: 12px;
  font-weight:400;
}
.tour-service-include i {
  color: #445c98;
  font-size: 16px;
}
.tour-service-exclude i {
  color: #f15d31;
  font-size: 16px;
}
.tour-service-charge {
  color: #666666;
}

.cicle-item img {

}
.cicle-item-img {
    position: relative;
}
.cicle-item-img .item-overflow {
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    text-align: center;
     transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
}
.cicle-item-img .item-overflow:hover {
    opacity: 1;
    filter: alpha(opacity = 100);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
   
}


.item-overflow-title{
  text-align: center;
  position: absolute;
  top: calc(50% - 10px);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
    line-height: 1.4;
    font-family: "Oswald", sans-serif;
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    line-height: 1.55;
    display: block;
    color: #fff;
}

.sidebar-item-description {

}

.sidebar-item-description-table {
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-item-description-table dl {
  display: flex;
}
.sidebar-item-description-table dt {
  width: 30%;
  color: #343434;
}

.tour-menu {
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
  width: 100%;
  z-index: 999999999;
}
.tour-menu-tab-item {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 500;
    padding: 28px 25px 28px;
    display: inline-block;
    margin-right: 10px;
}

.tour-menu-tab-item.tab-active {
    color: #1b1b1b;
  }
.tour-menu-tab-item {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 500;
    padding: 28px 0;
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
.tour-menu-tab-item:hover {
    color: #1b1b1b;
  }
.tour-menu-tab-item::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: #009ad4;
    transition: width .3s;
    position: absolute;
    bottom: 0px
}

.tour-menu-tab-item:hover::after {
    width: 100%;
    //transition: width .3s;
    color: #1b1b1b;
}

@media (min-width: 1200px) {
  .tour-page-title h1{  
  font-size: 72px;
  padding-top: calc(50vh - 135px);
}
  .tour-sidebar {
    position:absolute; 
    right: 0; 
    top: 0px; 
    margin-top:-284px; 
    width: 380px;
    z-index: 999999999;
  }

}

.contact .congrats {
  background-color: var(--nav-hover-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .congrats h3 {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.contact .congrats p {
  color: #eee;
  margin-bottom: 30px;
  font-size: 15px;
}