.footer {
  background-color: #004e3d;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 20px;
  margin-top: 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer .footersocialmedia {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.footer .footersocialmedia h4 {
  padding: 8px;
}
.footer .footersocialmedia input {
  padding: 8px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: large;
  font-weight: bold;
  outline: 1px solid #fff;
  margin-top: 8px;
  margin-bottom: 5px;
  width: 95%;
}
.footer .footersocialmedia input::-moz-placeholder {
  color: #fff;
}
.footer .footersocialmedia input::placeholder {
  color: #fff;
}
.footer .footersocialmedia input:focus {
  border: 2px solid #fff;
}
.footer .footersocialmedia .subscribebtn {
  width: 95%;
  padding: 8px;
  font-size: large;
  font-weight: bolder;
  text-align: center;
  background-color: #fff;
  color: #004e3d;
  border-radius: 10px;
  border: 1px solid #fff;
  margin: 8px;
}
.footer .footersocialmedia .subscribebtn:hover {
  cursor: pointer;
  opacity: 0.8;
}
.footer .footersocialmedia .socialbtns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-top: 15px;
}
.footer .footersocialmedia .socialbtns button {
  background-color: transparent;
  color: #004e3d;
  font-weight: bolder;
  border: transparent;
}
.footer .footersocialmedia .socialbtns button svg {
  width: 32px;
  height: 32px;
}
.footer .footersocialmedia .socialbtns button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.footer .footermenus {
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 10px;
}
.footer .footermenus h5 {
  color: #959595;
}
.footer .footermenus ul {
  padding-top: 8px;
  padding-bottom: 8px;
  width: 30%;
  list-style: none;
}
.footer .footermenus ul li {
  margin-top: 3px;
  margin-bottom: 3px;
}
.footer .footermenus ul li a {
  text-decoration: none;
  color: #fff;
  padding-left: 8px;
}
.footer .footermenus ul li a button {
  width: 100%;
  background-color: transparent;
  border: transparent;
  outline: transparent;
  color: #fff;
  text-align: left;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 5px;
  padding-left: 5px;
}
.footer .footermenus ul li button:hover {
  cursor: pointer;
  font-weight: bold;
  background-color: #c1c1c1;
}
.footer .footermenus ul:last-child {
  display: none;
}
.footer .lastfooter {
  width: 100%;
  margin-top: 25px;
}
.footer .lastfooter hr {
  border-bottom: 1px dotted #fff;
  margin-bottom: 10px;
}
.footer .lastfooter .lasttext {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 5px;
  color: #fff;
  font-size: 13px;
}

.corousel {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  background-color: #f1f0f0;
}
.corousel .images {
  width: 100%;
  position: relative;
}
.corousel .images img {
  position: absolute;
  top: 0;
  width: 99%;
  padding: 0.5%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 800ms ease-in-out;
  opacity: 0;
  transform: translateX(0%);
}
.corousel .arrow {
  width: 25px;
  height: 50px;
  padding: 5px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #fefefe;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.corousel .arrow button {
  background-color: transparent;
  border: transparent;
  outline: transparent;
}
.corousel .arrow button svg {
  width: 25px;
  height: 25px;
}
.corousel .arrow:first-child {
  left: 3px;
}
.corousel .arrow:last-child {
  right: 3px;
}
.corousel .arrow:hover {
  cursor: pointer;
  background-color: #c1c1c1;
}

.corousel:hover {
  cursor: pointer;
}

@media screen and (min-width: 0px) and (max-width: 640px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer .footersocialmedia {
    width: 80%;
  }
  .footer .footermenus {
    width: 100%;
  }
  .footer .footermenus ul {
    width: 45%;
  }
  .footer .footermenus ul:last-child {
    display: block;
  }
  .corousel .arrow {
    display: none;
    width: 15px;
    height: 30px;
  }
  .corousel .arrow button svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1007px) {
  .footer {
    flex-direction: row;
  }
  .footer .footersocialmedia {
    width: 45%;
  }
  .footer .footermenus {
    width: 45%;
  }
  .footer .footermenus ul {
    width: 45%;
  }
  .footer .footermenus ul:last-child {
    display: block;
  }
}/*# sourceMappingURL=style2.css.map */