/* Imports */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */

:root {
    --rx-font: 'Poppins', sans-serif;
    --rx-primary-color: #1f335e;
    --rx-secondary-color: #26a9e0;
}

/* Globals */

html {
  scroll-behavior: smooth;
}

.rx-section {
  background-clip: padding-box;
  border-top: none;
  margin-top: auto;
}

.rx-container {
  min-height: calc(100vh - 279px - 135px);
}

a {
  text-decoration: none;
  color: inherit;
}

/* body {
    font-family: var(--rx-font) !important;
} */

/* Carousel */
.slide {
  display: table-cell !important;
  float: none !important;
  height: 100%;
  background-color: #fff;
  padding:0;
  border-radius: 6px;
}

.slick-track {
  display: table !important;
  border-spacing: .5rem;
}

.rx-slide-hover {
  border-style: solid;
  border-color: var(--rx-secondary-color); 
  box-shadow: 0px 0px 12px var(--rx-secondary-color);
  transform: scale(1.1);
  transform-origin: center center;
}

/* links */

.rx-link-menu {
  text-decoration: none;
  color: #fff;
}

.rx-link-menu:hover {
  text-decoration: none;
  color: #cdcdcd;
}

.rx-btn-nav {
  background-color: transparent;
  border: none;
}

/* Sidenav */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  text-align:left;
}

.sidenav a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover{
  color: #cdcdcd;
}

/* Custom */
.rx-separador {
  background-color: #ffffff;
}

.rx-margin-hero {
  margin-top: auto;
}

.rx-extra-padding-y {
  padding-top: auto;
  padding-bottom: auto;
}
.accordion-button {
  color: var(--rx-primary-color);
}
.accordion-button:not(.collapsed) {
  color: var(--rx-primary-color);
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #cdcdcd;
}

input[type=submit] {
  border-radius: 6px;
  border: none;
  padding: 8px 12px;
  color: #fff;
}

input[type=submit]:hover {
  box-shadow: -1px 10px 25px -9px rgba(0,0,0,0.71);
  -webkit-box-shadow: -1px 10px 25px -9px rgba(0,0,0,0.71);
  -moz-box-shadow: -1px 10px 25px -9px rgba(0,0,0,0.71);
}

select {
  /* styling */
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #cdcdcd;

  /* reset */     
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select:required:invalid {
  color: #666;
}
option[value=""][disabled] {
  display: none;
}
option {
  color: #000;
}

.rx-border-left {
  border-left: none;
}
/* Map */

.responsive-map {
  overflow: hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}
.responsive-map iframe {
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

/* Text */
.rx-text-primary {
  color: var(--rx-primary-color);
}

.rx-text-secondary {
  color: var(--rx-secondary-color);
}

.rx-active {
  color: #212529 !important;
  background-color: #f8f9fa !important;
  border-color: #f8f9fa !important;
}

/* Tabs */

.tabcontent {
  display: none;
}

.rx-overlay {
  position: relative;
  width: 100%;
  height: 100% !important;
  top: 0;
  bottom: 0;
}

.rx-overlay div {
  position: absolute;
  bottom: 4px;
  left: 50%;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

/* Backgrounds */
.rx-bg-primary {
  background-color: var(--rx-primary-color);
}

.rx-bg-secondary {
  background-color: var(--rx-secondary-color);
}

.rx-bg-dark {
  background: #000;
}

/* Table */
.rx-table-responsive {
  overflow-x:auto;
}

.rx-table-responsive table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  }

.rx-table-responsive table thead {
  background: white;
  color: black;
}

.rx-table-responsive table thead th:nth-child(1) {
  background: black;
}

.rx-table-responsive table tbody {
  color: white;
  background: rgb(0,169,192);
  background: linear-gradient(180deg, rgba(0,169,192,1) 0%, rgba(27,39,70,1) 100%);
}

.rx-table-responsive table tbody tr {
  border-bottom: 4px solid rgba(0,0,0,.8);
}

.rx-table-responsive table tbody tr:nth-child(1) {
  background: black;
}

.rx-table-rounded td:first-child {
  padding: 10px;
  border-radius: 25px 0 0 25px;
}

th, td {
  text-align: center;
  padding: 8px;
  border-right: 1px solid white;
}

/* Media Queries */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 598px) {
  /* Seleccion de slide activo */
  /* .slide.slick-slide.slick-current.slick-active.slick-center {
    border-style: solid;
    border-color: var(--rx-secondary-color); 
    box-shadow: 0px 0px 12px var(--rx-secondary-color);
    transform: scale(1.1);
    transform-origin: center center;
  } */

  .rx-logo {
    height: 48px;
  }

  .rx-margin-hero {
    margin-top: 64px;
  }

  .rx-section {
    background-clip: padding-box;
    border-top: 64px solid transparent;
    margin-top: -64px;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

  /* Seleccion de slide activo */
  /* .slide.slick-slide.slick-current.slick-active.slick-center {
    border-style: solid;
    border-color: var(--rx-secondary-color); 
    box-shadow: 0px 0px 12px var(--rx-secondary-color);
  } */

  .rx-margin-hero {
    margin-top: 64px;
  }

  .rx-section {
    background-clip: padding-box;
    border-top: 64px solid transparent;
    margin-top: -64px;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  .rx-logo {
    height: 48px;
  }

  .rx-border-left {
    border-left: 1px solid #cdcdcd;
  }

  .rx-margin-hero {
    margin-top: 94px;
  }

  .rx-title-what-is {
    font-weight: bold;
    font-size: 2.5rem;
  }
  
  .rx-text-what-is {
    font-weight: lighter;
    line-height: 1.2em;
    font-size: 1rem;
  }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

  .rx-logo {
    height: auto;
  }

  .rx-margin-hero {
    margin-top: 134px;
  }

  .rx-extra-padding-y {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .rx-section {
    background-clip: padding-box;
    border-top: 100px solid transparent;
    margin-top: -100px;
  }

  .slick-list {
    overflow: initial;
  }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  .rx-title-what-is {
    font-weight: bold;
    font-size: 5.5rem;
  }
  
  .rx-text-what-is {
    font-weight: lighter;
    line-height: 1.5em;
    font-size: 2rem;
  }

}