/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

:root {
  --color-primary: #56a09a;
  --color-secondary: #464646;
  --color-red: #c20e1a;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.btn-aqua{
  background-color: var(--color-primary);
  color: white;
}
.btn-aqua:hover{
   background-color: var(--color-secondary) !important;
   color: white;
}
@font-face {
  font-family: "Foco";
  src: url("../fonts/Foco-Regular.eot");
  src: url("../fonts/Foco-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Foco-Regular.woff2") format("woff2"),
    url("../fonts/Foco-Regular.woff") format("woff"),
    url("../fonts/Foco-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Foco Bold";
  src: url("../fonts/Foco-Bold.eot");
  src: url("../fonts/Foco-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Foco-Bold.woff2") format("woff2"),
    url("../fonts/Foco-Bold.woff") format("woff"),
    url("../fonts/Foco-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Foco";
}
.color-green-bg {
  background-color: var(--color-primary);
}
.color-gray-bg {
  background-color: var(--color-secondary);
}
.color-red-bg {
  background-color: var(--color-red);
}

.border-green-bt {
  border-bottom: 3px solid var(--color-primary);
}
.border-gray-bt {
  border-bottom: 3px solid var(--color-secondary);
}
.border-red-bt {
  border-bottom: 3px solid var(--color-red);
}
/**************************HEADER*****************************************/
header .redes .map{
  height: auto !important;
}
header .topHeader {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 10px 0;
}
header .topHeader a,
header .topHeader span {
  color: #fff;
  font-size: 13px;
}
header .topHeader .phones {
  text-align: center;
}
header .topHeader .phones span {
  display: block;
}
.header-menu {
  padding: 10px 0;
  border-bottom: 10px solid var(--color-secondary);
}
header .menu-content {
  display: flex;
  justify-content: center;
  gap: 30px;
}
header .menu-content .logotipo {
  max-width: 120px;
}

header .menu-content .imagenred {
  max-width: 100px;
}
header .mainMenu {
  text-align: center;
  width: 100%;
  max-width: 800px;
}
header .mainMenu ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
  width: 100%;
  justify-content: space-around;
}
header .mainMenu ul li {
  list-style: none;
}
.active {
  color: var(--color-primary) !important;
}
header .mainMenu ul li a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
}
header .mainMenu ul li a:hover {
  color: var(--color-primary);
}
header .borde-header {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  background-color: var(--color-primary);
}
header .hamburguesa {
  display: none;
}

header .navbar {
  background: var(--color-secondary);
  display: flex;
  padding: 5px;
  justify-content: space-between;
  align-content: center;
}
header .navbar .language-selector {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}
header .navbar .language-selector option {
  background: var(--color-secondary);
  color: #fff;
}
header .idioma {
  display: flex;
  align-items: center;
}
.catalogo-experiencias {
  margin-top: 50px;
}
.catalogo-experiencias h2 {
  margin-bottom: 30px;
}
.carousel-item{
  position: relative;
}
.carousel-item p{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
}
.ui-datepicker table{
  background-color: white;
}
.catalogo-experiencias .itemCatExp {
  margin-bottom: 50px;
}
.catalogo-experiencias .itemCatExp h3 {
  font-size: 22px;
  color: #fff;
  padding: 10px 10px;
  margin-bottom: 0;
}
.catalogo-experiencias .itemCatExp span {
  font-size: 20px;
  color: #676767;
  display: block;
  margin: 10px 0;
}
.catalogo-experiencias .itemCatExp {
  font-size: 16px;
  color: #676767;
}
.tape {
  background-color: var(--color-primary);
  padding: 7px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.category-shop {
  margin-top: 50px;
  margin-bottom: 30px;
}
.category-shop h2 {
  text-align: center;
  font-weight: 500;
}
.category-shop .cs_brand p {
  text-align: center;
  font-weight: 600;
}
.instructor {
  margin-top: 50px;
}
.instructor .text-instructor {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}
.instructor .text-instructor p {
  margin-top: 20px;
}
footer {
  text-align: center;
  margin-top: 100px;
}
footer span {
  font-size: 18px;
  font-weight: 600;
}
footer .bg-footer-logos {
  background-color: var(--color-red);
}
footer .listLogos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  margin: 10px 0;
}
footer .listLogos .itemLogos {
  max-width: 100px;
}
footer .listLogos .itemLogos img {
  width: 100%;
}
footer .footerBotton {
  background-color: var(--color-primary);
  color: #fff;
  padding: 30px 0;
}
footer .footerBotton p {
  margin-bottom: 0;
}
footer .footerBotton .aviso-politica {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
}
footer .footerBotton .aviso-politica a{
  color: white;
  text-decoration: none;
}
.card-item .card-title {
      min-height: 45px;
}

