@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-main:	#043e4d;
  --primary-black: #5A5A5A;
  --primary-white: #fff;
  --primary-gray: #EDEDED;
  --primary-dark-gray: #d4d3d3;
  --primary-light-gray:#f6f6f6;
  --primary-text--gradient: #linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4FA1ED 91.64%);
}

.text-white {
  color: var(--color-white);
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.btn {
  display: flex;
  width: max-content;
  padding: 14px 20px;
  align-items: center;
  gap: 5px;
  border-radius: 23px;
  text-decoration: none;
  color: var(--primary-white);
  font-size: 1rem;
}
.btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.97);
  background-image: linear-gradient(92deg, #1c6a73 36.41%, rgba(28, 106, 115, 0.7) 96.24%);
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}
.btn--primary:hover {
  background-color: rgba(28, 106, 115, 0.7);
}
.btn--small {
  padding: 10px 15px;
  font-size: 0.875rem;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove ul style */
ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

/* Remove input border */
input:focus-visible {
  outline: unset;
}

/* Remove input autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* Revert text color */
  -webkit-text-fill-color: unset !important;
  color: unset !important;
  caret-color: unset !important;
  /* Revert background color */
  transition: background-color 5000s ease-in-out 0s;
}

hr {
  margin-block-start: 0;
  margin-block-end: 0;
}

button {
  padding-block: 0;
  padding-inline: 0;
  border-width: 0;
  text-rendering: auto;
  color: unset;
  letter-spacing: unset;
  word-spacing: unset;
  text-align: unset;
  background-color: unset;
  text-transform: unset;
  text-indent: 0;
  text-shadow: none;
  display: unset;
}

textarea {
  /* Reset basic styling */
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  /* Reset typography */
  font: inherit;
  color: inherit;
  line-height: inherit;
  /* Reset size */
  width: auto;
  height: auto;
  resize: none;
  /* Optional: Remove scrollbars if not needed */
  overflow: hidden;
}

/* Optional: Reset user agent styles for other states (focus, hover, etc.) */
textarea:focus,
textarea:hover,
textarea:active {
  outline: none;
  box-shadow: none;
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}
@media (min-width: 1075px) {
  .container {
    padding: 80px 0;
    gap: 40px;
  }
}
.container--gray {
  background-color: var(--primary-gray);
}

.section {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  max-width: 80rem;
  padding: 0 40px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
  transition: max-width 0.3s ease, margin-top 0.3s ease;
}
@media (min-width: 1075px) {
  .navbar {
    margin-top: 37px;
  }
  .navbar.scrolled {
    margin-top: 10px;
    max-width: 75rem;
  }
}

.navbar__inner {
  display: flex;
  align-items: center;
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  transition: all 0.3s ease;
}
.navbar__inner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  pointer-events: none;
}
.navbar__inner--light {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  color: #000;
}
.navbar__inner--dark {
  background: rgba(20, 20, 20, 0.35);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: #fff;
}
.navbar__inner--logo {
  padding: 7px 20px;
}
.navbar__inner--mobile-menu {
  padding: 11px;
  border-radius: 31px;
  display: flex;
}
.navbar__inner--mobile-menu span {
  font-size: 30px;
  line-height: 100%;
  color: var(--primary-white);
}
@media (min-width: 1075px) {
  .navbar__inner--mobile-menu {
    display: none;
  }
}
.navbar__inner--desktop-menu, .navbar__inner--cta {
  display: none;
}
@media (min-width: 1075px) {
  .navbar__inner--desktop-menu, .navbar__inner--cta {
    display: flex;
  }
}
.navbar__inner--desktop-menu {
  padding: 3px 3px;
}
.navbar__inner--cta {
  padding: 3px 3px;
}
.navbar__inner--cta a {
  border-radius: 21px;
  display: flex;
  align-items: center;
  padding: 11px 20px;
  text-decoration: none;
  color: var(--primary-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  transition: background 0.3 ease-in-out;
}
.navbar__inner--cta a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(89deg, rgba(4, 62, 77, 0.85) 1.58%, rgba(4, 62, 77, 0.49) 98.16%);
  box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.2) inset;
  backdrop-filter: blur(5px);
  z-index: 101;
}
.navbar__mobile.navbar__mobile--active {
  display: block;
}

