@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --cream: rgb(255, 250, 170);
  --brown: #983520;
  --green: #69832b;
}

* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

*::selection {
  background: var(--cream);
  color: var(--brown);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 8%;
}

body {
  background-image: linear-gradient(180deg, #fffccf, #fffccf);

}

.heading {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  text-align: center;
  justify-content: center;
  padding: 2.5rem 0;
}

.heading span {
  align-items: center;
  font-size: 3.5rem;
  background: var(--brown);
  color: white;
  border-radius: 0.5rem;
  padding: 0.2rem 1rem;
  border: #983520;
}

.heading span.space {
  background: none;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--green);
  color: var(--cream);
  padding: 0.8rem 3rem;
  border: 0.2rem solid var(--cream);
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.7rem;
}

.btn:hover {
  background: #fffccf;
  color: var(--brown);
  transform: scale(1.1);
  border-radius: 10px;
  border-color: var(--brown);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(0.1rem);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  height: 70px;
  transition: all .5s ease-in-out;
  overflow: visible;


}


header .logo {
  padding-left: 5%;
}

header .logo img {
  top: 3rem;
  position: relative;
  width: 100px;

}

header .logo img:hover {
  transform: scale(1.2);

}

header .navbar {
  display: flex;
}

header .navbar a {
  left: 20%;
  color: var(--green);
  font-size: 2rem;
  margin: 0 0.8rem;
}

header .navbar a:hover {
  color: var(--cream);
  background: var(--brown);
  border-radius: .3rem;
  padding: 0 1rem;
  transform: scale(1.1);


}

header icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .icons i {
  font-size: 2rem;
  color: var(--green);
  cursor: pointer;
  padding: .7rem;

}

header .icons i:hover {
  color: var(--cream);
  background: var(--brown);
  border-radius: 50%;
}

header .search-bar-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: var(--green);
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar {
  width: 100%;
  padding: 1rem;
  text-transform: none;
  color: #333;
  font-size: 1.7rem;
  border-radius: 0.5rem;
}

header .search-bar-container label {
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover {
  color: var(--brown);
}

.header-scroll {
  box-shadow: 0 1rem 2rem rgba(255, 250, 170, 0.2);
  background: var(--green);
  height: 60px;
}

.header-scroll .logo img {
  position: relative;
  width: 40px;
  top: 1rem;
}

.header-scroll .navbar a {
  color: var(--cream);
}

.header-scroll .icons i {
  color: var(--cream);
}

.header-scroll .icons i:hover {
  background: var(--brown);
}

.login-form-container {
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 10000;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.m100 {
  margin-top: 100px;
}


.login-form-container.active {
  top: 0;
}

.login-form-container form {
  margin: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  width: 50rem;
}

.login-form-container form h3 {
  font-size: 3rem;
  color: #444;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 0;
}

.login-form-container form .box {
  width: 100%;
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  margin: 0.6rem 0;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  text-transform: none;
}

.login-form-container form .box:focus {
  border-color: var(--brown);
}

.login-form-container form #remember {
  margin: 2rem 0;
}

.login-form-container form label {
  font-size: 1.5rem;
}

.login-form-container form .btn {
  display: flex;
  justify-self: center;
  color: var(--cream);
  width: 50%;
  justify-content: center;
  align-items: center;
}

.login-form-container form .btn:hover {
  transform: scale(1.03);
  background-color: var(--brown);
}

.login-form-container form p {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: #666;
}

.login-form-container form a {
  color: var(--green);
}

.login-form-container form p a:hover {
  color: #333;
  text-decoration: underline;
}

.login-form-container #form-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
}

.login-form-container #form-close:hover {
  color: var(--brown);
}

#menu-bar {
  display: none;
  color: #fff;
  float: right;
  z-index: 100000;
  font-size: 2rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
}

