/* Footer Starts Here */

.footer {
  width: 100%;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
  /* border-radius: 100% 100% 0 0; */
}

.footerLogo {
  width: 190px;
  height: 90px;
}

.footerLogo img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.ftrWrapper {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ftr {
  padding: 0 10px;
}
.ftr p {
  color: white;
  line-height: 1.5;
  font-size: 1.5rem;
  margin: 0;
}
.ftr h3 {
  color: white;
  font-size: 2.5rem;
}
.ftr a {
  display: grid;
  color: white;
  padding: 2px 0;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all linear 0.2s;
  grid-template-columns: repeat(1, 1fr);
}
.ftr a:hover {
  padding-left: 7px;
}
.copyright {
  color: white;
  padding: 20px;
  font-size: 1.4rem;
  text-align: center;
  border-top: 2px solid white;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
.newsletterWrapper,
.newsWrapper {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  padding: 30px;
  margin-top: -20px;
  text-align: center;
  border-radius: 10px;
  background: rgb(95, 230, 194);
  background: linear-gradient(
    90deg,
    rgba(95, 230, 194, 1) 0%,
    rgba(118, 250, 193, 1) 100%
  );
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.newsletterWrapper h2,
.newsWrapper h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}

.newsletterWrapper p,
.newsWrapper p {
  margin: 10px 0;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.nWrap,
.newsWrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nWrap input {
  width: 350px;
  padding: 10px 10px;
  font-size: 1.7rem;
  outline: none;
  border: none;
  border-radius: 5px 0 0 5px;
}

.nWrap button,
.submitBtn {
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 11px 20px;
  border-radius: 0 5px 5px 0;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}
/* Footer Starts Ends */

/* Media Query Starts Here */

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
}

/* For screens less than or equal to 880px */
@media (max-width: 880px) {
  /* Styles for 880px */
}

/* For screens less than or equal to 720px */
@media (max-width: 768px) {
  .footer {
    border-radius: 0;
  }
  .ftrWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletterWrapper {
    display: none;
  }
}

/* For screens less than or equal to 640px */
@media (max-width: 640px) {
  /* Styles for 640px */
}

/* For screens less than or equal to 560px */
@media (max-width: 560px) {
  /* Styles for 560px */
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
  .ftr h3 {
    font-size: 1.6rem;
  }
}

/* For screens less than or equal to 360px */
@media (max-width: 360px) {
  .ftrWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Media Query Ends Here */
