*{
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
  }

:root{
    --cor-bg:#F5FEF9;
    --cor-word1:#268CFF;
    --cor-word2: #f20789;
    --cor-word3:#A8F2FE;
    --cor-word4:#F207891A;
    --cor-word5:#A8F2FE66;
}

/* body,h1,h2,h3,h4,h5,h6 {font-family: Roboto, sans-serif; margin-left: 5;} */

body{
    background-color: var(--cor-bg);
    cursor: url('./src/image/cursor-default.png'), default;
}

button, a, button:hover, a:hover{
    cursor: url('./src/image/cursor-hover.png'), auto;
}

a{
    text-decoration: none;
}

nav{
    background-color: var(--cor-word1);
    display: flex;
    align-items: center;
}

nav a img {
    max-width:40%;
    height: inherit; 
}

.header-page{
    background-color: var(--cor-word1);  
    
    background-image: url('src/image/header-background.png');
    background-repeat: repeat; 
    background-size: 30%;    
    animation: move 70s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;   
    animation-direction: reverse;

    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
    
}
.header-text-container{
    position: inherit;
    z-index: 50;
    width: 90vw;
    height: 80vh;
    background-image: url('src/image/header-image.png');
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: left;
    
}

.header-main-text{
    color: var(--cor-word3);
    font-weight: bolder;        
}

.header-text{
    color: var(--cor-bg);    
    max-width: 60%;   
}

.button-header{
    color: #fff;
    background-color: var(--cor-word2);
    animation: cor 3s linear infinite;    
    margin: 0 2rem;
    width: 30%;
    max-width: 50%;
}



/* .header-image{
    position: inherit;
    z-index: 0;
    border: 1px solid green;
} */

.benefits-title{
    display: flex;
    align-items: center;
    justify-content: center;    
}

.benefits-text{
    color: var(--cor-word1);   
    font-weight: bolder;    
}

.benefits-second-text{
    color: var(--cor-word1);   
    font-weight: bold; 
    margin-left: 0.7rem;
    margin-right: 0.7rem;
}
.benefits-button-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;    
}

.benefits-button{
    border: 1px solid var(--cor-word3);
    width: 107px; 
    height: 117px;
    margin: 0.5rem;
   
}

.benefits-button img{
    width:100%;
    max-width: 50px; 
    max-height: 50px;
}

.benefits-button p{
    color: var(--cor-word1);  
    font-size: 80%;    
}

.btn-whatsapp-fixed {
  position: sticky;
  width: 60px;
  height:60px;
  top: 90vh;
  bottom:5vh;
  left:93vw; 
  background-color:#25d366;
  color:#fff;
  border-radius:50px;
  text-align: center;
  box-shadow: 1px 1px 2px #888;
  z-index:50;
  font-size: 30px;
}


.btn-whatsapp-fixed i{
  margin-top: 15px;
}

.teacher-info{
    background-color: var(--cor-word2);
    color: var(--cor-bg);    
}

.teacher-info h5{
    margin-top: 0.3rem;
    text-align: left;    
}

svg {
    fill: currentColor;
    height: auto;
    max-width: 66vmin;
    transform-origin: center;
    width: 100%;
    position: absolute;
    left: 25%;
    top: -5%;
}
.img-teacher{
    position: relative;
    animation: animate 3s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i));
    max-width: 60%;
    margin-top: 3%;
}

.img-teacher img {
    width:100%; 
    height: auto;
}

.teacher-testimony{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.testimony-box{
    background-color: var(--cor-word3);
    color: var(--cor-word1);
    border: 2px dashed var(--cor-word1); 
    width: 344px;   
    height: 144px;
}

/* From Uiverse.io by yaasiinaxmed */ 
.btn-testimony-box {    
    font-family: inherit;
    display: inline-block;
    width: 60%;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;    
    margin: 20px;
    font-size: 1.5rem;
    z-index: 1;
    color: var(--cor-word1);
    border: 2px solid var(--cor-word1);
    border-radius: 6px;
    position: relative;
    text-decoration: none;
    white-space: nowrap; 
  }
  
  .btn-testimony-box::before {
    position: absolute;
    content: "";
    background: var(--cor-word1);
    width: 900px;
    height: 300px;
    z-index: -1;
    border-radius: 10%;
  }
  
  .btn-testimony-box:hover {
    color: var(--cor-bg);
  }
  
  .btn-testimony-box:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
  }
  
  .btn-testimony-box:hover::before {
    top: -30px;
    left: -30px;
  }
  