.navbar__blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 99;
  pointer-events: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.6s ease, background 0.6s ease, border-bottom 0.6s ease;
}
@media (min-width: 1075px) {
  .navbar__blur {
    height: 170px;
  }
}
.navbar__blur--active {
  opacity: 1 !important;
}
.navbar__blur--light {
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar__blur--dark {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.navbar__toggle--close {
  color: var(--primary-white);
  font-size: 3rem;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 102;
}

.nav {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  list-style: none;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* plynulý scroll na iOS */
  padding: 60px 20px 60px 20px;
}
@media (min-width: 1075px) {
  .nav {
    flex-direction: row;
    padding: unset;
    gap: 10px;
    max-height: unset;
    overflow-y: unset;
    -webkit-overflow-scrolling: unset;
  }
}

.menu-item {
  position: relative;
}
.menu-item > a {
  position: relative;
  overflow: hidden;
  border-radius: 21px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 120%;
  border: none;
  background: none;
  z-index: 1;
  transition: background 0.3 ease-in-out;
}
@media (min-width: 1075px) {
  .menu-item > a {
    font-size: 1rem;
    line-height: 1;
  }
  .menu-item > a:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}
.menu-item.current-menu-item > a {
  background: rgba(255, 255, 255, 0.35);
}
.menu-item span {
  line-height: 100%;
}

.sub-menu__body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 999;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 1075px) {
  .sub-menu__body {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
  }
}
.menu-item:hover .sub-menu__body, .menu-item.is-active .sub-menu__body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu {
  width: 80%;
  padding-left: 25px;
  position: relative;
  z-index: 1000;
  overflow: hidden;
  min-width: 200px;
  list-style: none;
}
@media (min-width: 1075px) {
  .sub-menu {
    width: max-content;
    background-color: rgba(255, 255, 255, 0.9450980392);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 1rem;
  }
}
.sub-menu .menu-item a {
  font-size: 1rem;
  color: var(--primary-white);
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
}
@media (min-width: 1075px) {
  .sub-menu .menu-item a {
    color: var(--primary-black);
    font-size: unset;
  }
}
.sub-menu .menu-item a:hover {
  background: rgb(202, 202, 202);
}
.sub-menu .show-all {
  padding-top: 1rem;
}
.sub-menu .show-all a {
  padding: 2rem 1rem 0rem 1rem;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 300;
}
.sub-menu .show-all a:hover {
  text-decoration: underline;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children .submenu-toggle {
  font-size: 1rem;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.menu-item-has-children:hover .submenu-toggle, .menu-item-has-children.is-active .submenu-toggle {
  transform: rotate(270deg);
}

.menu-item__dropdown {
  display: flex;
  align-items: center;
}

.header-homapage {
  display: flex;
  position: relative;
  height: 350px;
  width: 100%;
  max-width: 80rem;
  margin: 10px auto;
  padding: 0 20px;
}
@media (min-width: 1075px) {
  .header-homapage {
    margin: 20px auto 0 auto;
    height: 550px;
  }
}

.header-homapage__background {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1075px) {
  .header-homapage__background {
    padding: 0;
    border-radius: 40px;
  }
}
.header-homapage__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 1075px) {
  .header-homapage__background img {
    border-radius: 40px;
  }
}
.header-homapage__background--overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  mask-image: none;
  -webkit-mask-image: none;
  background: linear-gradient(rgba(32, 31, 31, 0.27));
}
@media (min-width: 1075px) {
  .header-homapage__background--overlay {
    border-radius: 40px;
    mask-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(32, 31, 31, 0.396), transparent);
  }
}
.header-homapage__background__intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 92px 20px 20px 20px;
  z-index: 2;
  gap: 20px;
}
@media (min-width: 700px) {
  .header-homapage__background__intro {
    justify-content: center;
    padding: 20px 20px 20px 48px;
  }
}
.header-homapage__background__intro h1 {
  color: #fff;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 700px) {
  .header-homapage__background__intro h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1075px) {
  .header-homapage__background__intro h1 {
    font-size: 4.5rem;
  }
}

.header-default {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 10px auto;
  padding: 0 20px;
  height: 250px;
  align-items: center;
}
@media (min-width: 1075px) {
  .header-default {
    margin: 20px auto 0 auto;
    height: 350px;
  }
}
.header-default .devider {
  height: 5px;
  width: 80px;
  margin: 15px auto 0 auto;
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
}
@media (min-width: 1075px) {
  .header-default .devider {
    width: 150px;
  }
}
.header-default__background {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ededed 0%, rgba(28, 106, 115, 0.3) 100%);
}
@media (min-width: 1075px) {
  .header-default__background {
    padding: 0;
    border-radius: 40px;
  }
}
.header-default__background__intro {
  text-align: center;
}
.header-default__background__intro h1 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 700px) {
  .header-default__background__intro h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1075px) {
  .header-default__background__intro h1 {
    font-size: 4.5rem;
  }
}

