
html,body{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}
*{
    
    margin: 0;
    padding: 0;
    
    font-family: 'Mulish', sans-serif;
font-weight: 400;
font-style: normal;
box-sizing: border-box;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Fondo_tumbada_1035x603.png); /* linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/banner_blank.png); */
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100%;
  max-width: 150px;
  height: auto;
    
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #FF19D5;
    display: block;
    margin: auto;
    transition: 0.5s; 
}
.ctrl:hover::after{
    width: 100%;
}
.app-btn{
    display: inline-block !important; 
    color: #fff !important;
    font-size: 16px !important;
    padding: 6px 18px !important;
    background-color: #FF19D5 !important;
    border-radius: 10px !important;
    border: none !important;
    right: 0px !important;
    transition: 0.2s !important;
    cursor: pointer !important;
}
.app-btn:hover{
    color: #FF19D5 !important;
    background-color: #fff !important;
}
@media screen and (max-width: 768px) {
    .app-btn{
       font-size: 32px !important;
       text-align: left !important;
       color: #FF19D5 !important;
       background-color: #fff !important;
    }
    .app-btn:hover{
        color: #555 !important;
        background-color: #FFDBF8 !important;
    }
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
    font-weight: 200;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 16px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #FF19D5;
    background: #FF19D5;
    transition: 1s;
}

nav .material-symbols-outlined{
    font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
    display: none;
    font-size: 36px;
}

@media screen and (max-width: 768px){
    .header{
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Fondo_movil_1011x758.png);
    }
    .text-box{
        margin-top: 20px;
    }
    .text-box h1{
        font-size: 28px;
    }
    .text-box p{
        font-size: 18px;
    }
    .nav{
        right: 0;
        margin-bottom: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        overflow: hidden;
        position: fixed;
        background: #FF19D5;
        height: 100vh;
        width: 0%;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .material-symbols-outlined{
        display: block;
        color:#fff;
        margin: 10px;
        cursor: pointer;
        margin-right: 5px;
    }
    .nav-links ul{
        padding: 32px;
    }
    .nav-links ul li a{
        font-size: 32px;
    }
    .nav-links ul li{
        margin-top: 16px;
    }
    @media screen and (max-width: 400) {
        .nav{
            right: 0;
            margin-bottom: 20px;
        }
        .nav-links{
            overflow: hidden;
            position: absolute;
            background: #FF19D5;
            height: 100vh;
            width: 0%;
            top: 0;
            right: -100%;
            text-align: left;
            z-index: 2;
            transition: 1s;
        }
        .material-symbols-outlined{
            display: flex;
            color:#FF19D5;
            margin: 10px;
            font-size: 12px;
            cursor: pointer;
            margin-right: 5px;
        }
        nav img{
            width: 100%;
          max-width: 75px;
          height: auto;
            
        }
        
    }
    /*
    nav .material-symbols-outlined{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    #menu{
        color: #fff;
        display: block;
        z-index: 3;
    }
    */
}
/*curso*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    /*color: #fff;*/
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 31%;
    background: #FFDBF8;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px){
    .row{
        flex-direction: column;
    }
}
/*-----clases-----*/
.clases{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.clases-col{
    flex-basis: 24%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.clases-col img{
    width: 100%;
    display: block;
}
#id{
    width: 125%;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(255,219,248,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 700;
    color: #555;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
/*----Centro----*/
.centro{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.centro-img{
    text-align: center;
}
.centro-img img{
    width: 100%;
    border-radius: 20px;
}
.centro-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.centro-col img{
    width: 100%;
    border-radius: 10px;
}
.centro-col p{
    padding: 0;
}
.centro-col h3{
    font-weight:700 ;
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*-----Testimonios-----*/
.testimonios{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonios-col{
    flex-basis: 100%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #FFDBF8;
    padding: 25px;
    cursor: pointer;
    display: flex;
    
}
.testimonios-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonios-col p{
    padding: 0;
}
.testimonios-col h3{
    margin-top: 15px;
    text-align: left;
}
#test{
    width: 100%;
    text-align: center;
}
.opinion{
    /* width="500" height="189" style="border:none;overflow:hidden" */
    /* margin: 5px;
    text-align: center;
  width: 500px;
  height: 189px;
  display: flex;
  flex-direction: column;
  align-self: center;
    border: none;
    overflow: hidden;
    padding: 6px; */
    overflow: hidden;
    flex-basis: 50%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #FFDBF8;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.fb-post{
    margin-top: 4vh;
}
/* #fb-pc{
    display: block !important;
}
#fb-movil{
    display: none !important;
}
@media screen and (max-width: 768px){
    #fb-movil{
        display: block !important;
    }
    #fb-pc{
        display: none !important;
    }
    
    .opinion{
        height:min-content ;
    }
} */
@media screen and (max-width: 471px){
    .opinion{
        flex-direction: column;
    }
}

@media screen and (max-width: 768px){
    .testimonios-col p{
        font-size: 12px;
        white-space: pre-line;

    }
    .testimonios-col h3{
        font-size: 14px;
        margin-right: 10px;
    }
    .testimonios-col img{
        width: 30px;
        height: 30px;
        margin-right: 15px;
        margin-left: -10px;
    }
    
}

/*CALL TO ACTION*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.5)),url(images/Logo_Mara_bottom.png);
    background-position: 0% 100%;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media screen and (max-width: 768px) {
    .cta{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.5)),url(images/Logo_Mara_1x1_bottom.png);
    background-position: 0% 100%;
    }

    .cta h1{
        font-size: 16px;
        margin: 6px 8px;
    }
    #boton{
        margin-top: 10px;
        padding: 12px 30px;
        
    }
}
/*--------Footer--------*/
.footer{
     background-color: #F8F8F8; /* #F7F2F6 */
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer-col{
    margin-top: 10px;
}
.footer-row h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.footer-row a{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons{
    margin-top: 2vh;
}
.icons .fa-brands{
    color: #FF19D5;
    margin: 0 13px;
    font-size: 24px;
    cursor: pointer;
    padding: 18px 0;
}
@media screen and (max-width: 768px) {
    .footer h4{
        font-size: 16px;
    }
    .footer p{
        font-size: 12px;
    }
    .icons .fa-brands{
        margin: 2px 11px;
        font-size: 30px;
    }
}
/*
#boton_top {
    position: fixed ;
    right: 2rem;
    bottom: 2rem;
    font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  font-size: 48px;
  display: none;
  z-index: 2;
  }
*/
  @media screen and (max-width:768) {

   /* #boton_top{
        right: 1em;
        bottom: 1em;
        font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
    }
    */
    
  }
  .iconos .fa-circle-arrow-up {
    position: absolute;
    font-size: 30px;
    bottom: 0.5em;
    right: 1em;
    color: #FF19D5;
    z-index: 2;
    cursor: pointer;
    background:100% auto;
    display: none;
    opacity: 0.8;
    /*
    border: none;
    border-radius: 50%;
    */
  }
  .fa-circle-arrow-up:hover{
    opacity: 1;
  }
  @media screen and (max-width:768px) {
    .fa-circle-arrow-up{
        font-size: 0.5rem;
        right: 0.5rem;
        opacity: 0.5;
        } 
  }

  /*-------------ABOUT US----------------*/

  .sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Fondo_tumbada_1035x603.png);
    background-position: 0% 27%;
    background-size: cover;
    text-align: center;
    position: relative;
    color: #fff;
  }
  .sub-header h1{
    margin-top: 100px;
  }
  .about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .about-col{
    flex-basis: 48%;
    padding: 30px 2px;
  }

  .about-col img{
    width: 100%;
  }
  .about-col h1{
    padding-top: 0;
  }
  .about-col p{
    padding: 15px 0 25px;
  }
  .pink-btn{
    border: 1px solid #FF19D5;
    background: transparent;
    color: #FF19D5;
  }
  .pink-btn:hover{
    color: #fff;
  }
  

  #back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #FF19D5;
    cursor: pointer;
    outline: none;
    border: 3px solid #FF19D5;
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    z-index: 99;
  }
  #back-to-top-btn:hover, #back-to-top-btn:focus{
    background-color: #FF19D5;
    color:#fff;
  }
  @media screen  and (max-width: 992px){
    #back-to-top-btn{
    font-size: 22px;
    width: 40px;
    height: 40px;}
  }
  @media screen  and (max-width: 768px){
    #back-to-top-btn{
        font-size: 22px;
        width: 20px;
        height: 20px;}
  }

  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }


