@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%;
  }
}

.gallery {
  padding: 70px 200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.gallery .photo {
  height: 200px;
}

.gallery .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.namePlaces {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding: 40px 100px;
}

.namePlaces .first {
  margin: 0 auto;
}

.namePlaces .second {
  margin: 0 auto;
}

.namePlaces .namePlace {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6fr;
      grid-template-columns: 1fr 6fr;
  grid-gap: 30px;
}

.namePlaces .namePlace .name {
  font-weight: 600;
}

.namePlaces .namePlace .place {
  font-weight: 600;
}

.namePlaces .namePlace ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.namePlaces .namePlace ul li {
  padding-right: 10px;
}

.namePlaces .namePlace ul li a {
  text-decoration: none;
  color: #205499;
}

.namePlaces .namePlace ul li a:hover {
  text-decoration: underline;
}

.main {
  padding: 30px;
}

.subSection .campingLocations {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.campingLocations .campingLocation {
  background: white;
  -webkit-box-shadow: 0px 0px 10px 0px #929090;
          box-shadow: 0px 0px 10px 0px #929090;
  border-radius: 5px;
  font-size: 0.9em;
}

.campingLocations .campingLocation .campingLocationImage img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.campingLocations .campingLocation i {
  padding-right: 5px;
}

.campingLocations .campingLocation .campingLocationDetails {
  padding: 10px;
  color: #2a63ad;
}

.campingLocations .campingLocation .campingLocationDetails .campingLocationPart {
  font-size: 1.2em;
  font-weight: bold;
  color: #2a63ad;
}

.campingLocations .campingLocation .campingLocationDetails .campingLocationDescription {
  padding: 5px 0;
  font-size: 0.9em;
  opacity: 0.9;
}

.campingLocations .campingLocation .campingLocationFooter {
  width: 95%;
  margin: 0 auto;
  border-top: 1px solid #d3caca;
  padding: 10px 20px;
  color: #1168da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.campingLocations .campingLocation .campingLocationFooter button {
  background: transparent;
  border: none;
  color: #1168da;
  padding: 4px;
  cursor: pointer;
}

.campingLocations .campingLocation .campingLocationFooter button:focus {
  outline: 1px solid blue;
}

@media screen and (max-width: 968px) {
  .gallery {
    padding: 30px 100px;
  }
  .gallery .photo {
    height: 100px;
  }
  .namePlaces {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    padding: 40px 10px;
  }
  .namePlaces .namePlace {
    -ms-grid-columns: 1fr 6fr;
        grid-template-columns: 1fr 6fr;
    grid-gap: 30px;
  }
  .main {
    padding: 30px 60px;
  }
  .subSection .campingLocations {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .campingLocations .campingLocation .campingLocationImage img {
    height: 200px;
  }
}

@media screen and (max-width: 468px) {
  .gallery {
    padding: 30px 10px;
  }
  .gallery .photo {
    height: 100px;
  }
  .namePlaces {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 40px 10px;
  }
  .namePlaces .first {
    margin: 0 auto;
  }
  .namePlaces .second {
    margin: 0 auto;
  }
  .namePlaces .namePlace {
    -ms-grid-columns: 1fr 6fr;
        grid-template-columns: 1fr 6fr;
    grid-gap: 30px;
  }
  .namePlaces .namePlace .name {
    font-weight: 600;
  }
  .namePlaces .namePlace .place {
    font-weight: 600;
  }
  .namePlaces .namePlace ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .namePlaces .namePlace ul li {
    padding-right: 10px;
  }
  .main {
    padding: 30px 10px;
  }
  .subSection .campingLocations {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .campingLocations .campingLocation .campingLocationImage img {
    height: 250px;
  }
}
/*# sourceMappingURL=style.css.map */