.box-video-text{
    background-color: var(--cor-word1);
    padding: 1rem;
    width: 40%; 
    text-align: left;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.box-video-text h2{
    font-weight: bolder; 
    margin-top: 0.3rem;  
    color: var(--cor-word3);  
}

.box-video-text h5{
    font-weight: bold; 
    color: var(--cor-bg);  
}

.box-video{
    background-color: var(--cor-word1);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    
}

.box-video video{
    width: 120%; 
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px lightblue;
}

.box-method{
    background-color: var(--cor-word5);
}

.title-method{
    position: relative;
    top: -30px;
    width: 35%;
    padding-top: 0.5rem;  
    padding-bottom: 1.0rem; 
    font-weight: bolder; 
    margin-top: 2.5rem;
    border-radius: 15px;
    background-color: var(--cor-word3);
    color: var(--cor-word2); 
    box-shadow: 0px 0px 10px grey;      
}

.text-method {    
    /* display: inline-block; */
    padding-left: 10px;
    font-size: 15rem;
    font-weight: bold;
    /* adding background using a gradient to the text */
    background:
    radial-gradient(100% 54% at top, var(--cor-word3) 99%, var(--cor-word1)) calc(0*100%/3) 0,
    radial-gradient(100% 58% at bottom, var(--cor-word1) 99%, var(--cor-word3)) calc(3*100%/3) 0,
    radial-gradient(100% 58% at top, var(--cor-word3) 99%, var(--cor-word1)) calc(6*100%/3) 0,
    radial-gradient(100% 58% at bottom, var(--cor-word1) 99%, var(--cor-word3)) calc(9*100%/3) 0;
    /* set up background size and repeat */
    background-size: 50% 100%;
    background-repeat: no-repeat;
    /* setup text as a background clip */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    animation: wave 2s infinite linear;
 }

 .text-method-acronym{
    color: var(--cor-word2);
    font-size: xx-large;
    text-transform: uppercase;
    font-weight: bolder;
 }
 .text-method-acronym span{
    color: var(--cor-word1);
    font-size:170%;
 }

/* .box-method h2{
    padding-top: 0.5rem;  
    padding-bottom: 1.0rem; 
    font-weight: bolder; 
    margin-top: 0.3rem;  
    color: var(--cor-word2); 
} */

.box-method img{
    width: 70%;
 }

.box-method-area{
    padding-top: 1.0rem;
}

.box-method-header{
    display: flex;
    align-items: center;
}

.box-method-text-acronomy{
    flex-grow: 2;
    text-align: left;
    font-weight: bolder;
}

.box-method-header img{
    width: 80%;
    height: auto;
}

.box-method-details{
    position: relative;
    top: 50px; 
    margin-bottom: 10px;   
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: var(--cor-word3);    
}

.card-method-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-method{
    width:200px; 
    margin-left: 15px;
    padding-top: 10px;
    padding-bottom: 15px;
    background-color: var(--cor-bg);
    border: 1px solid var(--cor-word3);
 }

.text-slogan{
    color: var(--cor-word1); 
    text-align: center;
    margin-top: 7rem;
    margin-bottom: 3rem;
}

.box-course{
    background-color: var(--cor-word4);
    border-radius: 15px;
}

.box-course h2{
    font-weight: bolder; 
    margin-top: 0.3rem;  
    color: var(--cor-word2);  
}

.box-course h5{
    font-weight: bold; 
    color: var(--cor-word2);  
}

.box-class-options{
    display: flex;
    justify-content: center;
}



/* From Uiverse.io by satyamchaudharydev */ 
.btn-more-info {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--cor-word5);
    border-radius: 15px;
    background-color: var(--cor-word2);
    color: var(--cor-bg);
    width: 80%;
    padding: 5px 3px;
    margin: 5% auto;
    padding-block: 0.5rem;
    padding-inline: 1.25rem;    
    display: flex;
    align-items: center;
    justify-content: center;    
    gap: 10px;
    font-weight: bold;
    
    outline: none;
    overflow: hidden;
    /* font-size: 15px; */
    cursor: pointer;
  }
  

  
  .btn-more-info:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  

  .btn-more-info:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .btn-more-info::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  




