html {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0px;
}

:root {
  --title-font: "Quattrocento", serif;
  --paragraphs-font: "Quattrocento Sans", serif;
  --paragraphs-color-dark: #2e2e2e;
  --titles-color-dark: #1a1a1a;
  --titles-color-light: #f5f5f5;
  --paragraphs-color-light: #ededed;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0px;
  overflow-x: hidden;
}

img {
  max-width: 500px;
  border-radius: 15px;
}

p {
  font-family: var(--paragraphs-font);
  color: var(--paragraphs-color-dark);
  font-weight: 400;
  letter-spacing: 1.1px;
  line-height: 18px;
}

nav,
main,
footer {
  width: 100%;
}

header {
  width: 100%;
  height: 500px;
  background-image: url("smanjene-slike-ordered/10.webp"),
    linear-gradient(rgb(0, 19, 51, 0.8), rgba(0, 19, 51, 0.8));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  background-blend-mode: darken;
  margin-bottom: 0px;
}

.logo {
  height: 75px;
  width: auto;
  border-radius: 0px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wider-screen-nav {
  align-self: center;
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
}

.nav-links a {
  color: var(--paragraphs-color-light);
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  letter-spacing: 1.5px;
  font-family: var(--title-font);
  font-size: 1.15rem;
}

.nav-links a:nth-child(1):hover,
.nav-links a:nth-child(2):hover,
.nav-links a:nth-child(3):hover {
  transform: scale(1.1);
  color: var(--titles-color-light);
}

#nav-book-button {
  font-family: var(--title-font);
  border: 2px solid var(--titles-color-light);
  background-color: rgb(55, 122, 0, 0);
  transition: transform 0.3s ease, border-radius 0.3s ease;
  color: var(--titles-color-light);
}

.book-now {
  background-color: rgb(55, 122, 0);
  padding: 23px 28px;
  color: var(--titles-color-light);
  font-family: var(--title-font);
  letter-spacing: 1.2px;
  text-decoration: none;
  border: none;
}

