body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

/*Entrannce animations*/

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


@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

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


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

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

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

/*----*/

.main-section {
  background: url("images/background3.jpg");
  min-height: 100vh;
  height: auto;
  width: 100%;
  background-size: cover;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 2% 4% 2% 4%;
}
.logo-section {
  display: flex;
}

.sea-magic-logo-wrapper {
  background-color: #fff;
  margin-left: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
  width: 10vh;
  border-radius: 100px;
}
#sea-magic-logo {
  max-height: 7vh;
  width: auto;
  margin-top: 0.5vh;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

#tanjga-logo {
  width: 20vh;
  height: 10vh;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

.social-media-section img {
  height: 3.7vh;
  margin: 0 1.5vh;
  transition: 0.5s;
}

.social-media-section img:hover {
  rotate: 5deg;
  transition: 0.5s;
}

.two-sections {
  display: flex;
  padding: 0 5vw;
}

.left-section {
  width: 50%;
  padding: 5vw 0 0 0;
  color: #fff;
}

.left-section h5 {
  font-size: 2.5vh;
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

.left-section h3 {
  font-size: 8.6vh;
  font-weight: 300;
  margin: 1.6vh 0;
}

.left-section h2 {
  font-size: 8.6vh;
  font-weight: 600;
  margin: 0;
}

.left-section p {
  font-size: 3.3vh;
  font-family: "Varta";
  margin: 6.1vh 0;
  font-weight: 300;
  width: 70%;
}

.book-now {
  display: flex;
  align-items: center;
}

.book-now img {
  width: 7vh;
  margin-left: 1.6vh;
}

#book-now-btn {
  font-size: 3.3vh;
  font-weight: bold;
  transition: 0.3s;
}

#book-now-btn:hover {
  opacity: 0.8;
  transition: 0.3s;
  font-weight: 500;
}

.book-now a {
  text-decoration: none;
  color: #fff;
}

.left-section hr {
  width: 25%;
  margin-left: 0;
  margin-bottom: 0;
  height: 1px;
  background-color: #fff;
}

.right-section {
  width: 50%;
  padding: 3% 0 0 0;
}

.right-section p {
  color: #fff;
  font-family: "Varta";
  font-size: 2.6vh;
  font-weight: 500;
  width: 85%;
}

.swiper-slide img {
  max-height: 36vh;
  max-width: 45.6vh;
  transition: 0.3s;
  cursor: pointer;
}

.swiper-slide img:hover {
  filter: grayscale(100%);
  transition: 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  border-radius: 50px;
  width: 34px !important;
  height: 25px !important;
  padding: 1.8vh 1.3vh;
  border: 2px solid #fff;
  top: 30px !important;
  margin-bottom: 25px !important;
}

.swiper-wrapper {
  padding-top: 95px;
}

.swiper-button-prev {
  content: url("/images/arrow-toleft.png");
  left: 0 !important;
}

.swiper-button-next {
  content: url("/images/arrow-toright.png");
  left: 11vh !important;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0; 
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.404);
  align-items: center;
  justify-content: center;
}

.popup-wrapper {
  display: none;
  width: 65%;
  height: 75vh;
}

.left-popup {
  width: 50%;
  background: url("images/popup-bg.jpg");
  background-size: cover;
}

.right-popup {
  width: 50%;
  background-color: #fff;
}

.right-popup h2 {
  font-size: 6.6vh;
  text-align: center;
  font-weight: 300;
}
.popup-contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-contact-icon img {
  max-height: 50px;
  margin: 0 10px;
}

.popup-contact-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -3vh;
}

.popup-contact-text img {
  max-height: 2.6vh;
  margin-right: 15px;
}

.popup-contact-text a {
  text-decoration: none;
  color: #000;
}

.popup-contact-text h4 {
  font-size: 3.5vh;
  font-family: "Varta";
  font-weight: 300;
  letter-spacing: 4px;
}

