*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Play', sans-serif;
    
}
body{
    overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}



nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 100%;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin-right: 30px;
    padding-top: 20px;

}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: darkcyan;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav .fa-solid {
    display: none;
}

/* ----------about---------- */

#about {
    padding: 80px 0;
    color: #ababab;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
     border-radius: 100%; 
    border: 5px solid darkcyan;
    border-bottom: 0;
   
}

.about-col-2 {
    flex-basis: 60%;
}

.about-col-2 p {
    margin-top: 20px;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: rgb(17, 193, 193);
}


/* ----events---- */

#portfolio {
    padding: 50px 0;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
   
}

.work {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(155, 152, 152, 0.9);
   
}

.work img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    display: block;
   
    transition: transform 0.5s;
}

.layer {
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), darkcyan);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    color: darkcyan;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;
    color: whitesmoke;
}

.butn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid darkcyan;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}

.butn:hover {
    background: darkcyan;
}

/* facilities */

.fac img{
    max-width: 100%;
    height: auto;
}

/* games */
.card img{
    max-width: 100%;
    height: 300px;
}

.sub-event{
    color: rgb(17, 193, 193);
    text-align: center;
    font-weight: 600;
    font-size: 60px;
    padding-top: 70px;
    padding-bottom: 50px;
}

/* testimonial */

.topic h1{
    text-align: center;
    font-weight: 600;
    color: rgb(17, 193, 193);
    font-size: 60px;
    margin-top: 120px;
    margin-bottom: 70px;
}

.tests{
    font-family: 'Arial', sans-serif;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: black;
}

.testimonial-slider {
    width: 500px;
    overflow: hidden;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgb(17, 193, 193);
    margin-bottom: 20px;
}

.testimonial p {
    margin-top: 15px;
    color: whitesmoke;
}

.author {
    font-style: italic;
   
}



/* footer */
.foter{
    display: grid;
    justify-content: end;
    align-content: end;
    /* min-height:; */
    background: #333;
    
}

footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #242424;
}
footer .container-fluid{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}
footer .container-fluid .sec h2{
    position: relative;
    color: rgb(17, 193, 193);
    font-weight: 600;
    margin-bottom: 15px;
}
footer .container-fluid .sec p{
    color: whitesmoke;
}
footer .container-fluid .sci{
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(4,50px);
}
footer .container-fluid .sci li{
    list-style: none;
}
footer .container-fluid .sci li a{
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgb(17, 193, 193);
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100%;
}
footer .container-fluid .sci li a i{
    color: #fff;
    font-size: 20px;
}
footer .container-fluid .quicklinks{
    position: relative;
}
footer .container-fluid .quicklinks ul li{
 list-style: none;
}
footer .container-fluid .quicklinks ul li a{
    color: whitesmoke;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
footer .container-fluid .contact .info{
     position: relative;
}
footer .container-fluid .contact .info li{
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
}
footer .container-fluid .contact .info li span{
    color: rgb(17, 193, 193);
    font-size: 20px;
}
footer .container-fluid .contact .info li a{
   color: whitesmoke;
   text-decoration: none;
} 
.copyrightText{
    width: 100%;
    background: #242424;
    
    text-align: center;
    color: whitesmoke;
}
.copyrightText span a{
    color: rgb(17, 193, 193);
    text-decoration: none;
}

@media (max-width: 991px){
    footer{
        padding: 40px;
    }
    footer .container-fluid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .copyrightText{
        padding: 20px 40px 30px;
    }
}
@media (max-width:768px){

    footer .container-fluid{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
    .copyrightText{
        padding: 10px;
    }
    #about{
        margin-top: -40px;
    }
    .sub-title {
        font-size: 38px;
        text-align: center;
    }
    .sub-event{
       
        text-align: center;
        font-size: 35px;
       margin-bottom: -50px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
        margin-top: -40px;
    }

    .about-col-2 {
        font-size: 14px;
    }
    .work img{
        height: 400px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: darkcyan;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fa-solid {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    #portfolio{
        margin-top: -50px;
    }
    .card img{
        width: auto;
        height: auto;
    }
    .topic h1{
        font-size: 40px;
        margin-top: 80px;
    }
   
}


  /*<footer end>  */