.book-now {
  background-color: rgb(55, 122, 0);
  padding: 23px 28px;
  color: var(--titles-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, border-radius 0.3s ease;
  font-family: var(--title-font);
}

.book-now:hover {
  transform: scale(1.1);
  border-radius: 15px;
}

header > section {
  width: 60%;
  color: white;
  align-self: center;
  justify-self: center;
  margin-top: 35px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: var(--title-font);
  color: var(--titles-color-light);
  letter-spacing: 1.2px;
  font-size: 3.5em;
  margin-bottom: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid transparent;
  animation: typingH1 0.8s steps(28) forwards, blink 0.6s step-end infinite;
}

@keyframes typingH1 {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

header section p {
  color: var(--paragraphs-color-light);
  font-size: 1.25em;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid transparent;
  width: 0; /* Start with width 0 so it's hidden */
  animation: typingP 0.7s steps(47) 0.5s forwards, blink 0.6s step-end infinite;
}

@keyframes typingP {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
  100% {
    border-color: black; /* Matches the color of the text */
  }
}

header > section > .book-now {
  background-color: #042242;
  color: white;
  text-decoration: none;
  border: none;
  margin-top: 35px;
}

.smaller-screen-nav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  color: white;
  margin-top: 15px;
  display: none;
}

.smaller-screen-nav img {
  max-width: 90px;
  height: auto;
}

.smaller-screen-nav {
  display: none;
}

hr {
  background-color: #64b5f6;
  width: 50%;
  height: 1px;
  border: none;
  margin: 10px 0px;
  align-self: center;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #cdecff;
}

.article-wrapper {
  width: 100%;
  background-color: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
}

article {
  width: 60%;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  margin-top: 100px;
  margin-bottom: 100px;
}

article img {
  width: 600px;
}

.offerings-description {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 25px;
}

.offerings-description h3 {
  font-family: var(--title-font);
  color: var(--titles-color-dark);
  letter-spacing: 1.2px;
  font-size: 2rem;
  font-weight: 700;
}

.offerings-description p {
  font-family: var(--paragraphs-font);
  color: var(--paragraphs-color-dark);
  font-weight: 400;
}

.offerings-description:nth-child(3) {
  margin-bottom: 0px;
}

.offerings-description img {
  margin: 20px;
  opacity: 0;
  max-width: 700px;
}

.offerings-text {
  width: 45%;
  margin: 10px;
  text-align: left;
  opacity: 0;
}

.swing-in-top-fwd {
  -webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    both;
  animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.slide-in-blurred-right {
  -webkit-animation: slide-in-blurred-right 1s cubic-bezier(0.23, 1, 0.32, 1)
    both;
  animation: slide-in-blurred-right 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.offerings-description hr {
  height: 1.75px;
  width: 40%;
  margin-top: 0px;
}

.slide-in-blurred-left {
  -webkit-animation: slide-in-blurred-left 0.6s cubic-bezier(0.23, 1, 0.32, 1)
    both;
  animation: slide-in-blurred-left 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.swing-in-right-bck {
  -webkit-animation: swing-in-right-bck 0.7s
    cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s both;
  animation: swing-in-right-bck 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    0.5s both;
}

.text-focus-in {
  -webkit-animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53)
    both;
  animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.scale-in-hor-center {
  -webkit-animation: scale-in-hor-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: scale-in-hor-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-blurred-right {
  0% {
    -webkit-transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scaleY(1) scaleX(1);
    transform: translateX(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-blurred-left {
  0% {
    -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scaleY(1) scaleX(1);
    transform: translateX(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes swing-in-right-bck {
  0% {
    -webkit-transform: rotateY(70deg);
    transform: rotateY(70deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 1;
  }
}
@keyframes swing-in-right-bck {
  0% {
    -webkit-transform: rotateY(70deg);
    transform: rotateY(70deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    opacity: 1;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/* ----------------------------------------------
   * Generated by Animista on 2024-11-22 23:22:9
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation tracking-in-expand
   * ----------------------------------------
   */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/* ----------------------------------------------
   * Generated by Animista on 2024-11-23 0:20:47
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

/**
   * ----------------------------------------
   * animation scale-in-hor-center
   * ----------------------------------------
   */
@-webkit-keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.icon-section img {
  height: 25px;
  width: 25px;
  margin-right: 20px;
}

.icon-section {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.icons-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px;
  width: 60%;
}

.icons-text h2 {
  font-size: 2rem;
  font-family: var(--title-font);
  color: var(--titles-color-dark);
  margin-bottom: 5px;
  margin-top: 50px;
}

.icons-text hr {
  height: 2px;
  align-self: flex-start;
  width: 30%;
  margin-bottom: 0px;
}

.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-weight: 400px;
  color: var(--paragraphs-color-dark);
}

#first-block,
#second-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 45%;
  margin: 10px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  opacity: 0;
}

.carousel-track {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.6s;
  opacity: 0;
  z-index: -1;
}

.carousel-item.center {
  z-index: 10;
  transform: translateX(0) scale(1);
  opacity: 1;
  transition: transform 0.6s ease;
}

.carousel-item.center:hover {
  cursor: pointer;
  transform: scale(1.25);
}

.carousel-item.left {
  z-index: 5;
  transform: translateX(-150px) scale(0.8);
  opacity: 0.7;
  filter: brightness(40%);
}

.carousel-item.right {
  z-index: 5;
  transform: translateX(150px) scale(0.8);
  opacity: 0.7;
  filter: brightness(40%);
}

.carousel-item.hidden {
  z-index: -1;
  opacity: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.carousel-button.left {
  left: 220px;
}

.carousel-button.right {
  right: 220px;
}

.carousel-item.far-left {
  z-index: 1;
  transform: translateX(-300px) scale(0.6);
  opacity: 0.5;
  filter: brightness(20%);
}

.carousel-item.far-right {
  z-index: 1;
  transform: translateX(300px) scale(0.6);
  opacity: 0.5;
  filter: brightness(20%);
}

.modal {
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
  display: none;
}

.modal-image {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  margin-bottom: 20px;
}

.modal-navigation {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.close-btn {
  left: 50%;
  background-color: var(--paragraphs-color-dark);
  border: none;
  color: var(--paragraphs-color-light);
  font-size: 30px;

  border-radius: 50%;
  z-index: 10;
  height: 80%;
  padding: 0px 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  background-color: var(--paragraphs-color-light);
  color: var(--paragraphs-color-dark);
  cursor: pointer;
}

#modal-prev-btn,
#modal-next-btn {
  color: var(--paragraphs-color-light);
  width: 40px;
  height: 40px;
  background-color: var(--paragraphs-color-dark);
  border: none;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#modal-prev-btn:hover,
#modal-next-btn:hover {
  background-color: var(--paragraphs-color-light);
  color: var(--paragraphs-color-dark);
  cursor: pointer;
}

.gallery-wrapper {
  background-color: #021121;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-wrapper h3 {
  color: var(--titles-color-light);
  font-family: var(--title-font);
  margin-top: 10px;
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0;
  letter-spacing: 1.2px;
}

.gallery-wrapper p {
  color: var(--paragraphs-color-light);
  margin-top: 5px;
  margin-bottom: 5px;
  opacity: 0;
  font-weight: 300;
}

.gallery-wrapper hr {
  margin-top: 70px;
  width: 10%;
  opacity: 0;
}

.journey-wrapper {
  background-image: url("smanjene slike/IMG_9123copy2.webp"),
    linear-gradient(rgba(2, 22, 2, 0.5), rgba(2, 21, 2, 0.5));
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.journey-wrapper h2 {
  color: var(--titles-color-light);
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 2rem;
  margin: 20px;
}

.journey-wrapper p {
  color: var(--paragraphs-color-light);
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.journey-wrapper p:nth-of-type(2) {
  font-weight: 700;
  font-size: 1.5rem;
}

.journey-wrapper a {
  margin: 20px;
}

.journey-wrapper hr {
  width: 10%;
  height: 2px;
}

footer {
  background-color: #000814;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-wrapper {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  align-self: center;
}

.footer-title {
  color: var(--titles-color-light);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

footer hr {
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

footer span,
footer p,
footer a {
  color: var(--paragraphs-color-light);
  font-weight: 300;
  font-family: var(--paragraphs-font);
  text-decoration: none;
}

.footer-icons {
  height: 20px;
  width: auto;
  margin-right: 10px;
  margin-left: -5px;
}

footer div {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.info-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.copyright {
  color: white;
  font-weight: 200;
  margin: 20px;
  font-family: var(--paragraphs-font);
}

.location {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-block: 40px;
  padding-block: 40px;
}

.location-descripton {
  width: 40%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-descripton h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--titles-color-dark);
  font-family: var(--title-font);
}

.google-map {
  width: 50%;
  height: auto;
  display: flex;
}

.google-map img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes tracking-in-expand-fwd-top {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px) translateY(-500px);
    transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand-fwd-top {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px) translateY(-500px);
    transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

.tracking-in-expand-fwd-top {
  -webkit-animation: tracking-in-expand-fwd-top 0.8s
    cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
}

.focus-in-expand-fwd {
  -webkit-animation: focus-in-expand-fwd 0.8s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: focus-in-expand-fwd 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@media (max-width: 1600px) {
  header > section {
    width: 78%;
  }
}

@media (max-width: 1450px) {
  .carousel-button.right {
    right: 10%;
  }
  .carousel-button.left {
    left: 10%;
  }

  .icon-section {
    width: 75%;
  }

  .wider-screen-nav {
    width: 75%;
  }
  article {
    width: 65%;
  }
}

@media (max-width: 1370px) {
  .modal-navigation {
    width: 70%;
  }

  article {
    width: 75%;
  }

  .location {
    width: 80%;
  }

  .location-descripton {
    width: 30%;
  }
  .google-map {
    width: 65%;
  }
}

@media (max-width: 1250px) {
  header > section {
    width: 85%;
  }
  h1 {
    font-size: 3rem;
  }
  article {
    width: 70%;
  }

  .icon-section {
    width: 85%;
  }

  .carousel-button.right {
    right: 4%;
  }
  .carousel-button.left {
    left: 4%;
  }
  .offerings-description img {
    width: 400px;
  }
}

@media (max-width: 1100px) {
  .carousel-button.right {
    display: none;
  }
  .carousel-button.left {
    display: none;
  }

  .wider-screen-nav {
    display: none;
  }
  nav {
    position: relative;
    z-index: 2;
  }

  .smaller-screen-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }

  .logo-menu-icons {
    display: flex;
    width: 95%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    margin-top: -15px;
    margin-right: -80px;
    width: 45%;
    padding: 30px 0px;
    background-color: rgb(0 25 54);
    border-bottom-left-radius: 100px;
    transition: transoform 0.3s ease;
    display: none;
  }

  .nav-links a {
    font-size: 2rem;
    margin: 20px;
    color: var(--paragraphs-color-light);
    text-transform: lowercase;
  }

  .nav-links a::first-letter {
    text-transform: capitalize;
  }

  .nav-links a:hover,
  .close-icon-menu:hover {
    transform: scale(1.2);
  }

  .close-icon-menu {
    width: 50px;
    align-self: flex-end;
    margin-right: 50px;
    margin-top: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  header {
    position: relative;
    z-index: 0;
  }

  header > section {
    position: relative;
    z-index: 0;
  }
}

@media (max-width: 1000px) {
  header > section {
    width: 95%;
  }
  h1 {
    font-size: 2.3em;
  }
  article {
    width: 85%;
  }

  .icon-section {
    width: 95%;
  }

  .offerings-description h3 {
    font-size: 1.75rem;
  }

  .info-wrapper {
    width: 75%;
  }
}
@media (max-width: 800px) {
  .nav-links {
    margin-top: -15px;
    margin-right: -80px;
    width: 75%;
    padding: 50px 0px;
  }

  .close-icon-menu {
    margin-top: 0px;
    margin-right: 60px;
  }

  .offerings-description h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 770px) {
  article {
    width: 80%;
  }
  #menu-icon {
    width: 60px;
  }

  .offerings-description h3 {
    font-size: 2rem;
  }

  .offerings-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .offerings-text {
    width: 100%;
    margin: 10px;
    text-align: left;
    opacity: 0;
  }
  .offerings-description:nth-of-type(2) {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .offerings-description img {
    width: 95%;
  }

  article {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .icon-section {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #first-block,
  #second-block {
    width: 95%;
  }

  #first-block {
    margin-bottom: 2.5px;
  }
  #second-block {
    margin-top: 2.5px;
  }

  .location {
    width: 100%;
    flex-direction: column;
  }

  .location-descripton {
    width: 80%;
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
  }
  .google-map {
    width: 85%;
    margin-top: 5px;
  }
}

@media (max-width: 695px) {
  .carousel-wrapper {
    height: 350px;
  }

  .carousel-track {
    width: 65%;
  }
  .info-wrapper {
    width: 95%;
  }
}

@media (max-width: 590px) {
  .icons-text {
    width: 85%;
  }
}

@media (max-width: 542px) {
  .icons-text {
    width: 85%;
  }
  .gallery-wrapper h3 {
    font-size: 2rem;
  }

  .info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .info-wrapper div {
    margin: 5px;
  }

  .info-wrapper p {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}

@media (max-width: 500px) {
  .gallery-wrapper h3 {
    font-size: 2.5rem;
  }
  .offerings-description h3 {
    font-size: 1.75rem;
  }

  h1 {
    font-size: 2.75rem;
  }
  .info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .info-wrapper div {
    margin: 5px;
  }

  .info-wrapper p {
    margin-bottom: 5px;
  }

  .carousel-track {
    width: 80%;
  }

  .nav-links {
    margin-top: -15px;
    margin-right: -80px;
    width: 95%;
    padding: 50px 0px;
    padding-right: 25px;
  }

  .close-icon-menu {
    margin-top: 0px;
    margin-right: 70px;
  }

  .offerings-description img {
    width: 100%;
    margin-bottom: 5px;
  }

  .offerings-description h3 {
    margin-top: 5px;
  }

  .icons-text h2 {
    font-size: 1.75rem;
  }

  .location-descripton {
    width: 90%;
  }

  .location-descripton h3 {
    font-size: 1.8rem;
  }

  .google-map {
    height: 300px;
    width: 95%;
  }
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
