.footer {
  width: 100%;
  background-image: url("../Assests/bgfooter.jpg");
  height: auto;
  place-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-radius: 100px 0 0 0;
  padding: 15px;
  background-repeat: no-repeat;
  margin: 30px 0 0 0;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  height: auto;
}

.footer__contact h3 {
  font-family: "Muli, sans-serif";
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  font-style: normal;
  margin: 10px 0 0 10px;
  color: #fff;
  line-height: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  height: auto;
}

.footer__links h3 {
  font-family: "Muli, sans-serif";
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  margin: 10px 0 0 10px;
  color: #fff;
}

.footer__links__links {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.footer__links__links a {
  margin: 10px 0 0 0;
  font-family: "Muli, sans-serif";
  font-size: 20px;
  text-align: center;
  color: #00ff4e;
  text-decoration: none;
}

.footer__links__links a:hover {
  margin-left: 20px;
  transition: 0.8s;
}

.newsletter h3 {
  font-family: "Muli, sans-serif";
  font-weight: 400;
  font-size: 20px;
  margin: 10px 0 0 10px;
  color: #fff;
}

.newsletter__contents p {
  width: 250px;
  margin: 30px 0 0 0;
  font-family: "Californian FB";
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #00ff4e;
}

.text__newsletter {
  margin: 20px 0 0 0;
  display: flex;
}

.text__newsletter input {
  border: none;
  padding: 4px;
  font-family: "Californian FB";
  font-size: 20px;
  text-align: center;
  color: #8d8e8b;
  outline: none;
}

.text__newsletter img {
  width: 40px;
  height: 100%;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 800px) {
  .footer {
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: auto;
    border-radius: 50px 0 0 0;
  }
  .footer__links {
    margin: 10px 0 10px 0;
  }
  .footer__contact {
    height: auto;
  }
}

.top {
  background: #ff0057;
  width: 100vw;
  border-radius: 0px 0px 50px 50px;
}

.header {
  width: 100%;
  height: 70px;
  justify-content: center;
  text-align: center;
  padding: 10px;
  place-items: center;
}

.header h3 {
  font-family: "Arial";
  font-weight: 600;
  font-style: "Narrow Bold";
  font-size: 35px;
  color: #ffff;
}

.navbar {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 70px;
  border-radius: 0px 0px 50px 50px;
  background: rgba(255, 0, 87, 0.91);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  align-items: center;
}

.navbar a {
  text-decoration: none;
  font-family: "Segoe UI";
  font-weight: 600;
  font-style: oblique;
  font-size: 20px;
  text-align: left;
  padding: 6px;
  color: #ceff00;
}

.navbar a:hover {
  background-color: #ceff00;
  color: #ff0057;
  border-radius: 5px;
  transition: 0.5s;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    height: auto;
  }
  .navbar a {
    margin-top: 6px;
  }
}

.content {
  margin: 30px 0 0 0;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.content__image img {
  width: 90%;
}

.text__inputs {
  display: flex;
  flex-direction: column;
}

.text__inputs input {
  margin: 10px 0 0 0;
  border: solid;
  border-width: thin;
  outline: none;
  padding: 10px;
}

.address__content {
  width: auto;
  display: flex;
  align-items: center;
}

.address__content p {
  width: auto;
  font-family: "Segoe UI";
  font-size: 16px;
  text-align: left;
  color: black;
  margin: 0 0 0 10px;
}

.linkbutton {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #6e00ec;
  background-color: transparent;
  border: solid;
  border-width: thin;
  margin: 10px 0 0 0;
  padding: 5px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}
.linkbutton::after,
.linkbutton:hover {
  color: white;
  background-color: #6e00ec;
  transition: 1s all;
}

@media (max-width: 1066px) {
  .address .address__content {
    flex-direction: column;
  }
  .address {
    width: 50%;
  }
}

@media (max-width: 942px) {
  .content {
    width: 100vw;
  }
  .content__2 {
    width: 50%;
    flex-direction: column;
    align-items: center;
  }
  .address__content p {
    font-size: 14px;
  }
  .address {
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .content {
    flex-direction: column;
  }
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06d85f;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 70%;
  }
}

@media (max-width: 490px) {
  .popup {
    align-items: center;
    text-align: center;
  }
  .popup h2 {
    width: 50%;
  }
  .popup .content {
    width: 50%;
  }
}
.overlay1 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay1:target {
  visibility: visible;
  opacity: 1;
}

.popup1 {
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup1 h2 {
  font-size: 16px;
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup1 .close1 {
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup1 .close1:hover {
  color: #06d85f;
}
.popup1 .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup1 {
    width: 70%;
  }
}

@media (max-width: 490px) {
  .popup1 {
    align-items: center;
    text-align: center;
  }
  .popup1 h2 {
    width: 50%;
  }
  .popup1 .content {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .footer__links {
    margin: 20px 0 0 0;
  }
}
