/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: #384294;
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: #384294;
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/
a  {
  text-decoration: none;
  color: white;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { background: var(--white); }





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}
.btn3{
  font-size: 20px;
  padding: 20px 60px;
}


.btn-primary {
  background: #588cd0;
  border-color: #588cd0;
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary { border-color: var(--white); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: #636774;
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 2rem;
  
}

.card-text {
  color: var(--black-coral);
  font-size: 17px;
}

.text0{
  font-size: 16px;
  letter-spacing: normal;
}



/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
  background-color: #fff;
 
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  
  width: 100%;
  transition: var(--transition);
  /* border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); */
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: #fff;
  
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
  /* margin-top: 0px; */
  
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background:#588cd0;
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }


.header-top .logo img {width: 200px;  }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #588cd0;
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn { font-size: 20px; }

/* .header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); } */

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
  margin-top:50px;
  
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: #588cd0;
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 25px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
 
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
  
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 15px;
}

.navbar-top .logo img { width: 150px; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { 
 
  border-top: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  color: #588cd0 !important;
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../img/bar\ y\ shut.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* background-color: hsla(198, 29%, 14%, 0.7); */
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
  width: 80%;
  justify-content: center;
 
}

.hero-title { margin-bottom: 20px;
font-size: 6vh; 
color: #fff; }

.hero-text {
  color: #fff;
  font-size: 3vh;
  margin-bottom: 40px;
}


.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}





/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.tour-search-form .input-label {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.tour-search-form .input-field {
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  border-radius: 50px;
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.tour-search-form .input-wrapper { margin-bottom: 15px; }

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}





/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.popular-card .card-img { height: 100%; }

.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-25);
  padding: 20px;
}


.popular-card .card-rating {
  /* background: var(--bright-navy-blue); */
  color: goldenrod;
  position: absolute;
  top: 0;
  right: 70px;
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translateY(-200%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 20px;
}

.popular-card .card-subtitle {
  color: var(--blue-ncs);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.certificado{
  font-size: 15px !important;

}
.certificate{
  display: flex;
  gap: 10px;
  color: goldenrod;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }





/*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/

.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 15px;
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  /* background: var(--white); */
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 30px;
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  /* content: ""; */
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  padding: 15px;
  color: var(--black-coral);
  font-size: var(--fs-8);
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

/* .meta-box-p{
  max-width: 20px;
} */

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: var(--united-nations-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: goldenrod;
}

.package-card .card-rating ion-icon:last-child { color: goldenrod; }

.package-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: 20px;
  font-weight: initial;
  color: #384294;
  margin-top: 20px;
  font-weight: bold;
}

.package .btn { margin-inline: auto; }





/*-----------------------------------*\
 * #GALLERY
\*-----------------------------------*/

.gallery { 
  margin-top: 120px;
  margin-bottom: -180px;
  /* padding-block: var(--section-padding)
  
  ; */
 }

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-list2 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  background: #384294;
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5); }





/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: hsl(214, 56%, 58%);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

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

.footer-brand img { width: 180px; }

.footer-brand .logo { margin-bottom: 20px; }

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

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

.contact-title {
  position: relative;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon { --ionicon-stroke-width: 40px; }

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) { color: var(--white); }

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-field {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-form .btn { width: 100%; }

.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--white); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }





/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 55px;
  height: 55px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 38px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }





/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /**
   * HEADER
   */

  .header { padding-top: 83px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .tour-search-form .input-wrapper { margin-bottom: 0; }

  .tour-search-form .input-field { padding: 16px 20px; }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }



  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form { grid-column: span 2; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /**
   * POPULAR
   */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /**
   * PACKAGE
   */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



  /**
   * GALLERY
   */

  .gallery { padding-bottom: calc(var(--section-padding * 2)); }

  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .gallery-list2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-image { border-radius: var(--radius-25); }



  /**
   * CTA
   */

  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content { width: calc(100% - 225px); }

  .cta .section-text { margin-inline: 0; }



  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
    
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: start;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: #588cd0;
    border-color: #588cd0;
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 740px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /**
   * CTA 
   */

  .cta .section-title { max-width: 25ch; }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}


/*-----------------------------------*\
 * #HERO 2
\*-----------------------------------*/


