*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    transition: 1s all ease;
    color:white; 
}
body,html{
    background-color: rgb(49, 49, 49);
    height: 100%;
    width: 100%;
}
.fa{
    font-size: 20px;
}
.first-heading{
    font-weight: 900;
    font-size: 30px;
    padding:10px 0;
    text-align: center;
    color: #e67e22;
    background-color: black;
    width: 95%;
    margin: 10px auto;
  }
/* Navbar Section */
nav{
    background-color:transparent;
    overflow: hidden;
    position: fixed; 
    width: 100%;
    z-index: 1111;
    padding: 15px 0;
}
label.logo{
    font-weight: bold;
    margin-left:40px;
    font-size: 30px;
    line-height: 50px;
}
.sidenav{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 111;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 50px;
    margin-left: 50px;
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    transition: 0.3s;
    margin-bottom: 30px;
}
.sidenav a:hover{
    opacity: 0.5;
    cursor: pointer;
}
.opennav{
    margin-right: 40px;
    color: white;
    font-size:35px;
    padding: 0 0px;
    cursor:pointer;
    float: right;
}
/* Login & Signup Modal Window  */
.wrapper{
    z-index: 11;
    position: absolute;
    text-align: center;
    top:670px;   
    width: 100%;
}
.wrapper button.getstarted{
    background-color: #4CAF50;
    color:white;
    padding:14px 20px;
    margin: 8px 26px;
    border:none;
    border-radius: 5px;
    cursor:pointer;
    width: 200px;
    font-size: 20px;
}
.wrapper .btncontainer{
    background-color: black;
}
.wrapper .btncontainer button.getstarted:hover{
    opacity: 0.5;
}
.modal{
    display: none;
    position:fixed;
    z-index: 1111111;
    left:0;
    top:0;
    width:100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content{
    background-color: #fefefe;
    margin: 4% auto 15% auto;
    border: 1px solid #888;
    width:40%;
    padding-bottom:30px;
}
.animate{
    animation: zoom 0.6s;
}
@keyframes animate{
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100%{         transform: translateY(-800px) rotate(360deg);
        opacity: 0;
    }
}
@keyframes zoom{
    from{transform:scale(0)}
    to{transform: scale(1);}
}
.imgcontainer{
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}
.wrapper .modal .animate .imgcontainer h2{
    font-size: 20px;
    color: black;
}
.close{
    position: absolute;
    right:25px;
    top:0;
    color:#000;
    font-size: 55px;
    font-weight: bold;
}
.close:hover,.close:focus{
    color:red;
    cursor: pointer;
}
.avatar{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.container input[type=text],input[type=password]{
    width:90%;
    color:black;
    padding: 12px 20px;
    margin: 8px auto;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 20px;
}
button.login{
    background-color: #4CAF50;
    padding:14px 20px;
    margin: 8px 26px;
    border:none;
    margin: 8px auto;
    cursor:pointer;
    width: 90%;
    border-radius: 5px;
    font-size: 20px;
}
.wrapper .modal .container .mybuttons{
    display: flex;
    justify-content: space-between;
    padding: 25px;
}
.wrapper .modal .container .mybuttons label,
.wrapper .modal .container .mybuttons a{
    color: blue;
    font-size: 18px;
}
.wrapper .modal .container .mybuttons label:hover,
.wrapper .modal .container .mybuttons a:hover{
    color: red;
    cursor: pointer;
}
/* Landing Page Section */
.landing-page{
    width: 100%;
    height: 700px;
    background-image: url('images/logo.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size:contain;
    margin: 0 0 100px 0;
    position: relative;
    top:90px;
}
 .page-content{
    position: absolute;
    margin-top:10px;
    font-size: 35px;
    text-align: center;
    width:100%;
    background-color: black;
    font-weight: bold;
}
.page-content span{
    margin:auto 0;
}
.wordCarousel{
    display: flex;
    justify-content: center;
}
.mydiv{
    overflow: hidden;
    position: relative;
    height: 65px;
}
li {
    color:orange;
    padding: 0 10px;
    margin: 20px 0 45px -5px;
}
:root{
    --animation-duration:1s;
}
.suport,.suport1{
    position: absolute;
    bottom:0%;
    width:20%;
    z-index: 1;
    display: inline-block;
    text-align: center;
}
.suport1{
    right: 0%;
}
.smash{
    animation-name: smash;
    animation-duration: var(--animation-duration);
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: bottom ;
}
.shadow,.rotateimg{
    border-radius: 50%;
    display: inline-block;
    width:130px;
    height: 130px; 
}
.shadow{
    animation-name: shadow;
    animation-duration: var(--animation-duration);
    animation-direction: alternate; 
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
.rotateimg{

    background-image: url(http://www.wdisseny.com/code/basket.gif);
    background-size: 100%;
    animation-name: rotate;    
    animation-duration:calc( var(--animation-duration)*5.3);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes shadow{
    0%{
        transform: translateY(0);
        box-shadow: 20px 20px 10px #444466;
    }
    100%{
        transform: translateY(-350px);
        box-shadow: 20px 350px 250px #444466;
    }
}
@keyframes smash{
    0%{
        transform: scaleY(0.7);
    }
    15%{
        transform: scaleY(1);   
   }
}
@keyframes rotate{
    100%{
        transform: rotate(360deg);
    }
}
.flip2 { animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip3 { animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip4 { animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }

@keyframes flip2 {
    0% { margin-top: -180px; }
    5% { margin-top: -90px;  }
    50% { margin-top: -90px; }
    55% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -270px; }
}

@keyframes flip3{
    0% { margin-top: -270px; }
    5% { margin-top: -180px; }
    33% { margin-top: -180px; }
    38% { margin-top: -90px; }
    66% { margin-top: -90px; }
    71% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -270px; }
}

@keyframes flip4 {
    0% { margin-top: -360px; }
    5% { margin-top: -270px; }
    25% { margin-top: -270px; }
    30% { margin-top: -180px; }
    50% { margin-top: -180px; }
    55% { margin-top: -90px; }
    75% { margin-top: -90px; }
    80% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -270px; }
} 
/* About Section */
.about-section{
    display: grid;
    grid-template-columns:auto auto;
    grid-gap: 20px;
    width: 95%;
    margin: 0 auto 40px auto;
    background-color: black;
}
.about-section .left-about-section .main-img{
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: top center;
}
.about-section .right-about-section{
    padding: 15px;
}
.right-about-section > h1{
    font-size: 35px;
    color: #1abc9c;
}
.right-about-section .right-content > h6{
    font-size: 25px;
    margin: 7px 0 10px 0;
    color: #f1c40f;
}
.right-about-section .right-content > p{
    font-size: 18px;
    text-align: justify;   
    font-weight: 600;
    color: white;
   }
/* Training Glimpse Section */
.Our-Team-Members{
     width:95%;
     margin: 0 auto 40px auto;
}
.grid-parent-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    text-align: center;
}
.grid-child-member{
    box-shadow: 5px 5px 5px #e6e6e6;
    background-color:black;
}
.image-div-container{
    position: relative;
    height: 250px;
}
.training-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.grid-content{
    padding:30px;
}
.grid-child-member p:first-of-type{
    font-size: 25px;
    font-weight: 700;
    color: white;
}
.grid-child-member span.post{
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    margin: 10px 0;
    color: orange;
}
.grid-content .para2{
    font-weight: 600;
    font-size: 18px;
    text-align: justify;
}
/* Tournament Section */
.tournament-section{
    width: 95%;
    margin: 0 auto 40px auto;
    background-color: black;
    border-radius: 10px; 
    color:black;
}
.tournament-section .box{
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr; 
    grid-gap: 20px;
}
.tournament-section .second-parent .box .left-tournament{
    text-align:center;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.tournament-section .box1{
    background-color: orange;
}
.tournament-section .box2{
    background-color:#E44236;   
}
.tournament-section .box3{
    background-color:#2ecc72;
}
.tournament-section .left-tournament h1{
    font-size: 35px;
    margin-top: 30px
}
.tournament-section .left-tournament h5{
    font-size: 25px
}
.tournament-section .right-tournament{
    padding: 0;
}
.tournament-section .right-tournament .more-details{
    margin-top: 30px;
    display: none;
}
.tournament-section .right-tournament .more-details h3{
    margin-bottom: 10px;
    color: yellow;
}
.tournament-section .right-tournament p{
    font-size: 18px;
    margin: 10px 0;
    text-align: justify;
}
.read-more{
    text-decoration: none;
    display: inline-block;
    width: 180px;
    font-size: 16px;
    outline: none;
    border: red;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    background-color:#ff4d4d;
    border-radius: 5px;
  }
  .read-more:hover{
    cursor: pointer;
      opacity: 0.5;
  }
/* Team Section */
.row{
    background-color: #ffe501;
    width:95%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin: 0 auto 40px auto;
    font-weight:bold;
}
.col{
    text-align: center;
    overflow:hidden;
    position: relative;
}
.col img{
    width: 100%;
    margin: 0;
    cursor: pointer;
    transition: 1s;
}
.col:hover img{
   transform: scale(1.1);
}
.col h3,.col p{
    color: black;
}
.col h3{
    margin-top: 30px;
    font-size: 25px;
}
.col p{
    margin: 10px 0;
    font-size: 20px;
}
.social-links .fab{
    font-size: 25px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border:1px solid #000;
    margin:0 4px;
    cursor: pointer;
    color: black;
    border-radius: 3px;
    transition: transform .5s;
}
.social-links .fab:hover{
    transform: translateY(-7px);
}  
/* Video Section */
.video-section{
    background-color: black;
    width:95%;
    margin:0 auto 40px auto;
    text-align: center;
}
.col span{
    width: 0;
    border-top:20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 15px solid #ffe501; 
    position: absolute;
    top: 50%;
    right: 0;    
    transform: translateY(-50%);
    z-index: 2;
}
.col .arrow{
    right:unset;
    left: 0;
    border-left: 15px solid #ffe501; 
    border-right:20px solid transparent;
}
.background{
    display: flex;
    width: 100%;
    margin: 0 auto 40px auto;
}
.container2{
    width: 100%;
    padding: 10px;
}
.screen{
    position: relative;
    background-color: #3e3e3e;
    border-radius: 15px;
}
.screen:after{
    content:'';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    z-index: -1;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0,0.4);
}
.screen-header{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #4d4d4f;
    border-top-left-radius:15px;
    border-top-right-radius:15px;
}
.screen-header-left{
    margin-right: auto; 
}
.screen-header-button{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border-radius: 8px;
    background-color: #fff;
}
.screen-header-button.clos{
    background-color: #ed1c6f;
}
.screen-header-button.maximize{
    background-color: #e8e925;
}
.screen-header-button.minimize{
    background-color: #74c54f;
}
.screen-header-right{
    display: flex;   
}
.screen-header-ellipsis{
    width: 3px;
    height: 3px;
    margin-left: 2px;
    border-radius: 8px;
    background-color: #999;
}
.screen-body{
     display: flex;
}
.screen-body-item{
    flex: 1;
    padding: 50px;
}
.screen-body-item.left{
    display: flex;
    flex-direction: column;
}
.app-title{
    display: flex;
    flex-direction: column;
    position: relative;
    color:#ea1d6f;
    font-size:35px;
}
.app-title:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background-color: #ea1d6f ;
}
.app-contact{
    margin-top: auto;
    font-size: 16px;
}
.app-form-group{
    margin-bottom: 15px;
}
.app-form-group.message{
    margin-top: 40px;
}
.app-form-group.buttons{
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}
.app-form-control{
    width:100%;
    padding:10px 0;
    background-color:transparent;
    border:none;
    border-bottom: 1px solid #666;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}
.app-form-control::placeholder{
    color:white;
}
.app-form-control:focus{
    border-bottom-color: #ddd;
}
.app-form-button{
    background-color: transparent;
    border: none;
    color:#ea1d6f;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}
.app-form-button:hover{
    color:#b9134f;
}
/* FAQ Section */
.faq-section{
    width: 95%;
    margin: 0 auto 40px auto;
}
.faq-section h6{
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color:#2475B0;
}
.faq-section h2{
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
    color:#D63031;
}
.faq-section .p2,.p1{
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
}
.p1{
    text-align: justify;
}
.faq-section .faq-main-section{
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 20px;
    margin: 10px 0;
}
.faq-section .faq-main-section .faq-left-section .accordion{
    margin-bottom: 10px;
    border-radius: 4px;
    color: white;
    background-color:black;
    cursor: pointer;
    font-weight: 600;
    padding: 18px;
    width: 100%;
    border: none;
    text-align:left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
}
.faq-section .faq-main-section .faq-right-img{
    width: 100%;
    background-color: black;
}
.faq-section .faq-main-section .faq-right-img img{
    width: 100%;
} 
.accordion:after {
    content: '\002B'; 
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 30px;
}  
.active:after {
    content: "\2212";
}  
.panel {
    margin-bottom: 10px;
    max-height: 0;
    background-color: black;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/* Footer Section */
footer{
    width: 100%;
    text-align: center;
    font-weight: 600;
    background-color: black;
    padding: 20px 0;
  }
footer span.owner-name{
    color:#EEC213;
}
@media(max-width:1099px){
    /*  About Section */
    .about-section{
        grid-template-columns: 1fr;
    } 
    .about-section .right-about-section  h1{
        margin-top: -15px; 
    }
    .about-section .right-about-section .right-content > p{
        font-size: 20px;
    }
}
@media (max-width:999px){
    /* Login & Signup Modal Window  */
    .modal-content{
        width: 70%;
    }
    /* Training Glimpse Section */
    .Our-Team-Members .grid-parent-container{
        grid-template-columns: 1fr 1fr;
    }
    .image-div-container{ 
        height: 300px;  
    }
    /* Team Section */
    .col h3,
    .col p{
        font-size: 20px;
    }
}
@media (max-width:899px){
    /* Team Section */
    .row{
        grid-template-columns: 1fr 1fr;
    }
    .col h3{
        font-size: 25px;
        margin-top:80px 
    }
    .grid3{
       grid-area:2/2/2/3; 
    }
    .grid5{
       grid-area: 3/2/3/3;
    }
    .grid11{
       grid-area:6/2/6/3;
    }
}
@media (max-width:799px){
    /* Training Glimpse Section */
    .Our-Team-Members .image-div-container{
        height: auto;
    }
    /* Tournament Section */
     .tournament-section .box{
        grid-template-columns: 1fr 3fr; 
    }
    /* FAQ Section */
    .faq-section h2{
        font-size: 30px;    
     }
    .faq-section .faq-main-section{
        grid-template-columns: 2fr 1fr;
    }
}
@media (max-width:699px){
    .first-heading{
        font-size: 30px;
    }
    .wrapper button.getstarted{
         height: 50px;
         padding:10px;
    }
     /*  About Section  */
    .about-section .right-about-section h1{
        font-size: 28px;
    }
    .about-section .right-about-section h6{
        font-size: 22px;
    }
    .about-section .right-about-section .right-content p{
        font-size: 19px;
    }
    /* Training Glimpse Section */
    .Our-Team-Members .grid-parent-container{
        grid-template-columns: 1fr
    }
   /* Tournament Section */
    .tournament-section .box{ 
         grid-template-columns: 1fr; 
    }
    .tournament-section .box .right-tournament{
        text-align: center;
        margin-top: -20px;
        padding:0 10px;
    }
    .tournament-section .box .right-tournament button.read-more{
        margin-bottom: 20px;
    }
    .tournament-section .right-tournament .more-details{
         margin-top: 0;
    }
     /* Team Section */
    .col h3{
        margin-top: 40px
    }
}
@media(max-width:649px){
     .wrapper{
        top: 650px;
    }
    .wrapper .btncontainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .suport,.suport1{
        width: 30%;
        bottom: 11%;
    }
}
@media(max-width:599px){
     /*   FAQ Section   */
    .faq-section h6{
        background-color: black;
    }
    .faq-section h2{
        font-size: 25px;
        background-color: black;
    }
    .faq-section .p2{
        text-align: justify;
    }
    .faq-section .faq-main-section {
        grid-template-columns: 1fr;
    }
    .faq-section .faq-main-section .faq-right-img{
        grid-area: 1/1/2/2;
        text-align: center;
    }
    .faq-section .faq-main-section .faq-right-img img{
        max-width: 50%;
    }
}
@media(max-width:549px){
    .wrapper{
        top: 550px;
    }
    .landing-page{
        height: 600px;
    }
    .suport,.suport1{
        width: 30%;
        bottom: 11%;
        top: 55%;
    }
    /* Landing Page Section */
    .page-content span{
        font-size: 30px;
    }
     /* Team Section */
    .col h3{
        font-size: 20px
    }
    .social-links .fab{
        font-size: 20px;
        width: 25px;
        height: 30px;
     }
     /*  Contact Section */
     .screen-body{
        flex-direction: column;
     }
    .screen-body-item{
        padding: 30px;
      }
    .app-contact{
        margin-top: 20px;
      }
}
@media(max-width:499px){

    .shadow,.rotateimg{
        width:80px;
        height: 80px;   
     }
    .modal-content{
        width: 100%;
     } 
}
@media(max-width:449px){
    .wrapper{
        top: 480px;
    }
    .landing-page{
         height: 530px;
    }
    .page-content span{
        font-size: 25px;
    }
    .col h3{
        margin-top: 15px;
    }
}
@media(max-width:399px){
    .first-heading{
        font-size: 25px;
    }
   /*  Navbar Section  */
    nav{
        padding: 0;
    }
    label.logo{
         font-size: 25px;
         margin-left:20px;
    }
    .opennav{
        margin-right: 20px;
        font-size:30px;
    }
     /*  Landing Page  */
    .wrapper{
        top: 400px;
    }
    .landing-page{
         top: 60px;
         height: 480px;
    }
    .page-content{
        margin-top: 0;
        background-color: transparent;
    }
    .page-content .wordCarousel span{
        font-size: 22px;
    }
    .page-content .wordCarousel .mydiv li{
        font-size: 22px;
        margin-bottom: 65px;
    }
     .shadow,.rotateimg{
        width:50px;
        height: 50px;   
     }
    /* About Section  */
    .about-section .right-about-section .right-content h6{
        font-size: 20px;
        font-weight: 100;
    }
    .about-section .right-about-section .right-content p{
        font-weight: 100;
    }
    .tournament-section  h2#tournament{
        font-size: 22px;
        padding-top: 20px;
    }
    /*  Team Section */
    .row{
       grid-template-columns: auto;
   }
   .grid1{
       grid-area: 1/1/2/3;
   }
   .grid2{
       grid-area: 2/1/3/3;
   }
   .grid3{
       grid-area: 3/1/4/3;
   }
   .grid4{
       grid-area:4/1/5/3;
   }
   .grid6{
       grid-area: 5/1/6/3;
   }
   .grid5{
       grid-area:6/1/7/3;
   }
   .grid8{
       grid-area:7/1/8/3;
   }
   .grid7{
       grid-area:8/1/9/3;
   }
   .grid9{
       grid-area:9/1/10/3; 
   }
   .grid10{
       grid-area:10/1/11/3; 
   }
   .grid11{
       grid-area:11/1/12/3;
   }
   .grid12{
       grid-area:12/1/13/3;
   }
    .col h3{
        margin-top:10px; 
    }
    .social-links .fab{
        margin-bottom: 20px;
    }
     /* FAQ Section  */
    .faq-section h6{
        font-size: 25px;
    }
    .faq-section h2{
        font-size: 20px;
    }
    .faq-section p.p1,
    .faq-section p.p2{
        font-size: 18px;
    } 
}
@media(max-width:349px){
    .suport,.suport1{
        top: 50%;
        height: 20%;
    }
    .modal-content{
        margin: 0 auto;
    }
    /*  Landing Page  */
    .wrapper{
        top: 360px;
    }
   .landing-page .page-content .wordCarousel span .fa-arrow-right{
         display: none;
    }
    .wrapper .modal .container .mybuttons{
         flex-direction:column;
         padding:10px;
    }
    .wrapper .modal .container .mybuttons a{
         margin:10px 0 0 0;
    }
    .landing-page{
         height: 440px;
    }
    .about-section .right-about-section h1{
        font-size: 25px;
    }
    .video-section iframe{
        height: 350px;
    }
    .grid-content{
          padding:20px;  
     }
    .about-section .right-about-section .right-content p{
        font-size: 17px;
        letter-spacing: 1px;
    }
    .read-more{
        width: 100%;
    }
    .modal{
        height: auto;
    }
    .wrapper .modal .imgcontainer h2.myheading2{
        font-size: 20px;
        padding: 0 10px;
    }
     .wrapper .btncontainer{
        background-color:transparent
    }
    footer{
        padding: 20px;
        text-align: justify;
    }
}
@media(max-width:299px){
    /* Landing Page Section  */
    label.logo{
        margin-left: 5px;
        font-size: 20px;
    }
    .wrapper{
         top: 320px;
     }
    .landing-page{
         height: 380px;
    }
    .page-content .wordCarousel .mydiv li,
    .page-content .wordCarousel span{
        font-size: 19px;
    }
     .page-content .wordCarousel .mydiv li{
        margin-bottom: 70px;
    }
    .wrapper button.getstarted{
        height: 40px;
        font-size: 20px;
        width: 55%;
        padding: 0 ;
    }
    .avatar{
        width: 150px;
        height: 150px;
     }
    .about-section .right-about-section .right-content p{
       font-size: 15px;
    }
    /* Training Glimpse Section */
    .grid-content{
        padding:10px;
    }
    .grid-child-member p:first-of-type{
        font-size: 20px;
    }
    .grid-child-member span.post{
        font-size: 18px;
    }   
    .col h3,.col p,.social-links .fab{
        font-size: 18px;
    }  
    .background .container2 .screen .screen-body .screen-body-item .app-title{
        font-size:22px;
        display: inline;
    }
    .app-title:after{
        width:50px;
    }
   /*  FAQ Section  */
     .faq-section h6,
     .faq-section h2{
        padding: 10px;
    }
    .faq-section h6{
        font-size: 20px;
    }
    .faq-section h2{
        font-size: 15px;
    } 
    .tournament-section .second-parent .box .left-tournament{       
        height:100px;
    }
    .tournament-section .left-tournament h1,
    .tournament-section .left-tournament h5{
        font-size: 20px;
     }
}
@media(max-width:269px){
    .wrapper{
         top: 275px;
     }
    .landing-page{
        height: 340px;
    }
    .video-section iframe{
        height: 300px;
    }
}
@media(max-width:249px){
    .first-heading{
        font-size: 20px;
    }
    .opennav{
        font-size: 25px;
        margin: 5px 15px 5px 5px;
    }
    .wrapper{
         top: 270px;
     }
    .wrapper button.login{
        height: 40px;
        padding: 10px;
        font-size: 18px;
    }
    .wrapper .btncontainer button.getstarted{
        width: 70%;
    }
    .landing-page{
         height: 330px;
    }

    .page-content .wordCarousel span{
        font-size: 17px;
    }
    .tournament-section .second-parent .box .right-tournament .more-details p,
    .tournament-section .second-parent .box .right-tournament p.championpara,
    .Our-Team-Members .grid-content .para2{
        font-size: 16px;
    }
    .read-more,
     footer span,
    .about-section .right-about-section .right-content p{
        font-size: 14px;
    }
    .about-section .right-about-section h1{
        font-size: 20px;
    }
    .faq-section p.p2,
    .faq-section .faq-main-section .faq-left-section p.p1,
    .faq-section .faq-main-section .faq-left-section button.accordion,
    .wrapper .modal .imgcontainer h2,
    .wrapper .modal form.animate .container .mybuttons label,
    .wrapper .modal form.animate .container .mybuttons a,
    .background .container2 .screen .screen-body .screen-body-item .app-form  .buttons .app-form-button,
    .background .container2 .screen .screen-body .screen-body-item .app-form .app-form-group input,
    .background .container2 .screen .screen-body .screen-body-item .app-contact span{
        font-size: 15px;
    }
    label.logo,
    .wrapper .modal .animate .imgcontainer h2,
     nav .sidenav a,
    .background .container2 .screen .screen-body .screen-body-item .app-title span,  
    .wrapper .btncontainer button.getstarted,
    .about-section .right-about-section .right-content h6,
    .tournament-section h2#tournament{
       font-size: 17px;
    } 
    .wrapper .modal .animate .imgcontainer span.close{
         right:15px;
    }
}
@media(max-width:229px){
    .page-content{
        display: none;
    }
    
}