*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
  body{
    font-family: montserrat;
    background-color:#F6F6F6;
  }
  /*Nav Bar*/
  nav{
    background: #0082e6;
    height: 80px;
    width: 100%;
  }
  label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }
  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }
  a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  /*Media*/
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }
  div panel-defefault{
      width:50%;
  }
  /*Section Images*/
  section{
    background: url(https://i.ibb.co/D8h9crn/may-phlave.jpg) no-repeat;
    background-size: cover;
    height: calc(100vh - 90Px);
  }
  
  section.sec2{
      background: url(https://i.ibb.co/xMX0SqY/image.jpg) no-repeat;
    background-size: cover;
    height: calc(80vh - 20px);
  }
  /* FOOTER */
  .footer {
      width: 100%;
      background: #0082e6;
      display: block;
   }
  
   .inner-footer {
       width: 95%;
       margin: auto;
       padding: 30px 10px;
       display: flex;
       flex-wrap: wrap;
       box-sizing: border-box;
       justify-content: center;
   }
  
  .footer-items {
      width: 25%;
      padding: 10px 20px;
      box-sizing: border-box;
      color: #fff;
  }
  
  .footer-items p {
      font-size: 16px;
      text-align: justify;
      line-height: 25px;
      color: #fff;
  }
  
  .footer-items h1 {
      color: #fff;
  }
  
  .border1 {
      height: 3px;
      width: 40px;
      background: #ff9800;
      color: #ff9800;
      background-color: #ff9800;
      border: 0px;
  }
  
  ul {
      list-style: none;
      color: #fff;
      font-size: 15px;
      letter-spacing: 0.5px;	
   }
  
  ul a {
      text-decoration: none;
      outline: none;
      color: #fff;
      transition: 0.3s;
  }
  
  ul a:hover {
      color: #ff9800;
  }
  
  ul li {
      margin: 10px 0;
      height: 25px;
  }
  
  li i {
      margin-right: 20px;
  }
  
  
  .footer-bottom {
      padding: 10px;
      background: #00121b;
      color: #fff;
      font-size: 12px;
      text-align: center;
  }
  
  .social-media img{  
      height:30px;
      width:30px;
  }
  
  /* for tablet mode view */
  
  @media screen and (max-width: 1275px) {
      .footer-items {
          width: 50%;
      }
  }
  
  /* for mobile screen view */
  
  @media screen and (max-width: 660px) {
      .footer-items {
          width: 100%;
          height:auto;
      }
  }
  
  .top-image{
      width:100px;
      height:100px;
      float:right;
  }
  