.main2 {
  margin-bottom: 60px;
  margin-top: 0px;
  z-index: 1;
  position: relative;
  min-height: 100vh;
  /* background: radial-gradient(#f0483a, #d10a20); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 100px;
}



.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .text {
  width: 100%;
  max-width: 600px;
}
.content .text h2 {
  
  font-size: 3em;
  font-weight: 700;
  margin: 20px 50px;
  color: #384294;
  
}
.content .text h2 span {
  font-weight: 700;
}
.content .text p {
  
  font-weight: 400;
  font-size: 25px;
  line-height: 2rem;
  margin: 20px 50px;
  color:#636774;
}

.slider2 {
  position: relative;
}
.slider2 .slides {
  display: none;
}
.slider2 .slides.active {
  display: block;
}
.slider2 .slides img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
}
.btn2 {
  
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #d9494b;
  color: white;
  font-size: 1.3em;
  font-weight: 200;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.25s;
  margin: 20px 50px;
 
}
.btn2:hover {
  letter-spacing: 2px;
}


@media (max-width: 991px) {
  .main2 {
    padding: 40px;
  }
 
  .content {
    flex-direction: column;
    margin: 120px 0 40px;
  }
  .content .text {
    max-width: 100%;
  }
  .content .text h2 {
    font-size: 4em;
  }
 
}
@media (max-width: 480px) {
  
.main2 {
    padding: 20px;
  }
  .content .text h2 {
    font-size: 3em;
  }
  .btn2 {
    padding: 15px 30px;
  }
 
}


/* Filosofia empresa  */


.oblique {
  position: relative;
  overflow: hidden;
  
}

.oblique .main-block-oblique {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-repeat: no-repeat;
}

.oblique .skew-block-repeat {
  will-change: transform;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0.8;
  min-height: 100vh;
  float: left;
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0 -1px;
}

.oblique .skew-block-repeat a .oblique-inner {
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  margin-left: 0;
  margin-right: 0;
  -webkit-transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -ms-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  height: 100%;
  position: absolute;
  width: 100%;
}

.oblique .skew-block-repeat a .oblique-caption {
  position: absolute;
  bottom: 90px;
  color: white
  ;

  z-index: 1;
  width: 100%;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.oblique .skew-block {
  margin-left: -10vh;
  margin-right: -10vh;
}

.oblique .skew-block-repeat:hover {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  opacity: 1;
}

.oblique .skew-block-repeat a .oblique-inner .image-wrapper .main-image .image-img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.2s ease-out;
  -moz-transition:0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  border: 0;
}

.oblique .skew-block-repeat a .oblique-inner .image-wrapper {
  margin-left: -10vh;
  margin-right: -10vh;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
}

.oblique .skew-block-repeat a .oblique-caption h2 {
  font-family: "poppins", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin:0 100px;
  padding: 0;
  text-transform: uppercase;
}

.parrafo{
  margin: 0 100px;
 
}

.oblique .skew-block-repeat:hover a .oblique-caption h2 {
  animation: bounceIn 1200ms;
}

.oblique .skew-block-repeat:hover a .oblique-caption button {
  opacity: 0.8;
  background: #fff;
  color: #000;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .oblique .main-block-oblique {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .oblique .skew-block-repeat {
    min-height: 50vh;
  }

  .oblique .skew-block-repeat a .oblique-caption button {
    opacity: 0.9;
  }

}




.showcase{
    position:relative;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    transition: 0.5s;
    z-index: 2;
}

.shuttle-banner{
  z-index: 999;
  margin-bottom: -200px;
  text-align: center;
}


.baner-principal img{
  position: relative;
  top: 0;
  left: 0;
 
  height: 100vh;
  object-fit: cover;
  /* opacity: 0.8; */
}
.showcase2{
  margin-top: 180px;
  position:relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.5s;
  z-index: 2;
}
.showcase20{
  margin-top: 180px;
  position:relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  transition: 0.5s;
  z-index: 2;
}
.baner-prueba{
  margin-top: -70px;
}
.showcase2.active{
  right: 300px;
}

.showcase2 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.8; */
}
.showcase20 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:contain;
  /* opacity: 0.8; */
}





.showcase3{
  margin-top: 180px;
  position:relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  transition: 0.5s;
  z-index: 2;
}
.showcase3.active{
  right: 300px;
}

.showcase3 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.8; */
}

.showcase.active{
    right: 300px;
}

.showcase video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text{
    position: relative;
    z-index: 10;
}

