﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    background: rgb(7,42,49,1);
}

.container{
    width: 80%;
    margin: 0 auto;
    
}

.scrollTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #072a31 url(../image/up-chevron.png);
    border-radius: 50%;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.scrollTop.active{
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

.callButton img{
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10000;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}

.emailButton img{
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10000;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}


section{
    padding: 6rem 0;
}


/* Scroll Bar */ 

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: #00b3ff;
    border-radius: 10px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 7px 80px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    transition: 0.5s;
    z-index: 1000;
}

header.sticky {
    background: rgb(7,42,49,1);
    
    box-shadow: 0 5px 20px rgb(2, 10, 12);


}





header .logo1 .logoResmi{
    position:relative;
    width: 54px;
    height: 54px;
    display: inline;
    margin-left: 5rem;
}


header .nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem ;
    margin-left: 5rem;
}

header ul li{
    list-style: none;
    margin: 10px;
}

header ul li a{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

header ul li a:hover{
    background: #fff;
    color: #00b3ff;
    box-shadow: 0 0 10px #dbd9d9;
    transition: all .3s ease-in-out;
}

header #search{
    position: relative;
    width: 40px;
    height: 40px;
    background: #072a31;
    border-radius: 60px;
    transition: 0.5s;
    overflow: hidden;
}

header #search.active{
    width: 300px;
}

header #search #icon{

    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #072a31;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

header #search #icon.sticky-search{

    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
  
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

header #search #icon::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 3px solid #00b3ff;
    border-radius: 50%;
    transform: translate(-2px, -2px);
}

header #search #icon::after{
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    background:  #00b3ff;
    transform: translate(6px, 6px) rotate(315deg);
}




header #search #input{
    position: relative;
    width: 300px;
    height: 40px;
    left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}



header #search #input input{
    position: absolute;
    background: #072a31;
    top: 0;
    color: #fff;
    width: 100%;
    font-weight: 300;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 0;
}



.clear{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    right: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear::before{
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: #00b3ff;
    transform: rotate(45deg);
}

.clear::after{
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: #00b3ff;
    transform: rotate(315deg);
}



/* Home Banner */ 

.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0,179,255);
    background: linear-gradient(180deg, rgba(0,179,255,1) 0%, rgba(7,42,49,1) 100%);
}

