*{
    padding: 0px;
    margin: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
}
/* gym website header */

.gym{
    width: 100%;
    height: 5vh;
    background-color: tomato;
}
.gymrap{
    width: 80%;
    margin: auto;
    /* background-color: aqua; */
}
.name{
    position: absolute;
    margin-top: 30px;
}
.name span{
    color: gold;
    font-size: 20px;
    text-transform: uppercase;
}
.name h1{
    color: black;
    text-transform: uppercase;
    font-size: 20px;
}
.app{
    float: right;
    margin-top: 5px;
}
.app ul li{
    display: inline;
    padding-left: 30px;
}

#youtube{
    font-size: 25px;
    color: black;
}
#youtube:hover{
    color: aliceblue;
}
#facebook{
    font-size: 25px;
    color: black;
}
#facebook:hover{
    color: aliceblue;
}
#instagram{
    font-size: 25px;
    color: black;
}
#instagram:hover{
    color: aliceblue;
}
#tweeter{
    font-size: 25px;
    color: black;
}
#tweeter:hover{
    color: aliceblue;
}
/* website navigation-bar */
#nav{
    width: 100%;
    height: 6vh;
    background-color: tomato;
}
.navrap{
    width: 80%;
    height: 6vh;
    margin: auto;
    /* background-color: aqua; */
}
.logo{
    position: absolute;
}
.logo img{
    height: 10vh;
    position: absolute;
    border-radius: 50%;
    margin-top: -30px;
    margin-left: 30px;
}
.menu{
    float: right;
    margin-top: 10px;
}
.menu ul li{
    display: inline;
}
.menu ul li a{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    color: black;
    padding-left: 20px;
}
.menu li a:hover{
    color: aliceblue;
}
/* wesite banner */
.ban{
    width: 100%;
    height: 80vh;
    background-image: url(bannerimg4.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.banrap{
    width: 100%;
    height: 80vh;
    background-color: rgba(0,0,0,0.4);
    background-size: cover;
}
.name1{
    padding-top: 10%;
    padding-left: 20px;
}
.name1 span{
    color: aliceblue;
    text-transform: uppercase;
    font-size: 45px;
}
.name1 h1{
    font-size: 45px;
    text-transform: uppercase;
    color: tomato;
}
.name1 p{
    color: aliceblue;
    opacity: 0.9;
    text-transform: capitalize;
    font-size: 15px;
}
#btn1{
    background-color: tomato;
    color: aliceblue;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    margin-top: 30px;
    padding: 10px;
}
#btn1:hover{
    color: black;
    cursor: pointer;
}


.parentdiv-1{
    width: 100%;
}
.parentdivrap-1{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto ;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin-top: 60px;
    margin-bottom: 40px;
    /* background-color: blueviolet; */  
}
.container-div-1{
    margin: auto;
    position: relative;
    /* background-color: aqua; */
    overflow: hidden;
    width: 550px;
  }
  /* Make the image to responsive */
  .image {
        width: 550px;
        height: 60vh;
  }
  .container-div-1 img{
    transition: 0.8s;
  }
  .container-div-1 img:hover{
    transform: scale(1.1);
  }
  /* The overlay effect - lays on top of the container and over the image */
  .overlay1 {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    padding: 20px;
    text-align: center;
  }
  .overlay1 h1{
    font-size: 20px;
    transition: 0.8s;
  }
  .overlay1 h1:hover{
    border-bottom: 2px solid tomato;
  }
  /* When you mouse over the container, fade in the overlay title */
  .container-div-1:hover .overlay1 {
    opacity: 1;
  }

    /* timings */

    .time-div{
        width: 100%;
      }
      .time-div1{
        width: 80%;
        margin: auto;
        margin-top: 50px;
      }
      .title-div h1{
        font-size: 30px;
        color: aliceblue;
        background-color: tomato;
        text-transform: uppercase;
        padding: 20px;
      }
    
      .timings-div{
        background-color: #eee;
      }
      .timings-div ul li{
        list-style: none;
        padding: 20px;
        border-bottom: 2px solid #e8e8e8;
      }
      .timings-div ul li a{
        text-decoration: none;
        color: tomato;
      }
      .timings-div ul li a:hover{
        color: black;
      }

/* footer */

.footer-div{
    width: 100%;
    height: 70vh;
    background-image: url(footerbanimg.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 50px;
}
.footer-rap{
    width: 100%;
    height: 70vh;
    margin: auto;
    background-color: rgba(0,0,0,0.8);
    background-size: cover;
}
.footer-containers-div{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* applied for all headings */

.boxdiv h1{
    font-size: 20px;
    font-family: sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: aliceblue;
}
.boxdiv p{
    font-size: 15px;
    text-align: justify;
    color: aliceblue;
}

.boxdiv a{
    text-decoration: none;
}
.boxdiv p{
    color: aliceblue;
    text-decoration: none;
    padding-bottom: 20px;
    transition: 0.6s;
}

.link a{
    color: white;
    transition: 0.6s;
}
.link a:hover{
    color: tomato;
}

.boxdiv-1{
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}
.boxdiv-column1{
    margin-bottom: 20px;
}
.boxdiv-column1 h2{
    font-size: 15px;
    color: tomato;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.boxdiv-column1 p{
    color: aliceblue;
}

/* hover effect */
.boxdiv-column1 a{
    color: white;
    transition: 0.6s;
}
.boxdiv-column1 a:hover{
    color: tomato;
}

.socialicons{
    justify-content: center;
    display: flex;
}
.app{
    font-size: 10px;
}
.socialicons a{
    text-decoration: none;
    padding: 10px;
    background-color: aliceblue;
    margin: 20px;
    border-radius: 50%;
    transition: 0.6s;
}
.socialicons a:hover{
    background-color: tomato;
    color: aliceblue;
}
#youtube{
    color: black;
}
#facebook{
    color: black;
}
#instagram{
    color: black;
}
#twitter{
    color: black;
}
.boxdiv h3{
    color: tomato;
    font-size: 15px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

/* footer bottom */

.footerbottom{
    color: aliceblue;
    text-align: center;
    opacity: 0.8;
}
.designer{
    opacity: 0.8;
    text-transform: uppercase;
    margin: 15px;
}