@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

body {
  overflow-x: hidden;
}

nav {
  background: #205499;
  z-index: 1000;
  padding: 30px 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .brandName {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav ul li {
  list-style: none;
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav ul .login a {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid #fff;
}

nav ul .login a:hover {
  background: #fff;
  color: #205499;
}

@media screen and (max-width: 968px) {
  nav {
    padding: 20px 30px;
  }
  nav .brandName {
    font-size: 1.3em;
    padding-bottom: 10px;
  }
  nav ul li {
    margin-left: 0px;
  }
  nav ul li a {
    font-size: 0.9em;
    padding: 10px;
  }
}

@media screen and (max-width: 468px) {
  nav {
    padding: 20px 20px;
    display: block;
  }
  nav .brandName {
    font-size: 1.3em;
    padding-bottom: 20px;
  }
  nav ul li {
    margin-left: 0px;
  }
  nav ul li a {
    font-size: 0.9em;
    padding: 0;
    padding-right: 10px;
  }
  nav ul .login a {
    display: none;
  }
}

footer {
  position: relative;
}

footer .footerImage {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: -2;
}

footer .footerImage img {
  opacity: 0.6;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer .contactUs {
  z-index: 100;
  padding: 80px 0;
  text-align: center;
  color: #16419e;
}

footer .contactUs .heado {
  font-weight: 900;
  font-size: 3.4em;
}

footer .contactUs p {
  font-weight: 600;
  opacity: 0.9;
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #435775;
}

footer .contactUs button {
  padding: 10px 30px;
  border-radius: 8px;
  background: #16419e;
  color: rgba(255, 255, 255, 0.952);
  border: none;
  font-weight: 600;
  font-size: 0.9em;
}

footer .contactUs button:focus {
  outline: 1px solid blue;
}

footer .contactUs button i {
  padding-right: 5px;
}

footer .footerMain {
  width: 100%;
  padding: 40px 100px;
  position: absolute;
  top: 380px;
  background: #042858;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  color: white;
}

footer .footerMain .logoSection h1 {
  font-size: 2em;
}

footer .footerMain .logoSection p {
  padding-right: 10px;
  padding-top: 10px;
  font-size: 0.9em;
}

footer .footerMain .campingSvg {
  text-align: center;
}

footer .footerMain .campingSvg img {
  width: 100%;
}

footer .footerMain .relatedLinks .headero {
  font-weight: 500;
  padding: 10px 0;
}

footer .footerMain .relatedLinks ul {
  list-style-type: none;
}

footer .footerMain .relatedLinks ul li {
  padding: 5px 0;
}

footer .footerMain .relatedLinks ul li a {
  text-decoration: none;
  color: white;
}

footer .footerMain .followOnSocialMedia .headero {
  font-weight: 500;
  padding-bottom: 20px;
}

footer .footerMain .followOnSocialMedia ul {
  list-style: none;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footerMain .followOnSocialMedia ul a {
  font-size: 1.2em;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 968px) {
  footer .footerImage img {
    height: 300px;
  }
  footer .contactUs {
    padding: 80px 80px;
  }
  footer .contactUs .heado {
    font-size: 2em;
  }
  footer .contactUs p {
    font-size: 1em;
  }
  footer .footerMain {
    padding: 40px 80px;
    top: 280px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  footer .footerMain .logoSection h1 {
    font-size: 2em;
  }
  footer .footerMain .logoSection p {
    padding-right: 10px;
    padding-top: 10px;
    font-size: 0.9em;
  }
  footer .footerMain .campingSvg {
    text-align: center;
  }
  footer .footerMain .campingSvg img {
    width: 50%;
  }
  footer .footerMain .relatedLinks .headero {
    font-weight: 500;
    padding: 10px 0;
  }
  footer .footerMain .followOnSocialMedia ul {
    width: 80%;
  }
}

@media screen and (max-width: 468px) {
  footer .footerImage img {
    height: 300px;
  }
  footer .contactUs {
    padding: 80px 30px;
  }
  footer .contactUs .heado {
    font-size: 2em;
  }
  footer .contactUs p {
    font-size: 1em;
  }
  footer .footerMain {
    padding: 40px 20px;
    top: 280px;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  footer .footerMain .logoSection h1 {
    font-size: 2em;
  }
  footer .footerMain .logoSection p {
    padding-right: 10px;
    padding-top: 10px;
    font-size: 0.9em;
  }
  footer .footerMain .campingSvg {
    text-align: center;
  }
  footer .footerMain .campingSvg img {
    width: 50%;
  }
  footer .footerMain .relatedLinks .headero {
    font-weight: 500;
    padding: 10px 0;
  }
  footer .footerMain .followOnSocialMedia ul {
    width: 80%;
  }
}

.eventCarousel {
  padding: 40px 250px;
}

.eventCarousel .eventCard {
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 0px #ccc6c6;
          box-shadow: 0px 0px 10px 0px #ccc6c6;
  position: relative;
}

.eventCarousel .eventCard .prev {
  cursor: pointer;
  font-size: 3em;
  position: absolute;
  top: 40%;
  left: -10px;
  background: transparent;
  border: none;
  outline: none;
  color: #aca8a8;
}

.eventCarousel .eventCard .next {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  font-size: 3em;
  color: #aca8a8;
  top: 40%;
  right: -10px;
  position: absolute;
}

.eventCarousel .eventImage img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.eventCarousel .eventBody {
  padding: 10px;
}

.eventCarousel .eventBody .eventTitle {
  font-weight: 600;
}

.eventListSection {
  padding: 40px 300px;
}

.eventListSection .header {
  font-size: 2em;
  font-weight: 600;
  color: #042858;
}

.eventListSection .event {
  -webkit-box-shadow: 0 0 10px 0 #ccc;
          box-shadow: 0 0 10px 0 #ccc;
  margin: 20px 0px;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6fr;
      grid-template-columns: 1fr 6fr;
}

.eventListSection .event .eventImage {
  height: 120px;
}

.eventListSection .event .eventImage img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.eventListSection .event .eventDetails {
  padding: 10px;
  position: relative;
}

.eventListSection .event .eventDetails .eventTitle {
  font-weight: 600;
  font-size: 1.2em;
  color: #205499;
}

.eventListSection .event .eventDetails .eventDescription {
  font-size: 0.9em;
  color: #205499;
}

.eventListSection .event .eventDetails .eventFooter {
  width: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #205499;
}

.eventListSection .event .eventDetails .eventFooter i {
  padding-right: 5px;
}

.eventListSection .event .eventDetails .eventFooter button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  color: #205499;
}

@media screen and (max-width: 908px) {
  .eventCarousel {
    padding: 40px 80px;
  }
  .eventCarousel .eventCard .prev {
    left: 1px;
  }
  .eventCarousel .eventCard .next {
    right: 1px;
  }
  .eventCarousel .eventImage img {
    height: 400px;
  }
  .eventCarousel .eventBody {
    padding: 10px;
  }
  .eventListSection {
    padding: 40px 100px;
  }
  .eventListSection .event {
    -ms-grid-columns: 3fr 7fr;
        grid-template-columns: 3fr 7fr;
  }
  .eventListSection .event .eventImage {
    height: 130px;
  }
  .eventListSection .event .eventDetails {
    padding: 10px;
    font-size: 0.9em;
  }
  .eventListSection .event .eventDetails .eventFooter {
    width: 77%;
    position: absolute;
    bottom: 3px;
    right: 7px;
  }
  .eventListSection .event .eventDetails .eventFooter i {
    padding-right: 3px;
  }
}

@media screen and (max-width: 468px) {
  .eventCarousel {
    padding: 40px 10px;
  }
  .eventCarousel .eventCard .prev {
    font-size: 3em;
    position: absolute;
    top: 40%;
    left: 1px;
    background: transparent;
    border: none;
    outline: none;
    color: #aca8a8;
  }
  .eventCarousel .eventCard .next {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    font-size: 3em;
    color: #aca8a8;
    top: 40%;
    right: 1px;
    position: absolute;
  }
  .eventCarousel .eventImage img {
    height: 250px;
  }
  .eventCarousel .eventBody {
    padding: 10px;
  }
  .eventListSection {
    padding: 40px 10px;
  }
  .eventListSection .event {
    -ms-grid-columns: 3fr 6fr;
        grid-template-columns: 3fr 6fr;
  }
  .eventListSection .event .eventImage {
    height: 100px;
  }
  .eventListSection .event .eventDetails {
    padding: 10px;
    font-size: 0.9em;
  }
  .eventListSection .event .eventDetails .eventFooter {
    width: 97%;
    position: absolute;
    bottom: 3px;
    right: 3px;
  }
  .eventListSection .event .eventDetails .eventFooter i {
    padding-right: 3px;
  }
}
/*# sourceMappingURL=style.css.map */