.text-course-option{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: var(--cor-word2);
}

.card-course-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-course{
   width:200px; 
   margin-left: 15px;
   background-color: var(--cor-bg);
   border: 1px solid var(--cor-word3);
}

.btn-course-details{   
    color: #F2078980;
    cursor: pointer;
}

.btn-buy{
    width: 80%;
    padding: 3px;
    border: 1px solid var(--cor-word2);
    border-radius: 15px;
    background-color: var(--cor-word2);
    color: var(--cor-bg);
}

.box-certification{
    color: var(--cor-word2);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.btn-accordion{
    padding: 0.9rem 0.8rem;
    margin-left: auto;
    margin-right: auto;
    
    width: 66%;
    border: none;
    background-color: var(--cor-word3);
    color: var(--cor-word1);    
}

.text-accordion{
    padding: 0.9rem 0.8rem;
    margin-left: auto;
    margin-right: auto;    
    width: 66%;
    border: 1px solid var(--cor-word3);
    border-top: none;
    text-align: left;
}

footer{
    background-color: var(--cor-word2);
    color: var(--cor-bg);     
    height: 10rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
}

.terms-content, .copyright {
    padding-top: 2%;
} 



@keyframes move {
    0% {
      background-position: -5 -5;
    }
    100% {
      background-position: 300px 300px;
    }
}

@keyframes cor {
    0% {
        background-color: #F20789;
    }
    50% {
        background-color: #e353a2;
      }
    100% {
        background-color: #F20789;
    }
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(10deg);
    }

    40%,
    100% {
        transform: rotate(0deg);
    }
}

@keyframes wave {
    /* change background-position */
    to {
       background-position:
       calc(-6*100%/3) 0,
       calc(-3*100%/3) 0,
       calc(0*100%/3) 0,
       calc(3*100%/3) 0;
    }
 }

@media screen and (min-width: 601px) {
    .header-text-container{        
        height: 80vh;
        justify-content: center;
    }

    .header-main-text {
        font-size: 3.5rem;
        margin: 0 2rem;
        line-height: 4rem;
        max-width: 70%;
        
    }
    .header-text {
        font-size: 1.3rem;
        margin: 1rem 2rem; 
    }
}
  
@media screen and (max-width: 600px) {
    .header-text-container{        
      height: 60vh;
      padding: 1% 0;
      justify-content: top;
    }
    .header-main-text {
      font-size: 2.5rem;
      line-height: 2.5rem;
      max-width: 100%;
    }
    .header-text {
      font-size: 1.0rem;
      max-width: 65%;
      margin: 2% 0;
     }
    .button-header{   
      margin: 2% 0;
    }
    .btn-whatsapp-fixed {      
     width: 30px;
     height:30px;      
     font-size: 15px;
    }
    
    .btn-whatsapp-fixed i {
      margin-top: 7px;
    }
    .btn-testimony-box {
      width: 96%;
      font-size: 0.96rem;
      margin-left: auto;
      margin-right: auto;
    }
    .box-method-header img{
      display: none;
    }
    .title-method{
      width: 50%;
      margin-left: 0.5rem;
    }
    .card-method{
      width:70%;
    }

    .method-description, .box-course h2, .box-course h5{
      padding-left: 1%;
      padding-right: 1%;
    }
    .box-class-options{
      flex-direction: column;
    }
}



  @-moz-keyframes shine2 {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 650px;
    }
    100% {
      background-position: 650px;
    }
  }
  @-webkit-keyframes shine2 {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 650px;
    }
    100% {
      background-position: 650px;
    }
  }
  @-o-keyframes shine2 {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 650px;
    }
    100% {
      background-position: 650px;
    }
  }
  @keyframes shine2 {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 650px;
    }
    100% {
      background-position: 650px;
    }
  }
  