*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root{
  --color0: #000000;
  --color1: #ffffff;
  --color2: #002087;
  --color3: #215799;
  --color4: #8af66d;
  --color5: #eeeeee;
  --font1: "Roboto", sans-serif;
  --font2: "Audiowide", sans-serif;
}










/*--- Slider ----*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*--End SLIDER--*/





.slick-prev:before,
.slick-next:before {
  color: rgb(0, 0, 0) !important;
}

/*
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: .5;
}*/

.slick-current {
  opacity: 1;
}











.page_bohemia {
  font-family: var(--font1);
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

.sec{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.align{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.p0{
  padding: 0;
}
.box_hc{
  display: flex;
  justify-content: center;
  align-items: center;
}
.fh{
  min-height: 100vh;
}
.fw{
  min-width: 100%;
  margin: 0;
  max-width: 100%;
}
.ancla{
  position: absolute;
  top: -90px;
  left: 0;
}
@media screen and (max-width:550px){
  .ancla{
    top: -60px;
  }
}

.ico_whatsapp{
  position: fixed;
  z-index: 99;
  bottom: 15px;
  right: 15px;
  background: #0df053;
  border-radius: 50%;
  transform: scale(1);
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  animation: btn_wsp ease-in-out 1.5s infinite;
}
.ico_whatsapp:hover{
  transform: scale(0.9);
}
.ico_whatsapp a{
  display: block;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: relative;
}

@keyframes btn_wsp{
  0% {
    box-shadow: 0px 0px 0px 0px rgba(13, 240, 83, 0.4);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(13, 240, 83, 0.0);
  }
  
}


.ico_whatsapp img{
  height: 30px;
}

.main .content{
  flex-direction: column;
}

.header{
  width: 100%;
  background: var(--color3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header .content{
  justify-content:space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width:550px){
  .header .content{
    padding: 10px;
    
  }
}

.header .content .logo img{
  height: 50px;
}
@media screen and (max-width:550px){
  .header .content .logo img{
    height: 30px;
  }
}











.menu{
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu ul {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width:800px){
  .menu ul{
    gap: 5px;
  }
}

.menu ul li a{
  display: block;
  font-family: var(--font2);
  color:var(--color1);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  padding: 20px;
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
}
.menu ul li a:hover{
  color: var(--color4);
}
@media screen and (max-width:1050px){
  .menu ul li a{
    padding: 10px;
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width:550px){
  .menu ul li a{
    padding: 10px;
    font-size: 10px;
    text-align: center;
  }
}

.menu ul li:nth-last-child(1) a{
  background:var(--color4);
  color: var(--color2);
  border: solid 2px var(--color4);
}
.menu ul li:nth-last-child(1) a:hover{
  background: transparent;
  color: var(--color4);
}

/*--mobile--*/
.menu ul.menu_mv{
  display: none;
}
@media screen and (max-width:800px){
  .menu ul{
    display: none;
  }
  .menu ul.menu_mv{
    display: flex;
  }
}
.menu .menu_mv{
  font-family: var(--font2);
  color:var(--color1);
  font-size: 38px;
  gap: 10px;
  align-items: center;
}
.menu .menu_mv li a{
  background: var(--color4);
  color: var(--color2);
  border: solid 2px var(--color4);
}
.menu .menu_mv li a:hover{
  background: transparent;
}
.menu .menu_mv li span{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
}
.menu .menu_mv li span i{
  display: block;
  width: 65%;
  border: solid 1px var(--color1);
}


.menu_mv_modal{
  display: none;
  position: fixed;
  z-index: 99;
  top:0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  width: 100%;
  margin-top: 93px;
  transform: translateY(0%);
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width:550px){
  .menu_mv_modal{
    margin-top: 60px;
  }
}
.menu_mv_modal.act{
  display: flex;
}
.menu_mv_modal .align_mv{
  width: 100%;
}
.menu_mv_modal .align_mv ul li{
  width: 100%;
  border-bottom:solid 1px var(--color1);
}
.menu_mv_modal .align_mv ul li a{
  display: block;
  font-family: var(--font2);
  color: var(--color1);
  text-decoration: none;
  padding: 20px;
}

































.space{
  height: 90px;
}
@media screen and (max-width:550px){
  .space{
    height: 60px;
  }
}
.banner{
  background: var(--color2) url("../images/foto_header.png") no-repeat top center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
}
@media screen and (max-width:850px){
  .banner{
    background: var(--color2) url("../images/foto_header.png") no-repeat 100% center;
    background-size: 160%;
  }
}
@media screen and (max-width:550px){
  .banner{
    background: var(--color2) url("../images/foto_header.png") no-repeat 90% -3%;
    background-size: 300%
  }
}

.banner .content{
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width:550px){
  .banner .content{
    align-items: center;
    padding: 100px 20px 0;
  }
}

.banner h1{
  font-family: var(--font2);
  font-size: 3rem;
  line-height: 1.3;
  color: var(--color1);
}
@media screen and (max-width:550px){
  .banner h1{
    font-size: 2.2rem;
    text-align: center;
  }
}
.banner .content > p{
  width: 100%;
  max-width: 500px;
  padding: 50px 0 50px;
  font-size: 24px;
}
@media screen and (max-width:550px){
  .banner .content > p{
    text-align: center;
    padding: 20px 10px 20px;
    font-size: 20px;
    
  }
}
.pf{
  display: block;
  font-family: var(--font1);
  font-weight: 300;
  line-height: 1.4;
  font-size: 20px;
  color: var(--color1);
}
.pf b{
  font-family: var(--font1);
  font-weight: 700;
}
@media screen and (max-width:550px){
  .pf{
    font-size: 18px;
  }
}
.btn_main{
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font2);
  font-size: 1.1rem;
  color: var(--color2);
  background:var(--color4);
  cursor: pointer;
  border: solid 2px var(--color4);
  transition: all ease-in-out 0.3s;
}
.btn_main:hover{
  background: transparent;
  color: var(--color4);
}
@media screen and (max-width:550px){
  .btn_main{
    font-size: 0.9rem;
    padding: 15px 10px;
  }
}

.img_fw{
  width: 100%;
}

.sect1 .content{
  justify-content: center;
  height: 100%;
  flex-direction: row;
  background: #42b0ef;
}
@media screen and (max-width:1025px){
  .sect1 .content{
    flex-direction: column;
    align-items: center;
  }
}

.sect1 .content .box{
  overflow: hidden;
  height: 600px;
  width: 50%;
  position: relative;
}
@media screen and (max-width:1025px){
  .sect1 .content .box{
    width: 100%;
  }
}

@media screen and (max-width:550px){
  .sect1 .content .box{
    height: 470px;
  }
}

.sect1 .content .box:nth-child(1){
  background:url("../images/deportistas.jpg") no-repeat  center center;
  background-size: cover;
  width: 70%;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (max-width:1025px){
  .sect1 .content .box:nth-child(1){
    width: 100%;
  }
}
@media screen and (max-width:550px){
  .sect1 .content .box:nth-child(1){
    background: url(../images/deportistas.jpg) no-repeat 65% bottom;
    background-size: 130%;
  }
}
.sect1 .box .datos{
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  gap:50px;
  padding-top: 50px;
}
@media screen and (max-width:550px){
  .sect1 .box .datos{
    padding-top: 20px;
    max-width: 100%;
    gap: 20px;
  }
}
.sect1 .box .datos .item{
  font-family: var(--font1);
}
.sect1 .box .datos .item img{
  padding: 5px 0 15px;
}
@media screen and (max-width:550px){
  .sect1 .box .datos .item{
    text-align: center;
  }
  .sect1 .box .datos .item img{
    padding: 25px 0 0px;
  }
}
.sect1 .box iframe{
  width: 100%;
  height: 100%;
}

.texto h3{
  font-family: var(--font2);
  color: var(--color1);
  font-size: 5rem;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width:550px){
  .texto h3{
    font-size: 2.2rem;
    padding-bottom: 50px;
  }
}





.sect2{
  background: rgb(0,255,54);
  background: linear-gradient(0deg, rgba(128,248,94,1) 0%, rgba(128,248,94,1) 30%, rgba(184,255,151,1) 30%, rgba(184,255,151,1) 100%);
}
.sect2 .align{
  padding: 10px 0;
}
.sect2 .content{
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap:50px;
}
@media screen and (max-width: 1025px){
  .sect2 .content{
    flex-direction: column;
    align-items: center;
    gap:20px;
  }
}
.sect2 .content .tag{
  background: var(--color3);
  font-family: var(--font2);
  color: var(--color1);
  font-size: 22px;
  border-radius: 0px;
  padding: 10px 20px;
}
@media screen and (max-width:550px){
  .sect2 .content .tag{
    font-size: 14px;
  }
}
.sect2 .content p{
  font-family: var(--font1);
  color: var(--color1);
}
.sect2 .content h2{
  font-family: var(--font2);
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--color3);
}
@media screen and (max-width:550px){
  .sect2 .content h2{
    font-size: 2.2rem;
  }
}

.sect2 .content .box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
}
.sect2 .content .box > img{
  padding-right: 30px;
}
.logos_app{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 50px 0 20px;
}
.logos_app img{
  height: 60px;
}
@media screen and (max-width:550px){
  .logos_app {
    height: 50px;
    padding: 0px 0 40px;
  }
  .logos_app img{
    height: 45px;
  }
}
.sect2 .content .box:nth-child(1){
  flex-direction: column;
  align-items: flex-start;
}
.sect2 .content .box:nth-child(1) P{
  font-size: 22px;
  line-height: 1.4;
  color: var(--color3);
  max-width: 700px;
  width: 100%;
  padding-right: 20px;
  gap:50px;
}
@media screen and (max-width:550px){
  .sect2 .content .box:nth-child(1){
    align-items: center;
  }
  .sect2 .content .box h2{
    text-align: center;
  }
}

.sect2 .content .box:nth-child(2) p{
  font-size: 22px;
  line-height: 1.4;
  color: var(--color3);
  max-width: 420px;
  width: 100%;
  gap:50px;
}
.sect2 .content .box:nth-child(2) p a{
  font-size: 22px;
  line-height: 1.4;
  color: var(--color3);
  font-weight: bold;
  text-decoration: none;
}
.sect2 .content .box:nth-child(2) p a:hover{
  text-decoration: underline;
}
.sect2 .content .box:nth-child(2) p b{
  font-weight: 700;
}
@media screen and (max-width:550px){
  .sect2 .content .box:nth-child(2) img{
    width: 220px;
  }
  .sect2 .content .box > img{
    padding-right: 0px;
  }
  .sect2 .content .box:nth-child(2){
    flex-direction: column;
  }
}






.sect3 h2{
  font-family: var(--font2);
  color: var(--color3);
  font-size: 3rem;
  line-height: 1.3;
  padding: 40px 0 0px;
}
@media screen and (max-width:550px){
  .sect3 h2{
    font-size: 2.2rem;
  }
}
.sect3 .content{
  align-items: flex-start;
}


.sect4 .content{
  justify-content: flex-start;
}
.sect4 .content img{
  display: block;
  width: 100%;
}












.sect5 .content{
  flex-direction: row;
  align-items: baseline;
  padding: 80px 20px;
  gap:50px;
}
@media screen and (max-width:800px){
  .sect5 .content{
    padding: 20px;
    flex-direction: column;
    gap:30px;
    padding: 20px 20px 80px;
  }
}

.sect5 .content .pf{
  color: var(--color2);
}

.sect5 .content .box{
  height: 500px;
  width: 50%;
}
@media screen and (max-width:800px){
  .sect5 .content .box{
    width: 100%;
    height: auto;
  }
}
.sect5 .content .box img{
  width: 100%;
}
.sect5 .content .box .pf{
  padding: 10px;
}

.sect6{
  background: url("../images/sec5--Bohemia.jpg") no-repeat top center;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (max-width:550px){
  .sect6{
    background: url("../images/sec5--Bohemia.jpg") no-repeat 65% center;
  }
}
.sect6 .content{
  align-items: flex-start;
  justify-content: center;
  
}
.sect6 .content .box{
  width: 50%;
}
.sect6 h2{
  font-family: var(--font2);
  color:var(--color1);
  font-size: 3rem;
  line-height: 1.3;
}
@media screen and (max-width:550px){
  .sect6 h2{
    font-size: 2.2rem;
  }
  .sect6 h2 br{
    display: none;
  }
}
.sect6 .content .pf{
  padding: 10px;
  width: 50%;
  margin: 10px 0;
}
@media screen and (max-width:550px){
  .sect6 .content .pf{
    width: 100%;
    
  }
}

.footer .content{
  justify-content: space-between;
  align-items: center;
  padding:50px 20px 20px;
}
@media screen and (max-width:550px){
  .footer .content{
    flex-direction: column;
    gap:20px;
  }
  .footer .content .box{
    text-align: center;
  }
}

.footer .content .box .logo_v2{
  height: 60px;
}

.footer .content p{
  color: var(--color3);
  padding: 30px 5px 0;
  font-weight: 400;
}

.footer .content .box img{
  height: 35px;
  filter: brightness(100%);
}

.footer .content .box:nth-child(2){
  display: flex;
  gap: 20px;
}

.footer .politicas{
  padding:0 25px 70px;
  text-align: left;
}
.footer .politicas a{
  font-family: var(--font1);
  color: var(--color3);
  font-size: 14px;
}

.btnruta{
  display: inline-block;
  padding: 20px 30px;
  text-decoration: none;
  background: var(--color2);
  color: var(--color1);
  border-radius: 5px;
  position: absolute;
  z-index: 999;
  bottom: 50px;
  left: 47%;
  font-weight: bold;
}
.ancla{
  position: relative;
}
#descargaapp{
  margin-top: -50px;
}