
ul {
    margin: 0px;
    padding: 0px;
  }
  .footer-section {
  background: #97BC62;
  position: relative;
  padding-left: 20px;
    margin-left: -22px;
    margin-bottom: -48px;
    margin-right: -22px;
}
  
  .footer-cta {
  border-bottom: 2px solid white;
  
  }
  .single-cta i {
  color: white;
  font-size: 30px;
  float: left;
  margin-top: 8px;
  }
  .cta-text {
  padding-left: 15px;
  display: inline-block;
  }
  .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  }
  .cta-text span {
  color: white;
  
  font-size: 15px;
  }
  .footer-content {
  position: relative;
  z-index: 2;
  }
  .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
  }
  .footer-logo {
  margin-bottom: 30px;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: white;
  line-height: 28px;
  }
  .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  }
  .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  }
  .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  }
  .facebook-bg{
  background: #3B5998;
  }
  .twitter-bg{
  background: #55ACEE;
  }
  .whatsapp-bg{
    background: #25d366;
    }
  .google-bg{
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
  .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  }
  .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: white;
  }
  .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
  color: white
  }
  .footer-widget ul li a {
  color: white;
  
  text-transform: capitalize;
  }
  .subscribe-form {
  position: relative;
  overflow: hidden;
  }
  .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: white;
  border: 1px solid white;
  color: black;
  }
  .subscribe-form button {
    position: absolute;
    right: 0;
    background: black;
    padding: 30px 30px;
    border: 1px solid black;
    color: black;
    
    text-align: center;
    top: 0;
    align-items: center;
  }
  .subscribe-form button p{
    margin-top: -13px;
    color: white;
  }
  .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
  }
  .copyright-area{
  background: #97BC62;
  padding: 25px 0;
  }
  .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: white;
  }
  .copyright-text p a{
  color: white;
  }
  .footer-menu li {
  display: inline-block;
  margin-left: 20px;
  }
  .footer-menu li:hover a{
  color: white;
  }
  .footer-menu li a {
  font-size: 14px;
  color: white;
  } 
  .text-act headers{
    font-size: 25PX;
  }
  .text-act p{
    text-align: center;
    align-items: center;
    font-size: 20px;
    font-family:'Times New Roman', Times, serif ;
    font-weight: 100;
    padding-left: 100px;
    padding-right: 100px;
  }
  
  
  * {
    box-sizing: border-box;
    -webkit-animation: fadeIn 0.5s;
            animation: fadeIn 0.5s;
  }
  body {
    scroll-behavior: smooth;
    display: grid;
    width: 100vw;
    padding-top: 20px;
    margin: 0;
  }
  @media (min-width: 768px) {
    body {
      align-content: center;
      padding: 20px;
    }
  }
  img {
    height: 100%;
    width: 100%;
    min-height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery {
    display: grid;
    justify-content: center;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 100px) minmax(200px, 800px) repeat(2, 100px);
    grid-template-rows: repeat(5, 100px);
  }
  @media (max-width: 768px) {
    .gallery {
      grid-gap: 10px;
      grid-template-columns: repeat(auto-fit, 50px);
      grid-template-rows: 300px repeat(auto-fit, 50px);
    }
  }
  .gallery__filler {
    grid-column: span 2;
  }
  @media (max-width: 768px) {
    .gallery__filler {
      display: none;
    }
  }
  .gallery__item {
    cursor: pointer;
    border-radius: 5px;
    grid-row: span 1;
    grid-column: span 1;
    transition: transform 0.1s ease-in-out;
  }
  .gallery__item:hover {
    transform: scale(1.1) rotate(5deg);
  }
  .gallery__select {
    display: none;
  }
  .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13):hover {
    transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  