* {
  margin: 0;
  padding: 0;
}
#index-container {
  overflow: hidden;
  transition: top 100ms cubic-bezier(0.5, 0.33, 0.3, 0.9) 1ms;
  height: auto;
  width: 100%;
}
.background {
  background: white;
  position: relative;
}
footer,
.copyright {
  width: 100%;
  bottom: 0;
  position: relative;
}

/* Section Uno */
.section-one {
  padding: 0;
}
.text-hero {
  top: 40%;
}
.text-hero .h1 {
  margin: 1rem 0;
  letter-spacing: 3px;
}
.text-hero .h5 {
  width: 70%;
}
.text-hero .h5:nth-of-type(2){
  font-size: 18px;
  max-width: 450px;
}
.container-sports {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-sports h4 {
  color: white;
  margin: 0 10px;
  font-family: "Montserrat Bold";
  font-size: 19px;
  letter-spacing: 5px;
}

/* Section Dos */
.section-two {
  background: #faf2e4;
}
.container-section-two {
  display: flex;
  align-items: center;
  width: 95%;
}
.container-section-two img {
  margin-right: 50px;
  width: 45%;
}
.sub-container-section-two {
  margin-right: 50px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-container-section-two div {
  width: 600px;
  margin: auto;
  margin-bottom: 25px;
}
.container-section-two div h1 {
  margin-bottom: 40px;
}
.container-section-two div p {
  margin-bottom: 20px;
}
.sub-container-section-two .title{
  margin-bottom: 20px;
}

/* Section tres */
.information-watersports {
  text-align: center;
  width: 70%;
  margin: auto;
}
.information-watersports p {
  width: 800px;
  margin: auto;
  padding-top: 20px;
  margin-bottom: 3rem;
}
.slider-watersports {
  width: 90%;
  margin: auto;
  padding-top: 3rem;
}
.sport-type {
  position: relative;
  width: 24%;
  height: 450px;
}
.sport-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-watersports {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.information-type-sport {
  position: absolute;
  bottom: 0;
  width: 90%;
  padding-right: 5%;
  padding-bottom: 10%;
  padding-left: 5%;
  display: flex;
  justify-content: space-between;
  align-items: self-end;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.584416) 89.65%
  );
}
.information-type-sport h3,
.information-type-sport span {
  color: white;
  font-size: 25px;
  line-height: 30px;
}
.information-type-sport p {
  color: white;
}
.information-type-sport div {
  width: 70%;
}
.view-more-information-sport {
  font-size: 33px;
  line-height: 33px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(22.7255px);
  -webkit-backdrop-filter: blur(22px);
  height: 35px;
  width: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 1s all ease-in-out;
}
.view-more-information-sport:hover {
  transform: rotate(180deg);
}

/* Section cuatro */
.section-four {
  background: #163049;
}
.container-section-four {
  display: flex;
  width: 95%;
  margin-left: auto;
  justify-content: flex-end;
}
.information-rentals {
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  min-width: 590px;
}
.information-rentals p {
  margin-top: 10px;
  margin-bottom: 15px;
  width: 100%;
  color: rgba(250, 242, 228, 1);
}
.information-rentals p {
  display: flex;
  align-items: center;
}
.information-rentals p a {
  color: rgba(250, 242, 228, 1);
  background: transparent;
  padding: 0;
  width: fit-content;
  border: transparent;
  font-size: 17px;
  font-weight: 800;
  margin-right: 4px;
}
.information-rentals .button-one{
  background: #FAF2E4;
  border: 1px solid #FAF2E4;
  color: #163049;
  margin-top: 30px;
}
.information-rentals .button-one img{
  filter: invert(80%) sepia(17%) saturate(1842%) hue-rotate(168deg)
  brightness(110%) contrast(120%);
}
.information-rentals .button-one:hover{
  background: #FAF2E4;
  border: 1px solid #FAF2E4;
  color: #163049;
}
.information-rentals .title {
  color: rgba(250, 242, 228, 1);
}
.img-rentals {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.img-rentals img {
  width: 49%;
  object-fit: cover;
}

/* Section five */
.section-five{
  background-image: url(../../files/index/background-section-five-index.png);
  height: 49vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-five h2{
  font-family: "Montserrat Black";
  margin-bottom: 20px;
  max-width: 800px;
}

.section-five p{
  max-width: 600px;
}
/* ------- RESPONSIVE --------*/
/* Mobile */
@media screen and (max-width: 767px) {
  .section-one {
    overflow: hidden !important;
  }
  .hero-background img {
    width: 110% !important;
    height: 111% !important;
  }
  .text-hero {
    top: 35%;
  }
  #index-container {
    overflow: hidden;
  }
  .text-hero .h5:nth-of-type(2) {
    font-size: 16px !important;
    line-height: 17px !important;
}
  .text-hero h1 {
    width: 70%;
  }
  .text-hero h1 br {
    display: none;
  }
  .container-sports {
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
  }
  .container-sports h4 {
    font-size: 17px;
    letter-spacing: 3px;
  }
  .container-sports h4:nth-of-type(4) {
    display: none;
  }
  .container-section-two {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  .section-five{
    height: 59vh;
  }
  .container-section-two img {
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .sub-container-section-two {
    width: 100%;
    margin: auto;
  }
  .sub-container-section-two div {
    width: 100%;
  }
  .container-section-two div p {
    margin-left: 0;
  }
  .container-section-two div h1 {
    margin-bottom: 20px;
    text-align: center;
  }
  .information-type-sport h3,
  .information-type-sport span {
    font-size: 21px !important;
    line-height: 24px !important;
  }
  .information-watersports {
    width: 90%;
  }
  .information-watersports p {
    width: 100%;
    margin-bottom: 0;
  }
  .slider-watersports {
    width: 100%;
  }
  .sport-type {
    margin: 0 10px;
  }
  .section-four {
    padding: 0 0 2rem;
  }
  .container-section-four {
    flex-direction: column;
    width: 100%;
  }
  .img-rentals,
  .img-rentals img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
  }
  .information-rentals {
    width: 90%;
    margin: 2rem auto 0;
    min-width: unset;
  }
  .information-rentals p {
    margin-bottom: 20px;
    display: unset;
  }
  .information-rentals p a{
    font-size: 16px;
  }
  .section-five h2{
    width: 90%;
  }
  .section-five h2 br{
    display: none;
  }
  .section-five p{
    width: 90%;
    line-height: 22px !important;
    max-width: 350px;
  }
  .section-five p br{
    display: none;
  }
  .information-type-sport p{
    line-height: 18px !important;
  }
}

/* Mobile Chico */
@media screen and (max-width: 375px) {
  .container-sports h4 {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .sport-type {
    height: 300px;
  }
}

/* Ipad Mini - Ipad Air */
@media (min-width: 768px) and (max-width: 820px) {
  .text-hero h1 br {
    display: none;
  }
  .text-hero .h5 {
    margin-left: 0px;
  }
  .container-sports h4 {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .container-section-two {
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
  }
  .container-section-two img {
    width: 100%;
    margin: auto;
    padding-bottom: 20px;
  }
  .sub-container-section-two,
  .sub-container-section-two div {
    width: 100%;
    margin: auto;
  }
  .container-section-two div p {
    margin-left: 0;
  }
  .information-watersports {
    width: 100%;
  }
  .information-watersports p {
    width: 80%;
  }
  .slider-watersports {
    width: 100%;
    margin: auto;
    padding-top: 0rem;
  }
  .sport-type {
    height: 250px;
  }
  .information-type-sport h3,
  .information-type-sport span {
    font-size: 15px;
    line-height: 17px;
  }
}

/* Desktop Mediano - Grande */
@media (min-width: 1600px) and (max-width: 1990px) {
  .sport-type {
    height: 600px;
  }
}