.text .h2{
    font-size: 5em;
    font-weight: 800;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.text .h3{
    font-size: 4em;
    font-size: 700;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.text .p{
    font-size: 1.1em;
    color: #d9494b;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
}
.text3{
  position: relative;
  bottom: -80px;
  right: 40px;
  z-index: 10;
}
.text3 .vehicles{
  margin-top: 30px;
  font-size: 25px;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 500px;
}

.text .boton{
    display: inline-block;
    font-size: 1em;
    background: #fff;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    color: hsl(214, 57%, 51%);
    letter-spacing: 2px;
    transition: 0.2s;
    border-radius: 20px;
}

.text .boton:hover{
    letter-spacing: 4px;
}
.text3 .boton{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: hsl(214, 57%, 51%);
  letter-spacing: 2px;
  transition: 0.2s;
  border-radius: 20px;
}

.text3 .boton:hover{
  letter-spacing: 4px;
}






@media (max-width: 991px){
    .showcase, .showcase {
        padding: 40px;
    }
    .text .h2{
        font-size: 3em;
    }
    .text .h3{
        font-size: 2em;
    }
}



/* Partners */












/*-----------------------------------*\
 * #STATS
\*-----------------------------------*/

.stats { padding-block: var(--section-padding);
margin: 10px 20px;
}

.stats-list {
  display: grid;
  gap: 30px;
}

.stats-card {
  
  background: hsl(214, 57%, 51%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: #6d6b6b;
  transition: var(--transition-1);
}

.stats-card:is(:hover, :focus) { transform: translateY(-5px); }

.stats-card .card-icon {
  /* background: #384294; */
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-wrap:  wrap;
  
}

.stats-card .card-icon2{
  width: 200px;
  height: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  justify-content: center;
  
 
}
.stats-card .card-icon2 img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
 

 
}

.stats-card .card-icon img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
 

  /* filter: invert(1); */
 
}
.card-icon .partners{
justify-content: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;

}

.stats-card .card-title {
  width: calc(100% - 95px);
  color: white;
  text-align: center;
}

.stats-card .card-title strong {
  display: block;
  color: #fff;
  font-size: initial;
  line-height: 1.3;
  margin-top: 5px;
}

.stats-card > ion-icon { color: #d9494b; }












/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

 

  /**
   * STATS
   */

  .stats-list { grid-template-columns: 1fr 1fr; }



}






@media (min-width: 992px) {

  /**
  






  /**
   * STATS
   */

  .stats-list { grid-template-columns: repeat(3, 1fr); }

  .stats-card { height: 100%; }

}




                        /* GALERIA */

                        /* 1.1.general-setting-pages *************************/
/****************************************************/
:root {
	--pr-color: #fff;
	--second-color: #0a0a0a;
	--cubicbz: cubic-bezier(.9, 0, .1, 1);
	--fz-big: 60px;
}

/* * {
	box-sizing: border-box;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	margin: 0;
	padding: 0;
	
} */

/* body {
	background: var(--second-color);
} */

/******************************************/
.wrapp {
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px;
	padding-top: 130px;
	z-index: 1;
  margin-bottom: 150px;
}

.title {
	margin-top: 0;
	margin-bottom: 110px;
	font-size: var(--fz-big);
	text-transform: uppercase;
	color: var(--pr-color);
}

/* Image Gallery **********************************/
.gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	gap: 40px;
}

.gallery__item {
	position: relative;
	max-width: calc(33.33% - 40px);
	width: 100%;
	height: 500px;
	list-style: none;
	overflow: hidden;
	cursor: pointer;
}

.gallery__img {
  border-radius: 20px;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
	transition: .8s var(--cubicbz);
}

.gallery__item:hover .gallery__img {
	transform: scale(1.3);
  border-radius: 20px;
}

.gallery__item::after {
  border-radius: 20px;
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	backdrop-filter: blur(20px);
	background: rgba(0, 0, 0, 0.614);
	will-change: opacity;
	pointer-events: none;
	z-index: 2;
	transition: .8s var(--cubicbz);
}

.gallery__item:hover::after {
	opacity: 1;
}

.zoom {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	font-size: 40px;
	text-transform: uppercase;
	will-change: transform, opacity;
	pointer-events: none;
	transform: translate(-50%, -10%);
	color: #384294;
	-webkit-text-stroke: 1px var(--pr-color);
	z-index: 3;
	transition: .8s var(--cubicbz);
  border-radius: 20px;
}

.gallery__item:hover .zoom {
	opacity: 1;
	transform: translate(-50%, -50%);
}

/***/
a[data-fancybox] img {
	cursor: zoom-in;
}

