@font-face {
  font-family: segoe;
  src: url(/fonts/Segoe.ttf);
}
@font-face {
  font-family: rrollie;
  src: url(/fonts/RRollie\ Regular.otf);
}
@font-face {
  font-family: montserrat;
  src: url(/fonts/Montserrat-Regular.ttf);
}
body {
  font-family: segoe, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #111D2F;
  font-size: 1.3rem;
}

.navigation__link {
  font-size: 1.5rem;
  color: #111D2F;
}

.swiper-slide {
  color: #fff;
}
.swiper-slide p {
  font-family: montserrat;
}

.title {
  font-family: rrollie;
}
.title-1 {
  font-size: 5rem;
}
.title-2 {
  font-size: 3rem;
}
.title-3 {
  font-size: 2rem;
}

.btn {
  color: #fff;
}

.contact__item {
  font-size: 1.5rem;
  color: rgba(17, 29, 47, 0.5);
}
.contact__item a {
  color: #111D2F;
  display: inline-block;
  margin-left: 1rem;
}

.events__item p {
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}
.events__item li {
  line-height: 2.5rem;
  font-family: montserrat;
  color: rgba(255, 255, 255, 0.8);
}
.events__item li:nth-child(1) {
  margin-right: 2rem;
}
.events__item .title {
  line-height: normal;
  margin-bottom: 4rem;
}

.customParagraph {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  opacity: 0.5;
  font-size: 1rem;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop


$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
.mt-4 {
  margin-top: 4rem;
}

.mt-15 {
  margin-top: 5rem;
}

.w-45 {
  width: 45%;
}
@media only screen and (max-width: 56.25em) {
  .w-45 {
    width: 100%;
  }
}

.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  height: 0.1rem;
  width: 100%;
  background-color: #fff;
}

.text-start {
  text-align: start;
}

.bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.upper-case {
  text-transform: uppercase;
}

.mr-3 {
  margin-right: 3rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.p-x5 {
  padding: 0 5rem;
}

.contact__btn {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  color: #000;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column-reverse;
  width: -moz-min-content;
  width: min-content;
  text-align: center;
}

.easy-fix {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.custom-img li {
  display: flex;
  align-items: center;
}
.custom-img img {
  width: 2.5rem;
  margin-right: 0.5rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style-type: none;
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 55%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 43%;
  }
}

body {
  box-sizing: border-box;
  padding: 3rem;
  background-color: #F5F5F5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-box img {
  width: 5rem;
}

.language__lang {
  cursor: pointer;
}
.language div span {
  display: flex;
  align-items: center;
}
.language div span img {
  margin-left: 0.5rem;
  width: 2rem;
}

.navigation__nav {
  display: flex;
  align-items: center;
}
.navigation__list {
  display: flex;
}
.navigation__item {
  margin: 0 2rem;
}
.navigation__item.active {
  font-weight: bold;
  position: relative;
}
.navigation__item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #223A5D;
  height: 1px;
  width: 50%;
  bottom: -0.5rem;
}

.swiper {
  width: 100%;
  height: 70vh;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.swiper-slide {
  text-align: center;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination-bullet {
  border: solid 0.1rem #fff;
  background: transparent !important;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-content {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 80%;
}
.swiper-pagination {
  bottom: 4rem !important;
}
.swiper-description {
  display: flex;
  justify-content: space-between;
  text-align: start;
}
.swiper-description .title-1 {
  line-height: 4rem;
}
.swiper-description .title-3 {
  line-height: 3rem;
}
.swiper-description:first-child .btn {
  margin: 0.5rem 0.3rem;
}
.swiper-description--content:nth-child(2) {
  text-align: end;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  background-size: cover;
}
.swiper-slide:nth-child(1) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img1.jpg");
  background-position-y: 100%;
}
.swiper-slide:nth-child(2) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img2.jpg");
}
.swiper-slide:nth-child(3) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img3.jpg");
}
.swiper-slide:nth-child(4) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img4.jpg");
}
.swiper-slide:nth-child(5) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img5.jpg");
}
.swiper-slide:nth-child(6) {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Exterior/img6.jpg");
}