.banner .bg{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .bg .content{
    width: 50%;
    height: 100%;
}

.banner .bg .content h2{
    position: relative;
    font-size: 4em;
    letter-spacing: 3px;
    color: #072a31;
    width: 100%;
    text-transform: uppercase;
    line-height: 0.80em;
    margin: .2em 0 .4em 0;
    outline: none;
    animation: animates 5s ease-in-out infinite;
}

@keyframes animates 
{
    0%
    {
        color:#fff;
        text-shadow :none;
    }
    50%{
        color:#00b3ff;
        text-shadow :none;
    }
    100%
    {
        color: #fff;
        text-shadow: 0 0 10px rebeccapurple,
        0 0 20px rebeccapurple,
        0 0 40px rebeccapurple,
        0 0 80px rebeccapurple,
        0 0 160px rebeccapurple,
    }
}


.banner .bg .content h2 .avenpiHeader{
    font-size: 1em;
    color: #fff !important;
    
}

.banner .bg .content p{
    font-size: 1em;
    color: #fff;
    letter-spacing: 1px;
}

/* Liquid Button Start */

.banner .bg .content a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.banner .bg .content a:hover{
    background: #00b3ff;
    transition: all .3s ease-in-out;
    color: #072a31;
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #00b3ff;
}  

.banner .bg img {
    width: 35em;
}

/* About */ 

.about{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about .contentBx{
    width: 50%;
    margin: 0px;
}

.about .contentBx h2{
    font-size: 3em;
    font-weight: 700;
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
}

.about .contentBx p{
    max-width: 600px;
    text-align: justify;
    color: #dbd9d9;
}

.about .aboutImg{
    width: 50%;
}

.about .contentBx a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.about .contentBx a:hover{
    background: #00b3ff;
    transition: all .3s ease-in-out;
    color: #072a31;
    display: inline-block;
    
    
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #00b3ff;
}

/* Games */ 

/* .games{
    padding: 50px 10px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.games h2{
    font-size: 72px;
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

.games .allGamesFırstP{
    color: #fff;
    margin-bottom: 30px;
    font-size: 1em;
    text-align: center;
}

/* .container1{
    width: auto;
} */

/* .games ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.games ul li{
    list-style: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    color: #fff;
}

.games ul li.active{
    background: #00b3ff;
    color: #072a31;
    box-shadow: 0 0 10px #00b3ff;
}

.games .cardBx{
    width: 100%;
    min-height: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
}

.games .cardBx .card{
    position: relative;
    width: 280px;
    border-radius: 10px;
    margin: 20px 40px;
    background: #093d47;
    overflow: hidden;
    transition: all .3s ease-in-out;
}




.games .cardBx .card:hover{
    width: 280px;
    border-radius: 10px;
    margin: 20px 40px;
    background: #093d47;
    overflow: hidden;
    box-shadow: 1px 1px 10px #00b3ff;
    transform: scale(1.1);
    
}

.games .cardBx .card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.games .cardBx .card .content{
    padding: 10px;
    flex-direction: column;
}

.games .cardBx .card .content h4{
    color: #fff;
    margin: 15px 0;
}



.games .cardBx .card .progress-line{
    position: relative;
    height: 10px;
    width: 100%;
    background: #072a31;
    margin-bottom: 15px;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}

.games .cardBx .card .progress-line span{
    position: absolute;
    height: 100%;
    width: 80%;
    border-radius: 10px;
    background: #00b3ff;
    box-shadow: 0 0 10px #00b3ff;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}

@keyframes animate{
    100%{
    transform: scaleX(1);

    }
}

.games .cardBx .card .info{
    border-top: 2px solid #527f93;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.games .cardBx .card .info p{
    font-size: 1em;
    color: #fff;
}

.games .cardBx .card .info p span{
    color: #00b3ff;
}

.games .cardBx .card .info a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.games .cardBx .card .info a:hover{
    background: #00b3ff;
    border: none;
    color: #072a31;
    box-shadow: 0 0 10px #00b3ff;
    border: 1px solid #00b3ff;
}

.games .cardBx .card.hide{
    display: none;
} */ 

/* Games Slider Start */

.games{
    padding: 10px 10px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.games h2.allGames{
    font-size: 72px;
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

.games ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.games ul li{
    list-style: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    color: #fff;
}

.games ul li.active{
    background: #00b3ff;
    color: #072a31;
    box-shadow: 0 0 10px #00b3ff;
}

.games .allGamesFırstP{
    color: #fff;
    margin-bottom: 30px;
    font-size: 1em;
    text-align: center;
}


.slide-container{
    max-width:80%;

    padding: 40px 0;
    margin-bottom: 10rem;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
    height: 100%;
    
  }
  .card{
    border-radius: 25px;
    background-color: #093d47;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    
  }
  .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }
  .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 150%;
    width: 100%;
    border-radius: 25px 25px 0 25px;
  }

  .overlay.img1{
    background-image: url(../image/1.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay.img2{
    background-image: url(../image/2.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay.img3{
    background-image: url(../image/3.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay.img4{
    background-image: url(../image/4.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay.img5{
    background-image: url(../image/5.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay.img6{
    background-image: url(../image/6.jpg);
    background-size: cover;
    filter: blur(1px);
    -webkit-filter: blur(2px);
  }

  .overlay::before,
  .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: transparent;
  }
  .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #093d47;
  }
  .card-image{
    position: relative;
    height: 150px;
    width: 150px;
    top: 2.5rem;
    border-radius: 10%;
    background: -webkit-linear-gradient(#00b3ff, #072a31);
    -webkit-background-clip:unset;
    -webkit-text-fill-color: transparent;
    padding: 3px;
    box-shadow: 0 0 10px #072a31;
  }
  .card-image .card-img{
    height: 100%;
    width: 100%;
    
    object-fit: cover;
    border-radius: 10%;
    border: none;
  }
  .name{
    margin-top: 7rem;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1000;
  }
  .description{
    
    font-size: 14px;
    color: #707070;
    text-align: center;
  }
  .button{
    padding: 8px 16px;
    background: transparent;
    margin: 14px;
    border: 1px solid #00b3ff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .button:hover{
    background: #00b3ff;
    border: none;
    color: #072a31;
    box-shadow: 0 0 10px #00b3ff;
    border: 1px solid #00b3ff;
    cursor: pointer;
  }
  
  .swiper-navBtn{
    margin-top: 150px;
    color: #6E93f7;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #4070F4;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
 
  .swiper-pagination{
    top: -1rem;
  }
  
  .swiper-pagination-bullet{
    background-color: #fff;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #fff;
  }
  

  


/* Games Slider End */


/* Teams */ 

.team{
    padding: 10px 10px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    /* background-color: #0f3c8b;
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5); */
}

.team h2{
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-size: 5em;
    text-align: center;
}

.team .ourTeamFırstP{
    color: #fff;
    margin-bottom: 50px;
    font-size: 1em;
    text-align: center;
}

.team-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 2rem;
    
}

/* .team .img{
    width: 100%;
    display: block;
    object-fit: cover;
} */
 
.team-member{
    background: #093d47;
    padding: 2rem;
    border: 1px solid transparent;
    border-radius: 10px  ;
    position: relative;
    overflow: hidden;
}

.team-member h4{
    color: #00b3ff;
}

.team-member:hover{
    background: transparent;
    border-color : #00b3ff;
    transition: all .3s ease ;
    transform: scale(1.1);
}

.team-member-image img{
    filter: saturate(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.team-member:hover img{
    filter: saturate(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info * {
    text-align: center;
    margin-top: .5rem;
}

.team-member-info p{
    color: #fff;
}

.team-member-socials{
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #00b3ff;
    border-radius: 1rem 0 0 1rem;
    box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
} 

.team-member:hover .team-member-socials{
    right: 0;
    transition: all .3s ease;
}

.team-member-socials a {
    padding: .7rem;
    color: #fff;
}

.team-member-socials a:hover {
    padding: .7rem;
    background: #0390cc;
    color: #093d47;
    border-radius: 1rem 0 0 1rem;
}

/* Contact */

.contact{
    padding: 50px 100px;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .maps{
    border-radius: 10px;
    margin: 20px 40px;
    background: #093d47;
    overflow: hidden;
    box-shadow: 1px 1px 10px #00b3ff;
    height: 350px;
}

.contact .form{
    width: 50%;
    margin: 30px;
}

.contact .form h1{
    background: -webkit-linear-gradient(#00b3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact .form .inputBx{
    margin: 10px 0;
}

.contact .form .inputBx p{
    color: #fff;
    padding: 10px 0;
}

.contact .form .inputBx input,
.contact .form .inputBx textarea{
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
    color: #fff;
    background: #093d47;
    min-height: 15px;
    font-size: 1.1em;
    border-radius: 10px;
}

.contact .form .inputBx textarea{
     height: 150px;
}

.contact .form .inputBx input[type="submit"]{
    display: inline-block;
    padding: 10px 20px;
    margin: 15px 0;
    outline: none;
    background: transparent;
    border: 1px solid #00b3ff;
    text-decoration: none;
    font-weight: 700;
    width: 150px;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
    transition: all .2s ease;
}

.contact .form .inputBx input[type="submit"]:hover{
    background: #00b3ff;
    border: 1px solid transparent;
    color: #072a31;
    box-shadow: 0 0 10px #00b3ff;
    cursor: pointer;
}

/* Footer */

footer{
    padding: 3px 100px;
}

footer .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .info .logo{
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    font-weight: 700;
}

footer .info p{
    color: #dbd9d9;
}

footer .info ul{
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

footer .info ul li{
    list-style: none;
    height: 40px;
    width: 40px;
    margin: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #00b3ff;
    text-align: center;
}

footer .info ul li:hover{
    background: #00b3ff;
    color: #00b3ff;
    border: none;
    box-shadow: 0 0 10px #00b3ff;
} 

footer .info ul li a i{

    font-size: 1em;
    color: #dbd9d9;

}

footer .info ul li i:hover{

    color: #072a31;

}

.copyright{
    color: #00b3ff;
    text-decoration: none;
}

.copyright:hover{
    color: #6bd2ff;
}

.turkey{
    position: relative;
    height: 1em;
    width: 1em;
    top: 3px;
}

.bxs-copyright{
    position: relative;
    top: 1px;
}

.animeX{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 2s ease;
}

.animeX.active{
    transform: translateY(0px);
    opacity: 1;
}

/* Responsive Design */

@media (max-width:991px){
    header {
        padding:  15px 40px;
    }
    

    header .nav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #072a31;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1000;
        
    }

    header .nav.active{
        display: flex;
    }

    #search{
        z-index: 0;
        overflow: hidden;
    }

    header .nav li{
        margin: 20px 0;
    }

    header .nav li a{
        font-size: 24px;
        margin: 10px 0;
    } 

    header .nav li a::before{
        overflow: hidden;
        opacity: 0;
    }

    .banner .bg img{
        position: absolute;
        opacity: .3;
        width: auto;
     }

     .banner .bg .content h2{
        font-size: 2.5rem;
     }


    .scrollTop {
        width: 40px;
        height: 40px;
        right: 20px;
        background-position: center;
        background-repeat: no-repeat;
    }


    .about .aboutImg{
        width: 100%;
    }
    

    .callButton img{
        position: fixed;
        bottom: 40px;
        left: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-size: 40px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 10000;
        transition: 0.5s;
        visibility:visible;
        opacity: 1;
    }

    .emailButton img{
        position: fixed;
        bottom: 90px;
        left: 20px;
        width: 40px;
        height: 40px;
        border-radius: 10%;
        background-size: 40px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 10000;
        transition: 0.5s;
        visibility:visible;
        opacity: 1;
    }
    

    .toggleMenu{
        position: relative;
        width: 30px;
        height: 30px;
        background: url(../image/menu.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 1001;
    }

    .toggleMenu.active{
        background: url(../image/close.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
       
    }

     .banner .bg img{
        position: absolute;
        opacity: .3;
     }

     .banner .bg .content{
        width: 100%;
        height: 100%;
        background: rgb(27 33 65 / 50%);
        padding: 20px;
        z-index: 1;
        border-radius: 10px;
     }

     .about{
        flex-direction: column;
   
     }

     .about .contentBx{
        width: 100%;
     }



     .games h2{
        text-align: center;
        justify-content: center;
     }
     .team-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
     }

     .team-member{
        padding: 1rem;
     }

     .contact{
        flex-direction: column;
     }

     .contact .maps{
            border-radius: 10px;
            margin: 20px 40px;
            background: #093d47;
            overflow: hidden;
            box-shadow: 1px 1px 10px #00b3ff;
            height: 350px;
     }

     .contact .maps{
        width: 234px;
     }

     .contact .form{
        width: 120%;
        margin: 30px;
        padding: 10px;
        align-items: center;
        text-align: center;
        justify-content: center;
     }

     .contact .form h1{
        text-align: center;
        align-items: center;
        justify-content: center;
     }

     footer .info{
        flex-direction: column;
        margin: 10px;
     }

     .slide-content{
        margin: 0 10px;
        font-size: 1rem;
     }

     .swiper-navBtn{
        display: none;
        overflow: hidden;
        opacity: 0;
     }
 

}

@media (max-width:421px){


    .banner .bg{
        font-size: 1em;
        text-align: center;
        justify-content: center;
        width: 2500px;
    }

    .banner .bg img{
        position: absolute;
        opacity: .3;
        width: auto;
     }

     .banner .bg .content h2{
        position: relative;
        font-size: 2rem;
        letter-spacing: 1px;
        color: #072a31;
        width: 100%;
        text-transform: uppercase;
        line-height: 0.80em;
        margin: .2em 0 .4em 0;
    }

    .banner .bg .content p{
        font-size: .8em;
        color: #fff;
        letter-spacing: 1px;
    }

     .about .contentBx{
        width: 100%;
        text-align: center;
     }

     .about img{
        width: 20rem;
        height: auto;
        margin-left: 50px;
        text-align: center;
        align-items: center;
        justify-content: center;
     }

     .games .cardBx .card{
        font-size: .8rem;        
     }

     .team span{
        display: inline;
     }

     .team span::before{
        content: "\a ";
        white-space: pre;
     }

     .team-container{
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        width: 280px;
        min-height: 150vh;
     }

     .team-member{
        padding: 1rem;
     }

     .contact .form .inputBx{
        align-items: center;
     }

     .contact .maps{
        width: 234px;
     }

     .contact .form .inputBx #btnContact {
        align-items: center;
        
        width: 13rem;

     }
     .about .aboutImg{
    margin-right: 50px;
        }
    
     footer .info{
        flex-direction: column;
        margin: 10px;
        text-align: center;
     }


}

@media (min-width:280px) and (max-width:375px){
   
    .banner .bg img{
        position: absolute;
        opacity: .3;
        width: 18rem;
     }

     .banner .bg .content{
        font-size: .8rem;
     }

     .about img{
        top: 20px;
        width: 15rem;
     }
    
     .team .team-container .team-member{
        width: 80%;
        left: 20px;
     }

     .banner .bg .btn{
        font-size: .8rem;
     }

    .contact .maps{
        right: 0;
    }

    .contact .form{
        width: auto;
    }

    .contact .form .inputBx #btnContact {
        align-items: center;
        width: auto
     }

     #search{
        overflow: hidden;
        opacity: 0;
        
     }

     


}