/*---------BLOG-----------*/
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis:65% ;
}
.blog-left img{
    width: 100%;
}
.blog-left h2{
    color:#222;
    font-weight: 600;
    margin: 30px 0;
}


  /*---------CONTACTO-----------*/
  .location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
  }
  .location iframe{
    width: 100%;

  }
  .contact-us{
    width: 80%;
    margin: auto;
  }
  .contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;

  }
  .contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .contact-col div .fa-location-dot, .fa-phone, .fa-envelope{
    font-size: 28px;
    color: #FF19D5;
    margin: 10px;
    margin-right: 30px;
  }
  .contact-col div p{
    padding: 0;
  }
  .contact-col div a{
    text-decoration: none;
  }
  .contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color:#555;
    font-weight: 600;
  }
  .contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  #check_privacidad{
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: relative;
    text-align: left;
    padding: 0;
    
    margin: 0;
    
  }
  .privacidad{
    display: block;
    text-align: left;
  }

  @media screen and (max-width: 768px) {
    .sub-header{
        background-position: 60% 27%;
    }
  }
  #sub-clases{
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Fondo_hombre_iStock-508920634.png);
    background-position: 0% 50%;
  }
@media screen and (max-width: 768px) {
    #sub-clases{
        background-position: 40% 50%;
    }
}

.fa-square-whatsapp{
    font-size: 48px;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #FF19D5;
    transition: 0.5s;
}
.fa-square-whatsapp:hover{
    font-size: 56px;
}

@media screen and (max-width: 768px) {
    .fa-square-whatsapp{
        border-radius: 50%;
        font-size: 52px;
        right: 12px;
        bottom: 12px;
    }
    
}