*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }


   
  /* responsive navbar css */
  @media screen and (max-width: 800px) {
    nav .menubtn{
      display: flex;
    }
    nav .navLinks{
      display: none;
    }
    .sideNav {
      display: block !important;
    }
  }
   
  .sideNav{
    height: 100%;
    position: fixed;
    top: 0;
    right: 0%;
    background-color: rgb(44, 1, 197);
    overflow-x: hidden;
    transition: 0.3s ease-in;
    padding-top: 60px;
    display: none;
  }
   
  .sideNav a{
    padding: 8px 8px 8px 40px;
    display: block;
    font-size: 25px;
    font-weight: 500;
    color: #d1d1d1;
    transition: 0.3s;
    text-decoration: none;
  }
  .sideNav a button {
    padding: 10px 20px;
    border-radius: 10px;
    color: blue;
    font-size: 16px;
    border-style: none;
    font-weight: 700;
  }
  .sideNav a:hover{
    color: white;
  }
  .sideNav .closeBtn{
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 20px;
    margin-left: 50px;
  }
   
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 5%;
    margin-top: -20px;
}
  .row .column1 {
    padding-right: 50px;
    
  }
  .column1 h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }
  .column1 p {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .column1 button {
    width: 200px;
    padding: 12px 20px;
    border-radius: 20px;
    border-style: none;
    color: blue;
    font-size: 17px;
    font-weight: 600;
    height: 80px;
    float: right;
    margin-right: 60px;
}
  /* Header content responsive */

  @media screen and (min-width: 980px){

    .row .column1 {
        padding-right: 50px;
        
      }
      .column1 h1 {
        font-size: 60px;
        margin-bottom: 10px;
        width: 700px;
      }
      .column1 h2 {
        font-size: 30px;
        margin-bottom: 10px;
        width: 700px;
      }
  }
    
  
  @media screen and (max-width: 980px) {
    .column2 img {
      width: 350px;
    }
    .column1 h1 {
      font-size: 40px;
    }
    .column1 p{
      font-size: 17px;
    }
    .row {
      margin-top: 80px;
    }
  }
   
  @media screen and (max-width: 1000px) {
   
    .column1 h1 {
      font-size: 35px;
    }
    .row {
      flex-direction: column;
   
    }
    .row .column1 {
      padding: 30px;
    }
    
  }

  @media screen and (max-width: 900px) and (min-width: 600px) {
   
    .column1 h1 {
      font-size: 40px;
    }
    .row {
      flex-direction: column;
   
    }
    .row .column1 {
      padding: 30px;
    }
    
  }