*{
    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(bannerimg2.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;
}

/* about us website page */

.mid-div{
    width: 100%;
}
.midrap-div{
    width: 80%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}
.midrap-container{
    width: 90%;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 50px;
}
.img-div{
    width: 100%;
    height: 100%;
}
.description-div{
    margin-top: 100px;
} 
.description-div p{
    font-size: 15px;
    color: tomato;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.description-div h1{
    font-size: 30px;
    color: black;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.description-div span{
    font-size: 30px;
    color: tomato;
    text-transform: uppercase;
}
#color-1{
    color: black;
    opacity: 0.8;
    font-size: 15px;
    text-align: justify;
    margin-bottom: 40px;
}
.parent-div{
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 30px;
}

.description-div ul li{
    list-style: none;
}

#circle{
    color: tomato;
    margin-right: 10px;
}
#btn-1{
    background-color: tomato;
    color: aliceblue;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    margin-top: 50px;
    padding: 10px;
    transition: 0.6s;
}
#btn-1:hover{
    background-color: black;
    cursor: pointer;
}

/* professional instructors */

.instructors-div h1{
    text-transform: uppercase;
    font-size: 30px;
    color: black;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 20px;
}

#bg-color1{
    color: tomato;
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.instructors-div p{
    color: black;
    opacity: 0.8;
    font-size: 15px;
    text-align: center;
    margin-bottom: 60px;
}

.midrap-div2{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 30px;
    margin-bottom: 60px;
    padding-left: 50px;
}

* {box-sizing: border-box;}
.box{
    width: 100%;
    margin: auto;
}
.container {
  position: relative;
  width: 80%;
  max-width: 300px;
  overflow: hidden;
}

.image {
  width: 100%;
  height: 50vh;
  transition: 0.8s;
}

.overlay {
  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;
  padding: 20px;
  text-align: center;
}
.overlay h1{
    font-size: 20px;
    text-transform: capitalize;
    color: aliceblue;
}
.overlay p{
    font-size: 15px;
    text-transform: capitalize;
    color: aliceblue;
}
.container:hover .overlay {
  opacity: 1;
}
.image:hover{
    transform: scale(1.1);
}
  /* wesite banner */
  .ban-div{
    width: 90%;
    height: 60vh;
    margin: auto;
    background-image: url(banner.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.banrap-div{
    width: 100%;
    height: 60vh;
    background-color: rgba(0,0,0,0.4);
    background-size: cover;
}
.banrap2{
    float: right;
    margin-right: 45%;
    margin-top: 10%;
}
.name-div2 span{
    color: tomato;
    text-transform: uppercase;
    font-size: 45px;
}
.name-div2 h1{
    font-size: 45px;
    text-transform: uppercase;
    color: aliceblue;
}
.name-div2 p{
    color: aliceblue;
    opacity: 0.9;
    text-transform: capitalize;
    font-size: 20px;
}
#btn5{
    background-color: tomato;
    color: aliceblue;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    margin-top: 30px;
    padding: 10px;
}
#btn5:hover{
    color: black;
    cursor: pointer;
}

 /* 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;
}
