     body {
        
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
      }


 /* Video  */

    .v-container {
        position: relative;
        height: 600px;
        width: 100vw;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        
      }

    .v-container video {
        opacity: 0.8;
        z-index: -1;
        position: absolute;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
      }
    .content{
    text-align: center;
    }
    .content h1{
        font-size: 50px;
        color: #fffffffb;
        font-weight: 600;
        margin-top: 125px;
        margin-bottom: 75px;
        transition: 0.5s;
    }
    .content h1:hover{
        -webkit-text-stroke: 2px red;
        color: transparent;
    }
    .content a{
        font-size: 23px;
        color: rgb(255, 255, 255);
        text-decoration: none;
        border: 4px solid rgb(255, 249, 249);
        padding: 15px 25px;
        border-radius: 50px;
        transition: 0.3s;
        
    }
    .content h2{
      font-size: 30px;
      margin: 20px;
    }
    .content a:hover{
        background-color: navy;
        color: rgb(255, 253, 253);
    }
  .content h3{
    font-size: 25px;
    margin: 5px 120px 50px;
  }
   
     /* Gallery start */

    
    div.gallery {
      border: 1px solid grey;
      background-color: black;
    }
    
    div.gallery:hover {
      border: 5px solid red;
    }
    
    div.gallery img {
      width: 100%;
      height: auto;
    }
    
    div.desc {
      padding: 15px;
      text-align: center;
      color: white;
      font-size: 20px;
      
    }
    * {
      box-sizing: border-box;
    }
    
   
    
    .responsive {
      padding: 0 6px;
      float: left;
      width: 24.99999%;
    }
    
    @media only screen and (max-width: 700px) {
      .responsive {
        width: 49.99999%;
        margin: 6px 0;
      }
    }
    
    @media only screen and (max-width: 500px) {
      .responsive {
        width: 100%;
      }
    }
    
    .clearfix:after {
      content: "";
      display: table;
      clear: both;
    }

     /* Contact Form Start */

      input[type=text], email, tel {
      width: 100%;
      padding: 12px;
      border: 1px solid navy;
      border-radius: 4px;
      box-sizing: border-box;
      margin-top: 5px;
      margin-bottom: 16px;
      resize: vertical;
    }
    
    input[type=submit] {
      background-color: red;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    
    input[type=submit]:hover {
            background-color: navy;
    }
    
   
       

    .container {
      color: white;
      margin: auto;
      width: 80%;
      border-radius: 15px;
      background-color: navy;
      padding: 20px;
      opacity: 0.9;
    }

    .container:hover {
      background-color: red;
    }
    
  
    .center {
      text-align: center;
      margin: auto;
      width: 75%;
      padding: 20px;
    }

 