.btn {
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  cursor: pointer;
}
.btn--outline {
  background: transparent;
  border: solid 0.1rem #fff;
}
.btn--arrow {
  padding: 2rem;
  border-radius: 50%;
  border: none;
}
.btn--tag {
  background-color: #435775;
  border: none;
}
.btn--primary {
  text-transform: uppercase;
  background-color: #435775;
  padding: 1rem 2rem;
  min-width: 15rem;
  letter-spacing: 0.2rem;
}

.contact__btn .btn--arrow {
  background-color: #435775;
}

.about {
  border-radius: 3rem;
  position: relative;
  top: -3rem;
  z-index: 10;
  background-color: #F5F5F5;
  padding: 3rem;
  padding-top: 7rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .about {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .about {
    border-radius: 1rem;
  }
}
.about__content:first-child {
  width: 40%;
  margin-right: 10rem;
}
@media only screen and (max-width: 75em) {
  .about__content:first-child {
    width: 100%;
    margin: 5rem 0;
  }
}
.about__content:nth-child(2) {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .about__content:nth-child(2) {
    flex-direction: column;
    align-items: center;
  }
}
.about__card {
  border: solid 0.1rem #223A5D;
  padding: 4rem 1rem;
  padding-bottom: 1rem;
  border-radius: 3rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  min-width: 25rem;
  max-width: 40rem;
  margin: 0 2rem;
  text-align: center;
}
.about__card img {
  max-height: 7rem;
  max-width: 21rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .about__card {
    border-radius: 1rem;
  }
}
.about__card .title-3 {
  line-height: 1.8rem;
  margin: 2rem;
}
@media only screen and (max-width: 75em) {
  .about__card {
    min-width: 20rem;
    max-width: 40rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__card {
    width: 80%;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: solid 0.1rem #223A5D;
    border-radius: 3rem;
  }
}

section {
  margin-top: 8rem;
}
@media only screen and (max-width: 56.25em) {
  section {
    margin-top: 0;
  }
}

.rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

@media only screen and (max-width: 56.25em) {
  .room {
    border-radius: 1rem;
  }
}
.room:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
  border-top-left-radius: 3rem;
  border-bottom: none;
  border: solid 0.1rem #223A5D;
  border-bottom: none;
}
@media only screen and (max-width: 56.25em) {
  .room:nth-child(1) {
    grid-column: 1/-1;
    border-radius: 1rem;
  }
}
.room--1 .room--content {
  padding: 2rem;
}
.room--1 .room--content .title-2 {
  line-height: 0;
}
.room--1 .room--content button {
  margin: 3rem 0;
  margin-bottom: 0;
}
.room--1 .room--img {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Room/Presidential-Suite/AKK_0104.jpg");
  background-position: center;
  background-size: cover;
  height: 30rem;
  border-top-left-radius: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .room--1 .room--img {
    grid-column: 1/-1;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .room--1 .room--img {
    border-radius: 1rem;
  }
}
.room--1 .room--details {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}
.room--1 .room--details span {
  display: flex;
  align-items: center;
  margin-right: 4rem;
  font-weight: bold;
  color: rgba(17, 29, 47, 0.5);
}
.room--1 .room--details span img {
  height: 100%;
  width: auto;
  margin-right: 0.8rem;
}
.room:not(:first-child) {
  display: flex;
  padding: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .room:not(:first-child) {
    grid-column: span 2;
    height: 18rem;
  }
}
.room:not(:first-child) .room--details {
  width: 100%;
  margin-top: auto;
  margin-bottom: 1rem;
  display: flex;
  color: #fff;
  justify-content: space-between;
}
.room:not(:first-child) .room--details h2 {
  position: relative;
}
.room:not(:first-child) .room--details h2::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  height: 100%;
  width: 0.5rem;
  background-color: #435775;
}
.room:nth-child(2) {
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Room/Standard-Double/Fotomania 66.jpg");
  background-size: cover;
}
.room:nth-child(3) {
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Room/Executive-Twin/AKK_9657.jpg");
  background-size: cover;
  border-top-right-radius: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .room:nth-child(3) {
    border-radius: 1rem;
  }
}
.room:nth-child(4) {
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Room/Studio/AKK_9039.jpg");
  background-size: cover;
}
.room:nth-child(5) {
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/Room/Apartment/AKK_8692-Pano.jpg");
  background-size: cover;
  border-bottom-right-radius: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .room:nth-child(5) {
    border-radius: 1rem;
  }
}

.contact {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .contact {
    flex-direction: column;
  }
}
.contact form {
  margin-right: 5rem;
}
.contact__list {
  margin: 2rem 0;
}
.contact__item {
  list-style: inside;
}

.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: 20rem;
}
@media only screen and (max-width: 56.25em) {
  .events {
    margin-top: 15rem;
  }
}
.events__item {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 56.25em) {
  .events__item {
    display: none;
  }
}
.events__item:nth-child(1) {
  grid-column: 1/2;
  width: 100%;
}
.events__item:nth-child(2) {
  grid-column: 2/3;
  width: 100%;
}
.events__item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 100%;
}
.events__item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
  width: 100%;
}
.events__item:nth-child(5) {
  grid-column: 3/-1;
  grid-row: 1/3;
  padding: 10rem 5rem;
  background-color: #111D2F;
  color: #fff;
}
.events__item:nth-child(5) p span {
  color: #435775;
}
@media only screen and (max-width: 56.25em) {
  .events__item:nth-child(5) p span {
    color: rgba(255, 255, 255, 0.5);
  }
}
@media only screen and (max-width: 56.25em) {
  .events__item:nth-child(5) {
    display: block;
    grid-column: 1/-1;
    background-image: linear-gradient(to right, rgba(67, 87, 117, 0.6), #435775), url("/img/IMG_4650.jpg");
    background-size: cover;
    background-position: center;
  }
}

.event__list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .event__list {
    flex-direction: column;
  }
}
.event__item {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .event__item {
    width: 100%;
  }
}