.header-trip {
  display: flex;
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 80rem;
  margin: 10px auto;
  padding: 0 20px;
}
@media (min-width: 1075px) {
  .header-trip {
    margin: 20px auto 0 auto;
  }
}
.header-trip__background {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1075px) {
  .header-trip__background {
    padding: 0;
    border-radius: 40px;
  }
}
.header-trip__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 1075px) {
  .header-trip__background img {
    border-radius: 40px;
  }
}
.header-trip__background--overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: none;
  -webkit-mask-image: none;
  background: linear-gradient(rgba(32, 31, 31, 0.27));
}
.header-trip__background__intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 20px;
  text-align: center;
}
.header-trip__background__intro h1 {
  color: #fff;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 90%;
}
@media (min-width: 700px) {
  .header-trip__background__intro h1 {
    font-size: 3rem;
    width: 80%;
  }
}
@media (min-width: 1075px) {
  .header-trip__background__intro h1 {
    font-size: 4.5rem;
  }
}
.header-trip__info {
  position: absolute;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 99;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 20px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 90%;
  width: max-content;
}
@media (min-width: 1075px) {
  .header-trip__info {
    bottom: -50px;
  }
}
.header-trip__info p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: var(--primary-black);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 700px) {
  .header-trip__info p {
    font-size: 16px;
  }
}
.header-trip__info .devider {
  width: 1px;
  height: 25px;
  background-color: var(--primary-black);
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.logo__text {
  display: flex;
  flex-direction: column;
  color: var(--primary-white);
  font-size: 13px;
  text-transform: uppercase;
  line-height: 100%;
  gap: 4px;
  font-weight: 700;
}

.flag {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.flag__inner {
  width: 47px;
  height: 29px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 4px 0 #fff inset;
}
.flag__inner img {
  width: 47px;
  height: 29px;
  border-radius: 10px;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1075px) {
  .intro {
    flex-direction: row;
  }
}

.intro__text-big {
  color: var(--primary-black);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 1075px) {
  .intro__text-big {
    font-size: 1.3rem;
  }
}

.intro__text-small {
  color: var(--primary-black);
  text-align: left;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 1075px) {
  .intro__text-small {
    text-align: right;
    align-items: end;
  }
}

.four-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 700px) {
  .four-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (min-width: 1075px) {
  .four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

.box-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: var(--primary-white);
  border-radius: 20px;
  align-items: center;
  text-align: center;
}
.box-item span,
.box-item h2 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-item span {
  width: 55px;
  height: 55px;
  font-size: 55px;
}
.box-item p,
.box-item h2 {
  font-weight: 700;
}
.box-item h2 {
  font-size: 2rem;
}
.box-item p {
  color: var(--primary-black);
  font-size: 1rem;
}

.white-box {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-white);
  border-radius: 20px;
  padding: 20px 25px;
}
@media (min-width: 700px) {
  .white-box {
    padding: 40px;
  }
}

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 700px) {
  .two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.two-columns h2 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  width: fit-content;
}
.two-columns p,
.two-columns h2 {
  font-weight: 700;
}
.two-columns p {
  color: var(--primary-black);
  font-size: 1rem;
}
.two-columns__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.splide {
  border-radius: 18px;
  overflow: hidden;
}
.splide img {
  height: 360px;
  border-radius: 18px;
  width: auto;
  object-fit: cover;
}
@media (min-width: 1075px) {
  .splide img {
    height: 560px;
  }
}

.carousel__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
}

.splide__arrows {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  padding: 20px;
  align-items: end;
  justify-content: end;
  gap: 1rem;
}

.splide__arrow {
  position: relative !important;
  left: unset !important;
  right: unset !important;
  top: unset !important;
  bottom: unset !important;
  height: 50px !important;
  width: 50px !important;
  transform: unset !important;
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.4) inset !important;
  backdrop-filter: blur(5px) !important;
}
.splide__arrow svg {
  fill: var(--primary-white) !important;
}

.splide__slide img {
  width: 100% !important;
  object-fit: cover !important;
}

.splide__gallery {
  max-width: 100% !important;
}

