:root {
  --swiper-navigation-color: #fff;
  --swiper-theme-color: #fff;
  --swiper-pagination-bottom: 13px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body, html {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

a, ul, li {
  list-style: none;
  text-decoration: none;
}

.container {
  max-width: min(1160px, 100% - 5rem);
  margin-inline: auto;
}

@media (max-width: 660px) {
  .container {
    max-width: min(1160px, 100% - 2rem);
    margin-inline: auto;
  }
}
nav {
  background-color: #194B79;
  padding: 17px 0;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
}
nav ul {
  display: flex;
  gap: 16px;
}
nav ul .items-a {
  font-weight: 400;
  color: #F9F7EE;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.9px;
}

@media (max-width: 1100px) {
  nav .container {
    gap: 0;
    justify-content: space-between;
  }
  nav ul {
    margin-top: 6px;
  }
}
#menuToggle {
  display: block;
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

#menuToggle input {
  display: block;
  width: 42px;
  height: 36px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(-45deg) translate(3px, 2px);
  background: #fff;
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  transform: rotate(45deg) translate(4px, -4px);
}

#menuToggle {
  display: none;
}

.mobileMenu {
  display: none;
}

@media (max-width: 860px) {
  #menuToggle {
    display: block;
  }
  nav {
    position: relative;
    z-index: 16;
  }
  nav .items-ul {
    display: none;
  }
  .mobileMenu {
    font-family: "Nunito", sans-serif;
    height: 100%;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    z-index: 7;
  }
  .mobileMenu .items-a {
    color: #F9F7EE;
    font-size: 30px;
  }
  header {
    position: relative;
    z-index: 4;
  }
  .nav-background {
    position: absolute;
    z-index: 5;
    top: 80px;
    height: 240px;
    width: 100%;
    background: linear-gradient(0deg, #194B79 0%, #194B79 100%);
  }
  .mobileMenu[data-status=active] {
    display: flex;
  }
  .mobileMenu .items-a[data-status=active] {
    display: flex;
    transition: opacity 1s;
  }
  .mobileMenu .items-a[data-status=inactive] {
    display: none;
    transition: opacity 1s;
  }
  .nav-background {
    display: none;
  }
  .nav-background[data-status=inactive] {
    display: none;
  }
  .nav-background[data-status=active] {
    display: block;
    border-top: 1px solid #fff;
  }
}
@media (max-width: 660px) {
  #menuToggle {
    right: 24px;
  }
}
footer {
  background-color: #22493C;
  color: #F9F7EE;
}
footer p {
  font-family: "Nunito", sans-serif;
}
footer .grid {
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-template-rows: 250px 80px;
}
footer .box-1 p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
  line-height: 20px;
  font-weight: 400;
}
footer ul {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
footer ul .items-a {
  font-weight: 400;
  color: #F9F7EE;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.9px;
}
footer .box-3 p {
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  line-height: 20px;
}
footer .box-4 {
  display: flex;
  justify-content: flex-end;
}
footer .box-4 span {
  font-weight: 600;
}

@media (max-width: 1010px) {
  footer br {
    display: none;
  }
}
@media (max-width: 940px) {
  footer .grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  footer .items-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  footer .items:nth-child(3) {
    grid-column-start: 2;
    grid-row-start: 1;
  }
  footer .items:nth-child(1) {
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
@media (max-width: 750px) {
  footer .grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
  }
  footer .grid .box-1 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  footer .grid .box-2 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  footer .grid .box-2 .items-ul {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    margin-top: 0;
  }
  footer .grid .box-4 {
    padding-bottom: 80px;
  }
}
@media (max-width: 710px) {
  footer .grid {
    gap: 0px;
  }
  footer .box-1 {
    margin-top: 30px;
  }
  footer .box-2 {
    margin-top: 30px;
  }
  footer .box-3 {
    margin-top: 30px;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  footer .box-4 {
    margin-top: 10px;
    padding-bottom: 80px;
    justify-content: flex-start;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 660px) {
  footer .container {
    max-width: min(1160px, 100% - 2rem);
  }
}
@media (max-width: 395px) {
  footer .grid .box-2 .items-ul {
    grid-template-columns: 2fr 3fr;
  }
}
.hero-background {
  background-color: #fff;
  font-family: "Nunito", sans-serif;
}
.hero-background .hero-background-image {
  background: linear-gradient(-28deg, rgb(255, 255, 255) 35%, hsla(30, 56%, 86%, 0.25) 35%);
  position: relative;
  overflow: hidden;
}
.hero-background .hero-background-image .hero-gradient {
  z-index: 2;
  top: 140px;
  right: 0;
  position: absolute;
  background: linear-gradient(0deg, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 90%);
  width: 46%;
  height: 500px;
  transform-origin: left center; /* Set the transform origin to the left side */
  transform: scale(1);
}
.hero-background .hero-background-image .hero-background-image-2 h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  position: absolute;
  top: 16px;
  left: 220px;
  color: #EFDBC7;
  letter-spacing: 2.88px;
  font-weight: 500;
}
.hero-background .hero-background-image .hero-grid {
  position: relative;
  z-index: 3;
  padding: 140px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-background .hero-background-image .hero-grid .box-1_back .box-1 {
  position: relative;
  width: 668px;
  overflow: hidden;
}
.hero-background .hero-background-image .hero-grid .box-1_back .box-1 .box-1_background-img-1 {
  background-image: url(/assets/background-top-corner.svg);
  position: absolute;
  width: 64px;
  height: 32px;
  top: 0;
  right: 0;
  z-index: 11;
}
.hero-background .hero-background-image .hero-grid .box-1_back .box-1 .box-1_background-img-2 {
  background-image: url(/assets/background-bottom-corner.svg);
  position: absolute;
  width: 64px;
  height: 32px;
  bottom: 6px;
  left: 0;
  z-index: 11;
}
.hero-background .hero-background-image .hero-grid .box-2 {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-background .hero-background-image .hero-grid .box-2 .content {
  position: relative;
  display: grid;
  z-index: 3;
  padding: 0 0 0 70px;
}
.hero-background .hero-background-image .hero-grid .box-2 h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: 0;
  font-weight: 400;
}
.hero-background .hero-background-image .hero-grid .box-2 h3 {
  position: relative;
  margin: 14px 0px 18px;
  letter-spacing: -0.6px;
  font-size: 28px;
  font-weight: 400;
}
.hero-background .hero-background-image .hero-grid .box-2 h3 span {
  padding-top: 1.5px;
  text-align: center;
  position: absolute;
  margin-left: 16px;
  font-weight: 500;
  color: #EFDBC7;
  background-image: url(/assets/btn-arai.svg);
  width: 150px;
  height: 38px;
  font-family: "Montserrat", sans-serif;
}
.hero-background .hero-background-image .hero-grid .box-2 p {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.6px;
  position: relative;
  padding-left: 10px;
  margin-left: 12px;
}
.hero-background .hero-background-image .hero-grid .box-2 p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translate(-100%, -50%); /* To vertically center the dot */
  width: 6px; /* Adjust the width and height to resize the dot */
  height: 6px;
  border-radius: 50%;
  background-color: #194B79; /* Set the color of the dot */
}
.hero-background .hero-background-image .hero-grid .box-2 p:nth-of-type(2),
.hero-background .hero-background-image .hero-grid .box-2 p:nth-of-type(3) {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .hero-background .hero-background-image .container .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back .box-1 .box-1_background-img-2 {
    bottom: 0;
  }
}
@media (max-width: 1200px) {
  .hero-background .hero-background-image .hero-gradient {
    top: 550px;
    width: 100%;
    height: 50%;
  }
  .hero-background .hero-background-image .hero-background-image-1 {
    top: 100px;
  }
  .hero-background .hero-background-image .hero-background-image-2 {
    top: initial;
    bottom: 60px;
    background-image: url(/assets/background-image-mobile-2.svg);
    top: initial;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
  }
  .hero-background .hero-background-image .hero-background-image-2 h2 {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    width: 100%;
    left: initial;
  }
  .hero-background .hero-background-image .container .hero-grid {
    margin: 0 auto;
    padding: 100px 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back {
    display: flex;
    justify-content: center;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back .box-1 {
    width: 668px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back .box-1 .image img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 {
    padding: 0px 200px 80px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content {
    padding: 0;
    text-align: center;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 p {
    padding: 0;
    margin-left: 0;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 p::before {
    display: none;
  }
}
@media (max-width: 880px) {
  .hero-background .hero-background-image .container .hero-grid .box-2 {
    padding: 0px 80px 80px;
  }
}
@media (max-width: 750px) {
  .hero-background .hero-background-image .hero-background-image-1 {
    display: none;
  }
  .hero-background .hero-background-image .hero-background-image-2 {
    bottom: 0;
  }
  .hero-background .hero-background-image .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .hero-background .hero-background-image .container .hero-grid {
    padding: 0;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back {
    width: 100vw;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1_back .image .img {
    border-radius: 0;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 {
    padding: 0px 0px 104px;
  }
}
@media (max-width: 660px) {
  .hero-background .hero-background-image .hero-gradient {
    top: 450px;
    width: 100%;
    height: 50%;
  }
  .hero-background .hero-background-image .hero-background-image-1 {
    top: 60px;
    display: none;
  }
  .hero-background .hero-background-image .hero-background-image-2 {
    bottom: 0px;
  }
  .hero-background .hero-background-image .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .hero-background .hero-background-image .container .hero-grid {
    padding: 0px 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1 .image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0%;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 {
    padding: 0px 0 104px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content {
    padding: 0;
    text-align: center;
  }
}
.mobile {
  display: none;
}

@media (max-width: 500px) {
  .hero-background .hero-background-image .hero-gradient {
    top: 380px;
    width: 100%;
    height: 50%;
  }
  .hero-background .hero-background-image .hero-background-image-1 {
    top: 0px;
    display: none;
  }
  .hero-background .hero-background-image .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .hero-background .hero-background-image .container .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-1 .image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content {
    padding: 0px 16px;
    text-align: left;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content p {
    padding-left: 10px;
    margin-left: 12px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content h3 {
    margin: 24px 0 24px;
  }
  .hero-background .hero-background-image .container .hero-grid .box-2 .content p::before {
    display: block;
  }
  .mobile {
    display: block;
  }
}
.hero-background-image-1 {
  z-index: 4;
  position: absolute;
  top: 140px;
  left: 0%;
  width: 50%;
  height: 80px;
  background-image: url(/assets/background-image-desktop-1.svg);
  background-repeat: no-repeat;
}

.hero-background-image-2 {
  z-index: 4;
  position: absolute;
  top: 566px;
  right: -46%;
  width: 100%;
  height: 80px;
  background-image: url(/assets/background-image-desktop-2.svg);
  background-repeat: no-repeat;
}

@media (min-width: 1430px) {
  .hero-background-image-2 {
    background-image: url(/assets/background-image-2.svg);
  }
  .hero-background-image-1 {
    background-image: url(/assets/background-image-1.svg);
    width: 110%;
    left: calc(-90% + (100vw / 100) * 10);
  }
}
@media (min-width: 1530px) {
  .hero-background-image-1 {
    left: calc(-83% + (100vw / 100) * 20);
  }
}
@media (min-width: 1600px) {
  .hero-background-image-2 {
    background-image: url(/assets/background-image-1-big.svg);
  }
}
@media (min-width: 1630px) {
  .hero-background-image-1 {
    left: calc(-80% + (100vw / 100) * 20);
  }
}
@media (min-width: 1760px) {
  .hero-background-image-1 {
    left: calc(-80% + (100vw / 100) * 25);
  }
}
.location-background {
  padding: 120px 0;
  font-family: "Nunito", sans-serif;
  position: relative;
  overflow: hidden;
}
.location-background .location-background-image .location-background-image-1 {
  background-image: url(/assets/background-image-3.svg);
  background-repeat: no-repeat;
  z-index: 4;
  position: absolute;
  height: 400px;
  width: 250%;
  left: -600px;
  bottom: 0px;
}
.location-background .location-background-image .container h2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.8px;
}
.location-background .location-background-image .container h2 span {
  padding-top: 10px;
}
.location-background .location-background-image .container .location-grid {
  position: relative;
  z-index: 5;
  margin-top: 64px;
  background: linear-gradient(-45deg, #EFDBC7 0%, #194B79 100%);
  padding: 32px 32px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-background .location-background-image .container .location-grid .box-1 div {
  color: #fff;
  margin-top: 30px;
  padding: 0 32px;
}
.location-background .location-background-image .container .location-grid .box-1 div h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -1.2px;
}
.location-background .location-background-image .container .location-grid .box-1 div p {
  margin-top: 16px;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.4px;
  font-weight: 400;
}
.location-background .location-background-image .container .location-grid .box-1 .line {
  margin-top: 30px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.location-background .location-background-image .container .location-grid .box-1 .box-3--box {
  margin-bottom: 30px;
}
.location-background .location-background-image .container .location-grid .box-2 iframe {
  border-radius: 12px;
}

@media (max-width: 940px) {
  .location-background {
    padding-top: 120px;
    font-family: "Nunito", sans-serif;
  }
  .location-background .location-background-image .location-background-image-1 {
    left: -900px;
  }
  .location-background .location-background-image .container {
    max-width: 100%;
  }
  .location-background .location-background-image .container h2 {
    margin-left: 32px;
  }
  .location-background .location-background-image .container .location-grid {
    border-radius: 0;
  }
}
@media (max-width: 940px) {
  .location-background {
    padding-top: 120px;
    font-family: "Nunito", sans-serif;
  }
  .location-background .location-background-image .container {
    max-width: 100%;
  }
  .location-background .location-background-image .container .location-grid {
    border-radius: 0;
  }
}
@media (max-width: 800px) {
  .location-background {
    padding-top: 120px;
    font-family: "Nunito", sans-serif;
  }
  .location-background .location-background-image .location-background-image-1 {
    left: -1000px;
  }
  .location-background .location-background-image .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .location-background .location-background-image .container h2 {
    text-align: center;
  }
  .location-background .location-background-image .container .location-grid {
    padding: 32px 0 0 0;
    grid-template-columns: 1fr;
    grid-template-rows: 400px 1fr;
  }
  .location-background .location-background-image .container .location-grid .box-2 {
    order: 1;
    padding: 0 32px;
  }
  .location-background .location-background-image .container .location-grid .box-1 {
    order: 2;
  }
  .location-background .location-background-image .container .location-grid .box-1 .box-3--box {
    padding-bottom: 0;
  }
  .location-background .location-background-image .container .location-grid div {
    padding: 0px 0px 0 0px;
  }
}
@media (max-width: 660px) {
  .location-background {
    padding-top: 80px;
    font-family: "Nunito", sans-serif;
  }
}
@media (max-width: 500px) {
  .location-background {
    padding-top: 80px;
    font-family: "Nunito", sans-serif;
  }
  .location-background .location-background-image .location-background-image-1 {
    left: -1000px;
    width: 500%;
  }
  .location-background .location-background-image .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .location-background .location-background-image .container h2 {
    margin-left: 24px;
    font-size: 48px;
  }
  .location-background .location-background-image .container .location-grid {
    border-radius: 0;
  }
  .location-background .location-background-image .container .location-grid .box-1 div {
    padding: 0 24px;
  }
  .location-background .location-background-image .container .location-grid .box-2 {
    padding: 0 24px;
  }
}
@media (max-width: 450px) {
  .location-background {
    padding-top: 80px;
    font-family: "Nunito", sans-serif;
  }
  .location-background .location-background-image .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .location-background .location-background-image .container h2 {
    margin-left: 0px;
    justify-content: center;
  }
  .location-background .location-background-image .container .location-grid {
    margin-top: 48px;
    border-radius: 0;
  }
  .location-background .location-background-image .container .location-grid .box-2 {
    padding: 0;
  }
  .location-background .location-background-image .container .location-grid .box-2 iframe {
    border-radius: 0;
  }
}
.video-background {
  padding: 120px 0;
  background: linear-gradient(-45deg, #fff 0%, hsla(30, 56%, 86%, 0.25) 100%);
}
.video-background .container h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.8px;
  font-family: "Nunito", sans-serif;
}
.video-background .container h2 span {
  margin-top: 6px;
}
.video-background .container .flex {
  margin-top: 64px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.video-background .container .flex .box-1 {
  width: 100%;
  aspect-ratio: 16/9.4;
  padding: 32px;
  background-color: #EFDBC7;
}
.video-background .container .flex .box-1 .video-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-background .container .flex .box-1 .video-box iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1000px) {
  .video-background .container {
    max-width: min(1160px, 100% - 0rem);
  }
  .video-background .container .flex .box-1 {
    border-radius: 0;
    padding: 24px;
    width: 100vw;
    aspect-ratio: 16/9.3;
  }
  .video-background .container .flex .box-1 .video-box {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 660px) {
  .video-background {
    padding: 80px 0;
    margin-bottom: 0;
  }
  .video-background .container .flex {
    background-color: #EFDBC7;
    padding: 32px 0;
  }
  .video-background .container .flex .box-1 {
    padding: 0;
  }
  .video-background .container .flex .box-1 .video-box iframe {
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .video-background .container h2 {
    font-size: 48px;
  }
  .video-background .container h2 span {
    margin-top: 8px;
  }
  .video-background .container .flex {
    margin-top: 48px;
  }
}
.galery-background {
  padding: 80px 0 160px;
  background-color: hsla(30, 56%, 86%, 0.25);
  overflow: hidden;
  position: relative;
}
.galery-background .galery-background-img-1 {
  right: 200px;
  position: absolute;
  width: 100%;
  height: 400px;
  top: 0;
  background-image: url(/assets/background-image-galery-1.svg);
  background-repeat: no-repeat;
}
.galery-background .galery-background-img-2 {
  position: absolute;
  width: 100%;
  height: 400px;
  bottom: 0;
  background-image: url(/assets/background-image-galery-2.svg);
  background-repeat: no-repeat;
}
.galery-background .container-2 {
  position: relative;
  z-index: 4;
  margin-bottom: 80px;
}
.galery-background .container-2 h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.8px;
  font-family: "Nunito", sans-serif;
}
.galery-background .container-2 h2 span {
  margin-top: 6px;
}
.galery-background .container {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  background-color: #EFDBC7;
  padding: 32px;
}
.galery-background .container .box {
  overflow: hidden;
  width: 964 px;
}
.galery-background .container .box img {
  max-width: 100%;
}
.galery-background .container .box .main {
  position: relative;
}
.galery-background .container .box .main .swiper-button-next {
  position: absolute;
  z-index: 5;
}
.galery-background .container .box .small {
  margin-top: 19px;
}
.galery-background .container .box .main .bottom-shadow {
  z-index: 5;
  border-radius: 0 0 12px 12px;
  bottom: 5px;
  position: absolute;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
}
.galery-background .container .box .swiper-container .swiper-wrapper .swiper-slide img {
  border-radius: 12px;
}
.galery-background .container .box .swiper-container .main-carusel {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .galery-background .container {
    max-width: min(1160px, 100% - 0rem);
    border-radius: 0;
    padding: 32px 24px;
  }
}
@media (max-width: 800px) {
  .galery-background .container .box .small {
    display: none;
  }
}
@media (max-width: 660px) {
  .galery-background .container-2 {
    margin-bottom: 64px;
  }
  .galery-background .container {
    padding: 32px 0;
  }
  .galery-background .container .box .main .bottom-shadow {
    border-radius: 0;
  }
  .galery-background .container .box .swiper-container .swiper-wrapper .swiper-slide img {
    border-radius: 0;
    max-width: 140%;
  }
}
@media (max-width: 500px) {
  .galery-background {
    padding: 80px 0 80px;
  }
  .galery-background .container-2 h2 {
    font-size: 48px;
  }
}
@media (min-width: 1420px) {
  .galery-background .galery-background-img-2 {
    background-image: url(/assets/background-image-galery-2-desktop.svg);
  }
}
@media (max-width: 1240px) {
  .galery-background .galery-background-img-1 {
    left: -400px;
    width: 200%;
    right: initial;
  }
}
@media (max-width: 840px) {
  .galery-background .galery-background-img-1 {
    left: -800px;
    width: 200%;
    right: initial;
  }
}
@media (max-width: 640px) {
  .galery-background .galery-background-img-1 {
    left: -800px;
    width: 500%;
    right: initial;
  }
}
@media (max-width: 600px) {
  .galery-background .galery8background-img-1 {
    left: -1000px;
    width: 400%;
    right: initial;
  }
}
#galerija, #lokacija, #vaizdo_irasas {
  font-size: 62px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media (max-width: 500px) {
  #galerija, #lokacija, #vaizdo_irasas {
    font-size: 48px;
  }
}/*# sourceMappingURL=style.css.map */