.restaurant {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90vw;
  margin: 30rem auto;
  margin-bottom: 15rem;
  margin-top: 15rem;
}
@media only screen and (max-width: 56.25em) {
  .restaurant {
    width: 100%;
  }
}
.restaurant__item {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.restaurant__item:first-of-type {
  border-top-left-radius: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:first-of-type {
    border-radius: 0;
  }
}
.restaurant__item:nth-of-type(2) {
  border-top-right-radius: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-of-type(2) {
    border-radius: 0;
  }
}
.restaurant__item:nth-child(2) {
  grid-row: 1/2;
  grid-column: 1/2;
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(2) {
    grid-row: 1/2;
    grid-column: 1/-1;
  }
}
.restaurant__item:nth-child(1) {
  padding: 0 5rem;
  grid-row: 1/2;
  grid-column: 2/3;
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(1) {
    grid-row: 4/5;
    grid-column: 1/-1;
    padding: 5rem;
  }
}
.restaurant__item:nth-child(4) {
  grid-row: 2/3;
  grid-column: 1/2;
  padding: 0 5rem;
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(4) {
    grid-column: 1/-1;
    padding: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(3) {
    margin-top: 5rem;
    grid-row: 5/6;
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(5) {
    grid-row: 3/4;
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 37.5em) {
  .restaurant__item:nth-child(6) {
    padding: 5rem;
    grid-row: 6/7;
    grid-column: 1/-1;
  }
}

.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 1.5rem;
}
.input + .input {
  margin-top: 1.5rem;
}

.form {
  width: 50%;
  margin-top: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .form {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.form__group {
  display: flex;
  justify-content: space-between;
}
.form__group .input {
  width: 45%;
}
.form textarea {
  min-height: 10rem;
}
.form button {
  margin-top: 3rem;
}

.input-label {
  color: #8597a3;
  position: absolute;
  top: 1.5rem;
  transition: 0.25s ease;
}

.input-field {
  border: 0;
  z-index: 1;
  background-color: transparent;
  border-bottom: 1px solid #435775;
  font: inherit;
  padding: 0.25rem 0;
  resize: none;
}
.input-field:focus, .input-field:valid {
  outline: 0;
  border-bottom-color: #6658d3;
}
.input-field:focus + .input-label, .input-field:valid + .input-label {
  color: #6658d3;
  transform: translateY(-1.5rem);
}

.footer {
  margin-top: 10rem;
  text-align: center;
}

.footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: #111D2F;
}
.footer .row img {
  width: 8rem;
}

.footer .row a {
  text-decoration: none;
  color: #111D2F;
  transition: 0.5s;
}

.footer .row a:hover {
  color: #fff;
}

.footer .row ul {
  width: 100%;
}

.footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
}

.footer .row a i {
  font-size: 2em;
  margin: 0% 1%;
}

.grid-rooms {
  display: none;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-rooms img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.grid-rooms a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-rooms a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
}
.grid-rooms .wide {
  grid-column: span 2;
}
.grid-rooms .tall {
  grid-row: span 2;
}
.grid-rooms .big {
  grid-column: span 2;
  grid-row: span 2;
}

.room__filter {
  display: flex;
  margin: 5rem 0;
  justify-content: flex-end;
}
.room__item {
  margin-right: 2rem;
  opacity: 0.8;
  cursor: pointer;
}
.room__item.active {
  opacity: 1;
  font-weight: bold;
  position: relative;
}
.room__item.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  width: 80%;
  background-color: rgba(34, 58, 93, 0.4);
}

.service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .service {
    grid-template-rows: auto;
  }
}
.service__item {
  background-color: #fff;
  border-radius: 1rem;
}
.service__item .title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .service__item .title {
    font-size: 2rem;
  }
}
.service__item .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  height: 1px;
  background-color: #111D2F;
  width: 20%;
}
.service__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
.service__item:last-child {
  position: relative;
}
.service__item:last-child p {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 1rem;
}