.fancybox__backdrop::after {
	content: "";
	position: absolute;
	width: 10%;
	height: 10%;
	filter: blur(2px);
	left: 50%;
	top: 50%;
	transform: scale(11);
	opacity: 0.3;
	background-image: var(--bg-image);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.fancybox__container {
	--fancybox-bg: #000;

	--fancybox-thumbs-width: 48px;
	--fancybox-thumbs-ratio: 1;

	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;

	--carousel-button-svg-stroke-width: 2.5;
}

.fancybox__nav {
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
}

.fancybox__nav .carousel__button.is-prev {
	left: 20px;
}

.fancybox__nav .carousel__button.is-next {
	right: 20px;
}

.carousel__button.is-close {
	right: auto;
	top: 20px;
	left: 20px;
}

.fancybox__slide {
	padding: 8px 88px;
}

/* Thumbnails */
.fancybox__thumbs .carousel__slide {
	padding: 8px 8px 16px 8px;
}

.is-nav-selected::after {
	display: none;
}

.fancybox__thumb {
	border-radius: 6px;
	opacity: 0.4;
	transition: .4s;
}

.fancybox__thumb:hover,
.is-nav-selected .fancybox__thumb {
	border-radius: 6px;
	opacity: 1;
}

.is-nav-selected .fancybox__thumb::after {
	display: none;
}


@media (max-width: 600px) {
  .title{
      font-size: 40px;
  }
  .wrapp{
      margin-top: -100px;
     position: relative;
  }
  .gallery {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      gap: 60px;
  }
  
  .gallery__item {
      position: relative;
      max-width: calc(100% - 0px);
      width: 100%;
      height: 500px;
      list-style: none;
      overflow: hidden;
      cursor: pointer;
  }
  
  .gallery__img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: transform;
      transition: .8s var(--cubicbz);
  }
  
}

.shuttle{
  margin-bottom: -150px;
}



/* SCROLLL */



.prettier {
  /* background: -webkit-gradient(linear, left top, left bottom, from(#141414), to(#041f3f));
  background: linear-gradient(to bottom, #141414, #041f3f); */
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 600px;
  
}

.prettier .prettier__image {
  position: relative;
  height: 100%;
  width: 90%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 0, 0)), to(#193c57)), url("../images/01.jpeg");
  background: linear-gradient(to right, rgba(255, 0, 0, 0), #193c57), url("../img/toyota.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  -webkit-transform-origin: left;
          transform-origin: left;
  border-radius: 12px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: -99;
}

.prettier .prettier__image .text h1 {
  font-size: 2rem;
  color: white;
  text-align: center;
  font-weight: 100;
  margin: 20px;

}


@media (max-width: 1133px) {
  
  
  .prettier__image .text h1 {
    font-size: 2.5rem !important;
  }
}





@media (max-width: 504px) {
 
  
  .prettier {
    height: 504px !important;
  }
  .prettier__image {
    width: 88% !important;
    min-height: 500px !important;
  }
  .prettier__image .text h1 {
    font-size: 0.9rem !important;
  }
  
}

.helpline-title{
  color: #588cd0;
}
.helpline-number{
  color: #588cd0;
}

.reseña{
  position:absolute;
  width: 100px;
  border-radius: 50%;
  top: -80px;
  left: 0px;
  
}

@media (max-width: 991px){
  .showcase2 {
    padding: 0px;
    margin-top: -320px;
  
}
.showcase2 img{
  width: 100%;
  justify-content: center;
}
.showcase20 {
  padding: 0px;
  
 

}
.showcase20 img{
width: 100%;
justify-content: center;
}
.baner-principal{
  margin-top: -80px;
  margin-bottom: 28px;
}
.baner-principal img{
  position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit:contain;
}

.btn3{
  font-size: 15px;
  padding: 10px 20px;
  margin-top: -100px;
  
  
}
.btn0{
  margin-top: -100px;
}
.main2{
  margin-top: -180px;
}
.content .text {
  width: 100%;
  max-width: 600px;
  margin-left: -100px;
}
.content .text p {
  width: 100%;
  font-weight: 400;
  font-size: 25px;
  line-height: 2rem;
 justify-content: center;
  color:#636774;
}
.btn2 {
  font-size: 0.8rem;
  
  
 
}

.uno,dos{
  margin-top: -150px;
  
  }
  .uno{
font-size: 30px;
  }
  .dos{
    font-size: 20px;
  }
.showcase3{
  margin-bottom:-150px ;
  margin-top: -200px;
  position:relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.5s;
  z-index: 2;
}
.showcase3.active{
  right: 300px;
}

.showcase3 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:contain;
  /* opacity: 0.8; */
}
.text3{
  position: relative;
  bottom: -30px;
  right: 80px;
  z-index: 10;
}
.text3 .vehicles{
  margin-top: 20px;
  font-size: 8px;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 500px;
  width: 100%; 
  background: #588cd0a2;
  padding: 10px;
  border-radius: 20px;
}
.text3 .voton{
  font-size: 8px;
  margin-top: -180px;
  letter-spacing: normal;
  

}
.package-card .card-banner { height: 350px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  
}

.stats-card .card-icon2{
  width: 200px;
  height: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  justify-content: center;
  
 
}
.stats-card .card-icon2 img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  
 

 
}
}