/*tours*/
.btn-tours{
  background-color: var(--color-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 10px auto;
  text-align: center;
  max-width: 150px;
}
.bread-diving{
      background-image: url(../images/diving.jpg) !important;
}
.bread-certification{
      background-image: url(../images/certification.jpg) !important;
}
.bread-snorkel{
      background-image: url(../images/snorkel.jpg) !important;
}
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
  header .topHeader a,
  header .topHeader span {
    font-size: 11px;
  }
}
@media (max-width: 767.98px) {
  .imagenred {
    display: none !important;
  }
  header .menu-content .logotipo {
    z-index: 999;
    max-width: 80px;
  }
  header .hamburguesa {
    position: relative;
    display: block !important;
  }
  header .topHeader a,
  header .topHeader span {
    font-size: 14px;
  }
  header .mainMenu ul {
    flex-flow: column;
  }
  header .menu-content {
    justify-content: space-between;
  }
  header .topHeader .phones {
    display: none;
  }
  header .topHeader .mailHead {
    display: none;
  }
  /* main menu block */
  .mobile {
    background-color: #19b698;
    border: 0 solid #333;
    border-width: 50px 15px;
    border-radius: 12px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.6);
    margin: 20px auto;
    max-width: 300px;
    height: 560px;
    overflow: hidden;
    position: relative;
  }
  /* header {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  height: 50px;
} */
  .logo {
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    padding: 0 0 0 20px;
    text-transform: capitalize;
  }
  /* menu button */
  .menuBtn {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 101;
  }
  .menuBtn > span {
    background-color: var(--color-primary);
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -15px;
    transition: height 100ms;
  }
  .menuBtn > span:after,
  .menuBtn > span:before {
    content: "";
    background-color: var(--color-primary);
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    transition: all 200ms;
  }
  .menuBtn > span:after {
    top: -7px;
  }
  .menuBtn > span:before {
    bottom: -7px;
  }
  .menuBtn.act > span {
    height: 0;
  }
  .menuBtn.act > span:after,
  .menuBtn.act > span:before {
    background-color: #008877;
    top: 1px;
  }
  .menuBtn.act > span:after {
    transform: rotate(45deg);
  }
  .menuBtn.act > span:before {
    transform: rotate(-45deg);
  }
  /* main menu block */
  .mainMenu {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: table;
    text-align: center;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0);
  }
  .mainMenu.act {
    opacity: 1;
    transform: scale(1);
  }
  .mainMenu.act ul li {
    opacity: 1;
    transform: translateX(0);
  }
  .mainMenu ul {
    display: table-cell;
    vertical-align: middle;
  }
  .mainMenu li {
    padding: 8px 0;
    transition: all 400ms 510ms;
    opacity: 0;
  }
  .mainMenu li:nth-child(odd) {
    transform: translateX(30%);
  }
  .mainMenu li:nth-child(even) {
    transform: translateX(-30%);
  }
  .mainMenu li:last-child {
    transform: none;
  }
  .mainMenu a {
    color: #19b698;
    display: inline-block;
    font-size: 18px;
  }
  .mainMenu a.suBtn {
    color: #fff;
  }
  /* sign up button */
  .suBtn {
    background-color: #19b698;
    border-radius: 5px;
    padding: 10px 20px;
  }
  footer .listLogos .itemLogos {
    max-width: 60px;
  }
}
@media (max-width: 575.98px) {
  footer .footerBotton .aviso-politica {
    flex-flow: column;
    margin-top: 10px;
  }
  footer .listLogos .itemLogos {
    max-width: 40px;
  }
}