.reception {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  margin-top: 5rem;
  margin-bottom: 20rem;
}
@media only screen and (max-width: 56.25em) {
  .reception {
    margin-bottom: 2rem;
  }
}
.reception img {
  max-width: 25rem;
}
.reception__text {
  grid-column: 1/4;
}
@media only screen and (max-width: 56.25em) {
  .reception__text {
    grid-column: 1/-1;
  }
}
.reception__photos {
  grid-column: 4/6;
  align-self: center;
  justify-self: end;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .reception__photos {
    grid-column: 1/-1;
    grid-row: 2/3;
    align-self: unset;
    justify-self: unset;
    position: relative;
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
  }
}
.reception__photos img {
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .reception__photos img {
    position: unset;
  }
}
.reception__photos img:nth-child(1) {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .reception__photos img:nth-child(1) {
    top: 0;
    transform: scale(1.2);
    width: 20%;
  }
}
.reception__photos img:nth-child(2) {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .reception__photos img:nth-child(2) {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
    width: 20%;
  }
}
.reception__photos img:nth-child(3) {
  left: -117px;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .reception__photos img:nth-child(3) {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
    width: 20%;
  }
}
.reception__photos img:hover {
  transform: scale(1.55) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.6);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  width: 80%;
  height: 79vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* The Close Button */
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 0%;
  top: -7%;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Style for slider */
.slider-container {
  position: relative;
}

.slider {
  display: flex;
  overflow-x: scroll;
}

.slider img {
  width: 100%;
  height: 100%;
}

.slider-nav {
  position: absolute;
  top: 40%;
  transform: translateY(50%);
  display: flex;
  justify-content: space-between;
  width: 91%;
  left: 4%;
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
}

.slider-nav a {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}

.slider-nav a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.slider-nav .prev {
  margin-right: 10px;
}/*# sourceMappingURL=main.css.map */