.popup-social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-social-media img {
  max-height: 3.7vh;
  margin: 55px 15px 0 15px;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

/*Mobile responsive*/

@media only screen and (max-width: 768px) {
  .main-section {
    background: url("images/background2.jpg");
    min-height: 100vh;
    height: auto;
    width: auto;
    background-size: cover;
  }

  header {
    display: flex;
    justify-content: space-between;
    padding: 2% 4% 2% 4%;
  }

  .social-media-section {
    display: none;
  }

  .logo-section {
    justify-content: space-between;
    width: 100%;
  }

  .sea-magic-logo-wrapper {
    background-color: #fff;
    height: 11vh;
    width: 11vh;
    border-radius: 120px;
  }
  #sea-magic-logo {
    max-height: 7vh;

    margin-top: 1.5vh;
  }

  .two-sections {
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .left-section {
    width: 100%;
    padding: 5vw 0 0 0;
    color: #fff;
  }

  .left-section h5 {
    font-size: 2vh;
    font-weight: 300;
    font-style: italic;
    margin-top: 4vh;
    text-align: center;
  }

  .left-section h3 {
    font-size: 5vh;
    font-weight: 300;
    margin: 1.6vh 0;
    text-align: center;
  }

  .left-section h2 {
    font-size: 5vh;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  .left-section p {
    font-size: 2vh;
    font-family: "Varta";
    margin: 3vh 0;
    font-weight: 300;
    width: 100%;
    text-align: center;
  }

  .book-now {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .book-now img {
    width: 7vh;
    margin-left: 1.6vh;
  }

  #book-now-btn {
    font-size: 3.3vh;
    font-weight: bold;
  }

  .book-now a {
    text-decoration: none;
    color: #fff;
  }

  .left-section hr {
    width: 35%;
    margin-left: 15%;
    margin-bottom: 0;
    height: 1px;
    background-color: #fff;
  }

  .right-section {
    width: 100%;
    padding: 3% 0 0 0;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .right-section p {
    color: #fff;
    font-family: "Varta";
    font-size: 2vh;
    font-weight: 500;
    width: 100%;
  }

  .swiper-slide img {
    max-height: 50vh;
    max-width: 100%;
    transition: 0.3s;
    cursor: pointer;
  }

  .swiper-slide img:hover {
    filter: grayscale(100%);
    transition: 0.3s;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #fff !important;
    border-radius: 50px;
    width: 25px !important;
    height: 15px !important;
    padding: 1.5vh 1vh;
    border: 2px solid #fff;
    top: 30px !important;
    margin-bottom: 0px !important;
  }

  .swiper-wrapper {
    padding-top: 75px;
  }

  .swiper-button-prev {
    content: url("/images/arrow-toleft.png");
    left: 0 !important;
  }

  .swiper-button-next {
    content: url("/images/arrow-toright.png");
    left: 8vh !important;
  }

  .popup-wrapper {
    display: none;
    width: 85%;
    flex-direction: column;
    height: auto;
  }

  .left-popup {
    width: 100%;
    background: url("images/popup-bg.jpg");
    background-size: cover;
    background-position: center;
    height: 20vh;
  }

  .right-popup {
    width: 100%;
    background-color: #fff;
  }

  .right-popup h2 {
    font-size: 3.6vh;
    text-align: center;
    font-weight: 300;
  }
  .popup-contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .popup-contact-icon img {
    max-height: 25px;
    margin: 0 10px;
  }

  .popup-contact-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -3vh;
  }

  .popup-contact-text img {
    max-height: 1.6vh;
    margin-right: 15px;
  }

  .popup-contact-text h4 {
    font-size: 2.5vh;
    font-family: "Varta";
    font-weight: 300;
  }

  .popup-social-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .popup-social-media img {
    max-height: 2.7vh;
    margin: 35px 15px 20px 15px;
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
  }
}