.seo-btn {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 890px;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.seo-btn h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seo-btn__box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer {
  background-color: var(--primary-main);
}
.footer .nav {
  padding: unset;
}
.footer .nav a {
  font-size: 1rem;
  font-weight: 400;
}

.four-columns {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 1075px) {
  .four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

.four-columns__item {
  display: flex;
  flex-direction: column;
  color: var(--primary-white);
  gap: 7px;
  order: 1;
}
.four-columns__item--order-1 {
  order: 2;
}
@media (min-width: 1075px) {
  .four-columns__item--order-1 {
    order: 1;
  }
}
.four-columns__item a {
  text-decoration: none;
  color: var(--primary-white);
}
.four-columns__item a, .four-columns__item p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.four-columns__item h3 {
  padding-bottom: 10px;
}
.four-columns__item h4 {
  padding: 15px 0 10px 0;
}
.four-columns__item .nav {
  flex-direction: column;
  gap: 15px;
}
.four-columns__item .nav a {
  padding: unset;
  background: none;
  font-weight: 400;
}
.four-columns__item .nav .sub-menu__body {
  display: none;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}
.gallery h2 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  width: fit-content;
  line-height: 100%;
}
.gallery p,
.gallery h2 {
  font-weight: 700;
}
.gallery p {
  color: var(--primary-black);
  font-size: 1rem;
  max-width: 650px;
}

.gallery__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (min-width: 700px) {
  .gallery__box {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1075px) {
  .gallery__box {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery__box__item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 250px;
}
@media (min-width: 1075px) {
  .gallery__box__item {
    height: 300px;
  }
}
.gallery__box__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery__box__item img:hover {
  transform: scale(1.1);
}

.lb-outerContainer {
  border-radius: 20px !important;
}

.lightbox .lb-image {
  border-radius: 20px !important;
  border: none !important;
}

.lightboxOverlay {
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  transition: all 0.3s ease;
}
.lightboxOverlay::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  pointer-events: none;
}

.trip-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media (min-width: 700px) {
  .trip-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1075px) {
  .trip-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trip-list__item {
  background-color: var(--primary-light-gray);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}
.trip-list__item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.trip-list__item h2 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}
.trip-list__item p,
.trip-list__item h2 {
  font-weight: 700;
}
.trip-list__item p {
  color: var(--primary-black);
  font-size: 1rem;
  max-width: 650px;
}
.trip-list__item a {
  color: var(--primary-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3 ease-in-out;
}
.trip-list__item a:hover {
  color: black;
}

.label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.label__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 300;
}

.trip-detail {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.trip-detail__box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--primary-black);
  font-weight: 700;
}
.trip-detail__box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 20px;
}
.trip-detail__box iframe {
  height: 350px;
  width: 100%;
  border-radius: 20px;
}

.trip-detail__program {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trip-detail__program h3 {
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}
.trip-detail__program p {
  font-weight: 500;
}

.smap {
  width: 100%;
  height: 350px;
  border-radius: 20px;
}

.video-wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%; /* nebo např. 300px */
  overflow: hidden;
  border-radius: 20px;
}

.breadcrumb {
  padding-bottom: 25px;
}
.breadcrumb a {
  color: var(--primary-black);
}
.breadcrumb a:hover {
  color: black;
}

.download {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download a {
  color: var(--primary-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.download a:hover {
  color: black;
}
.download a .underline {
  text-decoration: underline !important;
}

.privacy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--primary-black);
  font-weight: 700;
}
.privacy ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}
.privacy h3 {
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}
.privacy p {
  font-weight: 500;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact__box a, .contact__box p {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--primary-black);
  text-decoration: none;
  gap: 5px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.form h2 {
  background: linear-gradient(90deg, rgba(4, 62, 77, 0.95) 1.65%, rgba(38, 147, 149, 0.97) 42.32%, #4fa1ed 91.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  width: fit-content;
}
.form p,
.form h2 {
  font-weight: 700;
}
.form p {
  color: var(--primary-black);
  font-size: 1rem;
}

.form__cf7 {
  padding: 20px;
  background-color: var(--primary-gray);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 700px) {
  .form__cf7 {
    padding: 40px;
  }
}
.form__cf7 .form__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 700px) {
  .form__cf7 .form__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.form__cf7 .form__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.form__cf7 input,
.form__cf7 #message {
  padding: 10px 20px;
  border-radius: 16px;
  border: none;
  background-color: var(--primary-white);
  width: 100%;
}
.form__cf7 .form__label {
  color: var(--primary-black);
  font-weight: 700;
  padding-left: 5px;
  padding-bottom: 5px;
}

.wpcf7,
.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  text-align: left;
  padding-top: 5px;
  padding-left: 5px;
  font-size: 0.8rem;
}

.wpcf7-response-output, .wpcf7-spinner {
  display: none;
}

.wpcf7-submit {
  width: fit-content !important;
  margin: auto;
}

.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.thank-you h1 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  color: green;
}

body {
  font-family: "Lato", sans-serif;
  font-style: normal;
  background-color: var(--color-black);
}

/*# sourceMappingURL=styles.css.map */
