.new-trip-container {
  height: 400px;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.new-trip-container .main-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s;
  /* object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%; */
}
.new-trip-container .new-trip-info-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.new-trip-container .new-trip-info-container .new-trip-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 3rem 210px;
}
.new-trip-container .new-trip-info-container .new-trip-info .new-trip-title {
  text-align: center;
  color: white;
  text-shadow: 1px 1px 4px #000;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-trip-container .new-trip-info-container .new-trip-info .new-trip-title h3 {
  display: block;
  font-size: 4rem;
}
.new-trip-container .new-trip-info-container .new-trip-info .new-trip-title small {
  font-size: 1rem;
}
.new-trip-container .new-trip-info-container .new-trip-info .btn {
  /* background: transparent;
  text-shadow: 2px 2px 5px #000;
  text-transform: uppercase;
  border: 1px solid white; */
  border-radius: 0.25rem;
  padding: 8px 20px;
  transition: background-color 0.2s;
}

.new-trip-container:hover .main-image {
  transform: translate(-50%, -50%) scale(1.12) !important;
}
.new-trip-container:hover .btn {
  /* background: #cccccc99;
  font-weight: bold; */
  background-color: #0069d9;
  border-color: #0062cc;
}

@media (max-width: 991px) {
  .new-trip-info {
    padding: 2rem 100px !important;
  }
}
@media (max-width: 768px) {
  .new-trip-info {
    padding: 1.5rem 15px !important;
  }
}
.shop-block {
  background-color: #ffebd2 !important;
}
.shop-block .shop-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.shop-block img {
  width: 100%;
  margin-right: 2rem;
}

@media (min-width: 768px) {
  .shop-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.trip {
  width: 100%;
  margin-bottom: 0;
  cursor: pointer;
  transition: box-shadow 0.4s;
}

.trip:hover {
  box-shadow: #238aee 0 0 10px;
}

:not(.new-trip) > .trip {
  margin-top: 1rem;
}

.trip-container {
  overflow: hidden;
  position: relative;
}
.trip-container .trip-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 100;
}
.trip-container .trip-text-container .trip-text {
  padding: 10px;
  color: white;
  font-family: sans-serif;
  font-stretch: ultra-condensed;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 1px 1px 8px #000;
  transition: background 0.35s;
}
.trip-container .trip-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.trip-container .trip-image-container .trip-image {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s;
  /* object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;*/
}

.old-trips .trip-date {
  color: #aaa;
  font-weight: bold;
}

.trip:hover .trip-text {
  background: #0077f7;
}
.trip:hover .trip-image {
  transform: translate(-50%, -50%) scale(1.12) !important;
}

/*# sourceMappingURL=index.css.map */