.home {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.swiper-pagination {
  bottom: 3rem !important;
}

.swiper-slide figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.swiper-slide figcaption {
  font-size: 1.7rem;
  padding: 1rem;
  width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: absolute;
  color: white;
  left: 10vw;
  bottom: 8vh;
  background-color: rgba(055, 055, 055, 80%);
  transform: translate3d(0, 0, 100%);
  opacity: 0;
  transition: all 1s ease-in-out;

}

.swiper-slide-active figcaption {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.swiper-slide figcaption h2 {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  transform: translate3d(-100%, 0, 0);
  transition: all 1s ease-in-out;

}

.swiper-slide-active figcaption h2 {
  transform: translate3d(0, 0, 0);
}

.swiper-slide figcaption p {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: all 1.5s ease-in-out;
}

.swiper-slide-active figcaption p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.swiper-slide figcaption button {
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  transition: all 2s ease-in-out;
}

.swiper-slide-active figcaption button {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.loader {
  z-index: 1000;
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.disappear {
  animation: vanish 1s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.media-buttons {
  position: fixed;
  bottom: 2rem;
  left: 0;
  z-index: 100;
}

.wrapper .icon {
  overflow: hidden;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  padding: 1rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
  text-decoration: none;
}

.wrapper .icon:hover span {
  color: white;

}

.wrapper .whatsapp {
  color: green;
}

.wrapper .instagram {
  color: #e1306c;
}

.wrapper .facebook {
  color: #3b5999;
}

.wrapper .twitter {
  color: #46c1f6;
}

.wrapper .facebook:hover {
  background-color: #3b5999;
  color: #ffffff;
}

.wrapper .twitter:hover {
  background-color: #46c1f6;
  color: #ffffff;
}

.wrapper .instagram:hover {
  background-color: #e1306c;
  color: #ffffff;
}

.wrapper .whatsapp:hover {
  background-color: green;
  color: #ffffff;
}


.book .row {
  display: flex;
}

.book .row .image {
  justify-content: center;
  width: 50%;
}

.book .row .image img {
  object-fit: contain;
}

.book .row form {
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}

.book .row form .fieldWrapper {
  width: 100%;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.book .row form input {
  width: 100%;
  padding: .5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  font-size: 1.7rem;
  color: #333;
  text-transform: none;
}

.book .row form .btn {
  align-self: center;
  width: inherit;
}
/* .packages{
  padding: 2rem 5rem;

} */
.packageSwiper{
  overflow: hidden;
}
.packageSwiper .swiper-slide img{
  object-fit: scale-down;
  height: auto;
  min-height: 600px;
}
.swiper-pagination2{
  z-index: 2;
  position: relative;
  left: 50%!important;
}
.destinations .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.destinations .box-container .box {
  background-color: field;
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.destinations .box-container .box img {
  height: 25rem;
  width: 100%;
  object-fit: cover;
}

.destinations .box-container .box .content {
  padding: 2rem;
}

.destinations .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}

.destinations .box-container .box .content h3 i {
  color: #333;
}

.destinations .box-container .box .content p {
  font-size: 1.7rem;
  color: #666;
  padding: 1rem 0;
}

.destinations .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: yellow;
}

.destinations .box-container .box .content .price {
  font-size: 2rem;
  color: #333;
  padding-top: 1rem;
}

.destinations .box-container .box .content .price span {
  color: #666;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.services .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.services .box-container .box i {
  padding: 1rem;
  font-size: 5rem;
  color: var(--brown);
}

.services .box-container .box h3 {
  font-size: 2.5rem;
  color: #333;
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}

.services .box-container .box:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.packages .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.packages .box-container .box {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  border: 1rem solid #fff;
  border-radius: 0.5rem;
  flex: 1 1 30rem;
  height: 40rem;
  position: relative;
}

.packages .box-container .box img {
  height: 80%;
  width: 100%;
  object-fit: cover;
}

.packages .box-container .box .details {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 1.5rem;
  padding: .3rem;
  background: var(--green);

}

.packages .box-container .box span {
  padding: .3rem;
}

.packages .box-container .box .content {
  position: absolute;
  top: -100%;
  left: 0;
  height: 80%;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  padding-top: 5rem;
}

.packages .box-container .box:hover .content {
  top: 0;
}

.packages .box-container .box .content h3 {
  font-size: 2.5rem;
  color: var(--cream);
}

.packages .box-container .box .content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  color: #eee;
  padding: 0.5rem 0;
}

.packages .box-container .box .location h3 {
  padding: .5rem;
  font-size: 2rem;
}

.packages .box-container .box .location p {
  padding: .5rem;
  font-size: 1.5rem;
}

.packages .box-container .box .location span {
  background: var(--green);
  color: white;
  border-radius: .3rem;
}

.review {
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.review .swiper2 {
  padding-bottom: 2rem;
  width: 600px;
  height: 100%;
}

.review .box {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
}

.review .box img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review .box h3 {
  color: #333;
  font-size: 2.5rem;
}

.review .box p {
  color: #666;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.review .box .stars {
  display: flex;
  flex-direction: row !important;
}

.review .box .stars i {
  color: yellow;
  font-size: 1.7rem;
}

.footer-container {
  position: relative;
  top: 5rem;
  background-color: var(--green);
  padding: 64px;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;

}

.footer-container h2 {
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 1rem;

}

.footer-container p {
  font-size: 1.3rem;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-container .footer-left img {
  position: relative;
  float: right;
  justify-self: flex-end !important;
  width: 60%;
}

.footer-center {
  display: flex;
  align-items: center;
}

.footer-center .navlinks {
  display: flex;
  flex-direction: column;
}

.footer-center .navlinks a {
  font-size: 1.3rem;
  text-decoration: none;
}

.footer-center .navlinks a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-right .address {
  font-size: 1.3rem;
}
.intro{
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro p{
  text-align: center;
  width: 75%;
  padding: 2rem 0 4rem;
}

@media(max-width: 810px) {
  .banner{
    padding: 0 80px;
  }
  .info-section{
    flex-direction: column;
    width: 85%;
  }
  .packagePoster{
    align-self: center;
    padding: 0 2rem 4rem 0!important;
  }
  .packagePoster img{
    max-width: 100%;
  }
  .packageGallery{
    width: 100%;
  }

  .login-form-container form {
    margin: 4rem;
  }

  .login-form-container #form-close {
    font-size: 3rem;
  }

  .login-form-container form h3 {
    font-size: 2rem;
  }

  header .search-bar-container {
    padding: 1rem 1.5rem;
  }

  header .search-bar-container #search-bar {
    padding: .5rem;
    font-size: 1.5rem;
  }

  header .search-bar-container label {
    font-size: 1.8rem;
  }

  * {
    font-size: 1.5rem;
  }

  .packages .box-container .box {
    height: 35rem;
  }

  .btn {
    margin-top: .5rem;
    background: var(--green);
    color: var(--cream);
    padding: 0.5rem 2rem;
    cursor: pointer;
    font-size: 1.7rem;
  }

  #menu-bar {
    display: block;
  }

  header .icons i {
    font-size: 1.5rem;
  }

  .heading {
    padding: 1rem;
    gap: .5rem;
  }


  .book .row form {
    width: 100%;
  }

  .destinations{

    gap: .6rem;
    padding: 1.5rem 0;
  }
  .destinations {

    gap: .6rem;
    padding: 1.5rem 0;
  }

  .destinations span {
    font-size: 2.6rem !important;
    padding: .15rem 1rem;
  }

  .destinations span:nth-child(5) {
    padding: 0.3rem 1rem;
  }

  .destinations span:nth-child(9) {
    padding: 0.3rem 1rem;
  }

  .heading span {
    font-size: 2rem;
    padding: auto;
  }

  header .navbar {
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    inset: 0 0 0 150%;
    height: 100vh;
    background: var(--green);
    justify-content: center;
    align-items: center;
  }

  header .navbar .navlinks {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  header .navbar.active {
    inset: 0 0 0 40%;

  }
  header .navbar.active a {
    color: var(--cream);
  }
  header .navbar.active .icons i{
    color: var(--cream);
  }
  header .navbar a {
    font-size: 1.5rem;

  }

  header .logo img {
    width: 60px;
    background-color: transparent;
  }

  .home {
    height: 75vh;
  }

  .swiper-slide img {
    height: 75vh;
  }

  .swiper-pagination {
    bottom: 22vh !important;
  }

  .swiper-slide figcaption {
    left: 2rem;
    bottom: 1rem;
    width: 90vw;
  }
  .swiper-slide-active figcaption a {
    align-self: flex-start;
  }
  

  .media-buttons {
    position: relative;
    top: 2rem;
  }

  .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .destinations .box-container .box .content {
    padding: 1rem;
  }

  .destinations .box-container .box .content p {
    display: none;
  }

  .destinations .box-container .box .content h3 {
    font-size: 1.7rem;
  }

  .destinations .box-container .box .content .price {
    font-size: 1.7rem;
  }

  .destinations .box-container .box .content .price span {
    font-size: 1.3rem;
  }

  .services .box-container .box i {
    font-size: 4rem;
  }

  .services .box-container .box h3 {
    font-size: 2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-left img {
    display: none;
  }


}

@media(max-width: 600px) {
  .info-section{
    width: 95%;
  }
  .destinations {
    justify-content: space-between;
    gap: .3rem;
    padding: 1.5rem 0;
  }

  .destinations span {
    font-size: 2.5rem !important;
    padding: .4rem;
  }

  .book .row .image {
    display: none;
  }
}


.errorlist {
  font-size: 1.5rem;
  background-color: rgb(255, 36, 36);
}

#phone {
  display: grid;
  grid-template-columns: 30% 70%;
}

#phone label {
  grid-column-start: span 2;
}








.desktop_2 * {
  font-family: Nunito, sans-serif;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_2 button {
  cursor: pointer;
}

.desktop_2 img {
  cursor: pointer;
}

.desktop_2 img:hover {
  transform: scale(1.02);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
}

.desktop_2 .hdImg {
  display: none;
}

.desktop_2 .btn-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.desktop_2 .project:hover .btn-box {
  display: block;
}

.desktop_2 .Container {
  /* width: 890px; */
  margin-top: 100px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.desktop_2 .portfolio {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #fffccf;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.desktop_2 .project {
  position: relative;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.desktop_2 .overlay {
  position: fixed;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(71, 69, 69, 0.7);
  height: 100%;
  width: 100%;
  max-height: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: none;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.desktop_2 .overlay-inner {
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #fffccf;
  max-width: 700px;
  width: fit-content;
  padding-top: 35px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  opacity: 1;
  max-width: 50%;
  max-height: 85%;
}

.desktop_2 .close {
  position: absolute;
  top: 9px;
  right: 15px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  color: #474545;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: initial;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.desktop_2 .overlay-inner .hdImgs {
  width: fit-content;
  height: calc(80% - 55px);
  display: flex;
}

.desktop_2 .overlay-inner img {
  max-height: 100%;
  max-width: 100%;
  transform: none;
}

.desktop_2 .bigImg {
  width: 665px;
  height: 440px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.desktop_2 .project-image {
  height: 215px;
  width: 215px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.desktop_2 .above {
  display: flex;
}

.desktop_2 .bottom {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 1024px) {
  .desktop_2 .project-image {
    width: 165px;
    height: 165px;
  }

  .desktop_2 .Container {
    width: 690px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .desktop_2 .bigImg {
    width: 515px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .desktop_2 .project {
    width: 220px;
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .desktop_2 .project-first {
    width: 450px;
  }

  .desktop_2 .above {
    flex-direction: column;
  }

  .desktop_2 .portfolio {
    justify-content: flex-start;
  }

  .desktop_2 .Container {
    width: 450px;
  }

  .desktop_2 .bigImg {
    width: 450px;
  }

  .desktop_2 .project-image {
    width: 220px;
    height: 200px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    display: inline-block;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .desktop_2 .side {
    display: flex;
    width: 450px;
    justify-content: space-between;
  }

  .desktop_2 .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 5px;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .desktop_2 .bigImg {
    width: 250px;
    height: 200px;
  }

  .desktop_2 .project {
    width: 110px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .desktop_2 .Container {
    width: 250px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .desktop_2 .project-image {
    width: 110px;
    height: 110px;
  }

  .desktop_2 .side {
    flex-direction: row;
    width: 250px;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }

  .desktop_2 .project.last-project {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 30px;
  }

  .desktop_2 .project-first {
    width: 250px;
  }

  .desktop_2 .overlay-inner {
    max-width: 90%;
  }
}

/* tabs */


.tab-wrap {
  transition: 0.3s box-shadow ease;
  border-radius: 6px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.tab-wrap:hover {
  box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19);
}

.tab {
  display: none;
}
.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:first-of-type:not(:last-of-type) + label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tab:not(:first-of-type):not(:last-of-type) + label {
  border-radius: 0;
}
.tab:last-of-type:not(:first-of-type) + label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tab:checked + label {
  background-color: #fff;
  box-shadow: 0 -1px 0 #fff inset;
  cursor: default;
}
.tab:checked + label:hover {
  box-shadow: 0 -1px 0 #fff inset;
  background-color: #fff;
}
.tab + label {
  box-shadow: 0 -1px 0 #eee inset;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #333;
  flex-grow: 3;
  text-align: center;
  background-color: #f2f2f2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 50px;
  box-sizing: border-box;
  padding: 15px;
}
.tab + label:hover {
  background-color: #f9f9f9;
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.tab__content {
  padding: 10px 25px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-3px);
  border-radius: 6px;
}
.main{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tabs{
  padding: 0 2rem;
}
.packagePoster{
  padding: 0 2rem 0 0;
}
.packagePoster img{
  max-width: 400px;
}
.info-section{
  display: flex;
  width: 75%;
  padding: 2rem 0;
}

/* boring stuff */
/* body {
  font-family: "Helvetica", sans-serif;
  background-color: #e7e7e7;
  color: #777;
  padding: 30px 0;
  font-weight: 300;
}

.container {
  margin: 0 auto;
  display: block;
  max-width: 800px;
}
.container > *:not(.tab-wrap) {
  padding: 0 80px;
}

h1,
h2 {
  margin: 0;
  color: #444;
  text-align: center;
  font-weight: 400;
}

h2 {
  font-size: 1em;
  margin-bottom: 30px;
}

h3 {
  font-weight: 400;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
} */


/* grid */
.packageGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 23px;
  width: 75%;
  }
  
.div1 { grid-area: 1 / 1 / 3 / 3; }
.div2 { grid-area: 1 / 3 / 2 / 4; }
.div3 { grid-area: 2 / 3 / 3 / 4; }
.div4 { grid-area: 3 / 1 / 4 / 2; }
.div5 { grid-area: 3 / 2 / 4 / 3; }
.div6 { grid-area: 3 / 3 / 4 / 4; }

.packageGallery img{
  width: 100%;
}