<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Viga', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    /* background: black; */
    background: url("images/dirtydirt.png") no-repeat center top fixed;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
 /* contact information style */
form{
    background: rgba(23, 23, 23, 0.79);
      /*background-image: url("images/jump.jpg");
      background-size: cover; */
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    top: 20%;
    max-width: 600px;
    border-radius: 10px;
    position: absolute;
}
form h3{
    color: #008000;
    font-weight: 800;
    margin-bottom: 20px;
    margin-left: 190px;
    font-size: 20px
}
form input, form textarea{
    border: 0;
    margin: 4px 0;
    padding: 20px;
    outline: none;
    background: white;
    font-size: 16px;
    border-radius: 10px;
}
form button{
    padding: 15px;
    background: #008000;
    color: rgb(33, 33, 33);
    font-size: 18px;
    font-weight: 800;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150;
    margin: 20px auto 0px;
    border-radius: 30px;
    
}
   /* tabbar */
   .home{
    color: white; 
    transition: transform 250ms;
    position: absolute;
    font-size: 1.6vw; 
    top: 20%;
    left: 18%;
    font-family: Viga;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .trainers{
    color: white; 
    font-size: 1.6vw; 
    top: 250px; 
    font-family: Viga; 
    position: absolute;
    top: 20%;
    left: 28%;
    transition: transform 250ms;
    z-index: 9;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .facility{
    color: white; 
    font-size: 1.6vw; 
    top: 20%;
    left: 40%;
    position: absolute; 
    font-family: Viga;
    transition: transform 250ms;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .trainings{
    color: white; 
    font-size: 1.6vw; 
    top: 20%;
    left: 52%; 
    position: absolute;
    font-family: Viga;
    transition: transform 250ms;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .gallery{
    color: white; 
    font-size: 1.6vw; 
    position: absolute;
    top: 20%; 
    left: 65%;
    font-family: Viga;
    transition: transform 250ms;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .contactus{
    color: white; 
    transition: transform 250ms;
    position: absolute;
    font-size: 1.6vw; 
    top: 20%; 
    left: 77%;
    font-family: Viga;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
  }
  .tabcontainer{
    background-color: rgba(23, 23, 23, 0);
    padding: 0px;
    height: 22%;
    width: 99%;
    border-radius: 5px;
    padding-top: 10px;
    transition: transform 250ms;
    position: absolute;
    top: 0px;
  }
  .headermainlogo{
    position: relative;
  max-width: 10vw;
  max-height:10vh;
  top: 0vh;
    }
  .navarrow{
      position: absolute;
      width: 2%;
      height:10%;
      top: 80%;
      left: 85%;
    }
    .vl{
      border-left: 3px solid white;
      height: 82px;
      left: 12%;
      top: 2%;
      position: absolute;
    }
  a:link {
    color: white;
  }
  a:visited {
    color: white;
  }
  a:link {
    text-decoration: none;
  }
  /* tab bar animation */
  /* .tabcontainer:hover{transform: translateY(+10px);} */
  .trainers:hover{transform: scale(1.1); background-color: rgb(45, 45, 45);}
  .gallery:hover{transform: scale(1.1); background-color: rgb(45, 45, 45);}
  .trainings:hover{transform: scale(1.1); background-color: rgb(45, 45, 45);}
  .facility:hover{transform: scale(1.1); background-color: rgb(45, 45, 45);}
  .contactus:hover{transform: scale(1.1); background-color: rgb(45, 45, 45);}
  .home:hover{transform: scale(1.1)}
    /* tabbar end */
    .footer{
      background-color: rgba(23, 23, 23, 0);
      position:fixed;
      bottom:0;
      left:0;
      width:100%;
      height: 40px;
      }
      .fa {
        padding: 24px;
        font-size: 30px;
        width: 70px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
      }
      .fa-facebook {
        background: #3B5998;
        color: white;
        left: 30px;
        position: relative;
        border-radius: 60px;
        bottom: 24px;
        display: inline-block;
      }
      .fa-instagram{
      background: #915723;
      color: white;
      left: 110px;
      bottom: 88px;
      position: relative;
      border-radius: 60px;
      display: inline-block;
      }
      .instawrap{
        transition: transform 250ms ease-out;
      }
      .facebookwrap{
        transition: transform 250ms ease-out;
      }
      .facebookwrap:hover{transform: translateY(-6px);}
      .instawrap:hover{transform: scale(1.1); transform: translateY(-6px);}</pre></body></html>