/*Subpages*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
}

.navigation{
    background: #000000;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: sticky;
    top: 0;
}

.navigation__box{
    margin-left: 26px;
}

.back__home{
    color: #fffdd0;
    text-decoration: none;
    font-size: 1.2rem;
    align-items: center;
    display: flex;
    font-size: 25px;
}

.back__home:hover{
    color: #11998e;
    transition: all 0.3s ease;
}

#text{
    padding-left: 20px;
}

.main__frame{
    background: #11998e; 
    background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
    background: linear-gradient(to right, #38ef7d, #11998e); 
    min-height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;

}

.card{
    margin: 30px;
    min-height: 80vh;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 80%;
    border-radius: 30px;
    display: flex;
    padding: 26px;
    justify-content: center;
    align-items: center;
    color: #fffdd0;
    background-color: #131313;    
    transition: 0.3s ease-in;
}

.card h1{
    margin: 20px 20px;
    text-align: center;
}

.card p{
    font-weight: 400;
    text-align: center;
    font-size: 20px;
}

.card span{
    background: #11998e; 
    background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
    background: linear-gradient(to right, #38ef7d, #11998e); 
    
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; 
    font-size: 25px;
}

.card a{
    text-decoration: none;
}

.sub__div{
    margin: 25px auto;
    padding: 10px;
    position: relative;
    height: 300px;
    max-width: 400px;
    width: 80%;
    border: 2px #131313 solid;
    background-repeat: no-repeat; 
    border-radius: 10px;
    filter: brightness(70%);
}


.play {
    font-size: 20px;
    background: #11998e; 
    background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
    background: linear-gradient(to right, #38ef7d, #11998e); 
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    display: flex;
    align-items: center;
  }
  
  .play div {
    position: relative;
    z-index: 2;
    color: #131313;
    text-decoration: none;
    padding-left: 20px;
  }
  
  .play:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #11998e;
    background: -webkit-linear-gradient(to left, #38ef7d, #11998e);  
    background: linear-gradient(to left, #38ef7d, #11998e); 
    transition: all 0.35s;
    border-radius: 4px;
  }
  
  .play:hover {
    color: #fffdd0;
  }
  
  .play:hover:after {
    width: 100%;
  }

  .myvideo{
    margin:30px 30px ;
    border-radius: 10px;
  }

  .download {
    font-size: 20px;
    background: #11998e; 
    background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
    background: linear-gradient(to right, #38ef7d, #11998e); 
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    display: flex;
    align-items: center;
  }
  
  .download div {
    position: relative;
    z-index: 2;
    color: #131313;
    text-decoration: none;
    padding-left: 20px;
  }
  
  .download:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #11998e;
    background: -webkit-linear-gradient(to left, #38ef7d, #11998e);  
    background: linear-gradient(to left, #38ef7d, #11998e); 
    transition: all 0.35s;
    border-radius: 4px;
  }
  
  .download:hover {
    color: #fffdd0;
  }
  
  .download:hover:after {
    width: 100%;
  }

   /*Footer*/
 .footer__container{
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 #footer__logo{
    color: #fffdd0;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;  
 }

 .footer__links{
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;

 }

 .footer__link--wrapper{
    display: flex;
 }

 .footer__link--items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
 }

 .footer__link--items h2 {
    margin-bottom: 16px;
    color: #fffdd0;
 }

 .footer__link--items a {
    color: #fffdd0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.1s ease-out;
 }

 .footer__link--items a:hover {
    color: #11998e;
    transition: 0.2s ease-out;
 }

 .social__icon--link{
    color: #fffdd0;
    font-size: 24px;
 }

 .social__media{
    max-width: 1000px;
    width: 100%; 
 }

 .social__media--wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
 }

 .social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
 }

 .website__rights{
    color: #fffdd0;
 }

 @media screen and (max-width: 820px){
    .footer__links{
        padding-top: 2rem;
    }
    #footer__logo{
        margin-bottom: 2rem;
    }

    .website__rights{
        margin-bottom: 2rem;
    }

    .footer__link--wrapper{
        flex-direction: column;
    }

    .social__media--wrap{
        flex-direction: column;
    }
 }

 @media screen and (max-width: 480px){
    .footer__link--items{
        margin: 0;
        width: 100%;
    }
 }
