*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.header-top {
      background-image: radial-gradient( circle farthest-corner at 14.2% 24%,  rgba(239,61,78,1) 0%, rgba(239,61,78,0.81) 51.8%, rgba(239,61,78,0.63) 84.6% );
      color: #fff;
      text-align: center;
      padding: 5px;
  }
.header-top h1{
    display: flex;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin: 3px;
}
.header-top h1 a{
    text-decoration: none;
    color: #fff;
}
#header{
    width: 100%;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: white;
    padding: 10px;
}
#sidemenu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    color: black;
    width: 580px;
    height: 50px;
}
#sidemenu a {
    margin-left: 17px;
    color: black;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    font-family: Arial;
    margin-top: 10px;
}
  .logo {
          background-color: white;
          height: 60px;
          width: 160px;
          padding: 10px;
          display: inline-block;
          
      }
      .nav {
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
          background-color: white;
      }
#sidemenu a::after{
    content: '';
    width: 0;
    height: 3px;
    background: rgb(180, 14, 14);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
#sidemenu a:hover::after{
    width: 100%;
}
.nav .icon {
    display: none;
    border: none;
    cursor: pointer;
    background-color: white;
}
.footer {
      display: flex;
      justify-content: space-around;
      background-color: #333;
      color: #fff;
      padding: 20px;
      font-family: Arial;
  }

  .footer h1 {
      font-size: 17px;
      display: flex;
      justify-content: space-around;
      margin-right: 100px;

  }
  .footer div {
      margin: 5px;
      margin-left: 30px;
  }


  .footer ul {
      margin-top: 10px;
      list-style: none;
      padding: 0;
  }

  .footer  li {
      margin-bottom: 8px;
      font-size: 14px;
  }
  .col-1{
    margin-left: 28px;
  }
  .footer p{
    font-size: 14px;
  }
  .footer a {
      color: #fff;
      text-decoration: none;
  }
  .copy1{
    display: flex;
    justify-content: center;
    background-color: #333;
    color: #fff;
    margin-top: 1px;
  }
  .copy1 p{
      margin: 5px;
  }
  .accordion {
          display: flex;
          background-color: #333;
          flex-direction: column;
          width: 100%;
          display: none;
          font-family: Arial;
      }

      .accordion-button {
          margin-top: 5px;
          margin-left: 26%;
          cursor: pointer;
          background-color: #333;
          padding: 10px;
          color: #fff;
          border: none;
          text-align: left;
          outline: none;
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-family: Arial;
      }
      .f-image{
          aspect-ratio: 8 / 2;
      }
      .f-image img{
          height: 40px;
          width: 145px;
          margin-top: 30px;
          margin-left: 32%;
      }
      .accordion-item {
          display: flex;
          font-family: Arial;
          margin-left: 30%;
          background-color: #333;
          color: white;
          padding: 10px;
          margin-bottom: 5px;
          overflow: hidden;
          max-height: 0;
          transition: max-height 0.3s ease-out;
      }
      .accordion-item ul{
         background-color: #333;
         margin-top: 10px;
         font-size: 14px;
      }
      .accordion-item ul li a{
         background-color: #333;
          text-decoration: none;
          color: white;
          font-size: 14px;
      }
      .accordion-item ul li{
        background: #333;
      }
      .accordion-item.active {
          max-height: 1000px;
      }
      .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px;
        color: #fff;
        cursor: pointer;
        }
           .social-icons {
            display: flex;
            gap: 10px;
        }
       
        .social-icons a {
            color: white;
        }
      .para{
          font-size: 14px;
          font-family: Arial;
      }
      .img-group{
          display: flex;
          justify-content: space-between;
          margin-top: 20px;
          margin: 10px;
      }
      .img-group2{
          display: flex;
          justify-content: space-between;
          margin-top: 20px;
          margin: 10px;
      }
      .copy{
          display: flex;
          color: white;
          margin: 10px;
          justify-content: center;
          font-size: 14px;
      }
@media only screen and (max-width: 600px) {
    .nav .icon{
    display: block;
    font-size: 27px;
   }
   .nav{
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      background-color: white;
      padding: 10px;
}
  #sidemenu {
    display: block;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: auto;
    margin-top: 40px;
    background-color: white;
    padding-top: 30px;
    transition: right 0.3s ease;
     z-index: 2;
  }
  #sidemenu a{
    margin-top: 20px;
    font-size: 25px;
  }
  #sidemenu .icon{
    display: flex;
    margin-left: 10px;
    color: red;
  }
   .footer{
    display: none;
   }
   .accordion {
              display: block;
              background-color: #333;
          }
          .accordion-item ul li a{
            text-decoration: none;
            color: white;
            font-size: 14px;
            background-color: #333;
        }
        #accordionItem1{
            background-color: #333;
        }
        #accordionItem2{
            background-color: #333;
        }
        #accordionItem3{
            background-color: #333;
        }
      .copy1{
          display: none;
      }
}