/************ mixin ******************/
/************ mixin ******************/
/************* multi usable classes *****************/
body {
  font-family: "Barlow Condensed", Tahoma, Arial;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bellefair", Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  color: #fff;
}

.trans {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

/************* multi usable classes *****************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Barlow Condensed", sans-serif;
}

header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: fixed;
  background-position: 0 0;
  padding: 2rem;
}

.home {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .home {
    background-image: url("../../assets/home/background-home-desktop.jpg");
  }
}
@media screen and (max-width: 767px) {
  .home {
    background-image: url("../../assets/home/background-home-tablet.jpg");
  }
}
@media screen and (max-width: 400px) {
  .home {
    background-image: url("../../assets/home/background-home-mobile.jpg");
  }
}
.home picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home section {
  color: #fff;
  height: 95%;
  width: min(90%, 75rem);
  display: grid;
  grid-template-columns: 40% 50%;
  align-items: end;
  justify-items: end;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.home section .brief span {
  font-size: 1.75rem;
}
.home section .brief h1 {
  margin: 1.5rem 0;
  font-size: 9.375rem;
  text-transform: uppercase;
}
.home section .explore a {
  display: block;
  text-decoration: none;
  color: #0B0D17;
  text-transform: uppercase;
  background-color: rgb(255, 255, 255);
  width: 225px;
  height: 225px;
  text-align: center;
  line-height: 225px;
  border-radius: 50%;
  font-family: "Bellefair";
  font-size: 2rem;
  letter-spacing: 2px;
}
.home section .explore a:hover {
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}
.navbar {
  display: flex;
  justify-content: space-around;
}
.navbar .sm-screens {
  display: none;
  width: 27px;
  height: 21px;
  margin-top: 12px;
  z-index: 11;
  cursor: pointer;
}
.navbar .sm-screens.close-icon {
  width: 20px;
  height: 24px;
}
.navbar .sm-screens.icon-opened {
  display: block;
}

ul {
  list-style: none;
  font-size: 16px;
  line-height: 3;
  padding: 0px 33px;
  position: relative;
}
ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
ul li a {
  color: #D0D6F9;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 12;
  position: relative;
}
ul li a .num {
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}
ul li a .navTitle {
  letter-spacing: 2.7px;
}
ul li::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 2%;
  left: -6px;
  right: -4px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  background-color: #D0D6F9;
  -webkit-transition: -webkit- transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: -moz- transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: -ms- transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: -o- transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
ul li:hover::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
ul li.active {
  color: #fff;
}
ul li.active a {
  color: #fff;
}
ul li.active:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  background-color: #fff;
}
ul::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(81.5485px);
  -moz-backdrop-filter: blur(81.5485px);
  -ms-backdrop-filter: blur(81.5485px);
  -o-backdrop-filter: blur(81.5485px);
  backdrop-filter: blur(81.5485px);
}
ul::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(50%);
  width: 80%;
  height: 1px;
  background-color: #6c6c6c;
  left: -118%;
}

@media screen and (min-width: 768px) {
  .destination {
    background-image: url("../../assets/destination/background-destination-desktop.jpg");
  }
}
@media screen and (max-width: 767px) {
  .destination {
    background-image: url("../../assets/destination/background-destination-tablet.jpg");
  }
}
@media screen and (max-width: 400px) {
  .destination {
    background-image: url("../../assets/destination/background-destination-tablet.jpg");
  }
}
.destination h2 {
  margin-bottom: 3rem;
  font-size: 1.75rem;
  text-transform: uppercase;
  font-family: "Barlow Condensed";
  font-weight: 400;
  letter-spacing: 4.72px;
}
.destination h2 span {
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.destination section {
  width: min(90%, 75rem);
  margin: 0 auto;
  padding: 6rem 0px;
}
.destination .destinations-wrapper {
  color: #fff;
  height: 100%;
  display: grid;
  grid-template-columns: 45% 45%;
  align-items: center;
  justify-items: center;
  grid-gap: 10rem;
}
.destination .destinations-wrapper ul {
  padding-left: 0;
  margin-bottom: 2rem;
}
.destination .destinations-wrapper ul li {
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  color: #D0D6F9;
}
.destination .destinations-wrapper ul:after {
  visibility: hidden;
}
.destination .destinations-wrapper ul:before {
  visibility: hidden;
}
.destination .destinations-wrapper h1 {
  font-size: 9.375rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.destination .destinations-wrapper p {
  font-size: 18px;
  color: #D0D6F9;
  margin-bottom: 1rem;
}
.destination .destinations-wrapper .details {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-top: 20px;
  margin-top: 2rem;
  border-top: 1px solid #383B4B;
}
.destination .destinations-wrapper .details span {
  letter-spacing: 2.36px;
  font-size: 14px;
  color: #D0D6F9;
}
.destination .destinations-wrapper .details h4 {
  font-size: 1.75rem;
  margin-top: 10px;
  text-transform: uppercase;
}

.crew {
  min-height: 100vh;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .crew {
    background-image: url("../../assets/crew/background-crew-desktop.jpg");
  }
}
@media screen and (max-width: 767px) {
  .crew {
    background-image: url("../../assets/crew/background-crew-tablet.jpg");
  }
}
@media screen and (max-width: 400px) {
  .crew {
    background-image: url("../../assets/crew/background-crew-mobile.jpg");
  }
}
.crew h2 {
  margin-bottom: 0;
}
.crew section {
  padding-bottom: 0;
}
.crew .slider-wrapper {
  padding: 2rem 0 0;
  position: relative;
}
.crew .slider-wrapper .slide {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  align-items: center;
}
.crew .slider-wrapper .slide .member-info {
  width: 50%;
}
.crew .slider-wrapper .slide .member-info h4 {
  font-size: 2rem;
  text-transform: uppercase;
  color: rgb(155, 155, 155);
  font-family: "Bellefair";
}
.crew .slider-wrapper .slide .member-info h2 {
  font-size: 56px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Bellefair";
  margin: 0rem 0 3rem;
}
.crew .slider-wrapper .slide .member-info .about {
  color: #D0D6F9;
  font-size: 18px;
}
.crew .slider-wrapper .slide .member-img {
  width: 50%;
  text-align: right;
}
.crew .slider-wrapper .slide .member-img img {
  width: 70%;
  max-height: 440px;
  object-fit: scale-down;
}
.crew .slider-wrapper .dot-navs {
  position: absolute;
  bottom: 10%;
  left: 0;
}
.crew .slider-wrapper .dot-navs .dot {
  display: inline-block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #979797;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.crew .slider-wrapper .dot-navs .dot:hover {
  background-color: #b9b9b9;
}
.crew .slider-wrapper .dot-navs .dot.active {
  background-color: #fff;
  cursor: default;
}

@media screen and (min-width: 768px) {
  .technology {
    background-image: url("../../assets/technology/background-technology-desktop.jpg");
  }
}
@media screen and (max-width: 767px) {
  .technology {
    background-image: url("../../assets/technology/background-technology-tablet.jpg");
  }
}
@media screen and (max-width: 400px) {
  .technology {
    background-image: url("../../assets/technology/background-technology-mobile.jpg");
  }
}
.technology .tech-slider-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
.technology .tech-slider-wrapper .slide-num {
  padding: 1rem 2rem;
}
.technology .tech-slider-wrapper .slide-num span {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  margin: 1rem 0;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.technology .tech-slider-wrapper .slide-num span:hover {
  background-color: #fff;
  color: #000;
}
.technology .tech-slider-wrapper .slide-num span.active {
  background-color: #fff;
  color: #000;
}
.technology .tech-slider-wrapper .slide-description {
  width: 40%;
}
.technology .tech-slider-wrapper .slide-description span {
  font-size: 1.75rem;
  color: #D0D6F9;
}
.technology .tech-slider-wrapper .slide-description h2 {
  color: #fff;
  margin: 1.5rem 0;
  font-size: 3.625rem;
  text-transform: uppercase;
}
.technology .tech-slider-wrapper .slide-description p {
  color: #D0D6F9;
  font-size: 18px;
}
.technology .tech-slider-wrapper .slide-img {
  width: 40%;
}

@media (max-width: 768px) {
  section {
    width: auto;
    text-align: center;
  }
  section h2 {
    text-align: left;
  }

  .navbar {
    justify-content: space-between;
    flex-flow: row wrap;
  }

  .home section {
    grid-template-columns: 100%;
    align-items: center;
    justify-items: center;
  }
  .home section .brief {
    text-align: center;
  }

  ul::before {
    content: none;
  }

  .destination h2 {
    font-size: 16px;
  }

  .destination section {
    padding: 3rem 0;
  }

  .destination .destinations-wrapper {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
  .destination .destinations-wrapper ul {
    padding-left: 33px;
  }
  .destination .destinations-wrapper ul li {
    font-size: 20px;
  }
  .destination .destinations-wrapper h1 {
    font-size: 4rem;
  }
  .destination .destinations-wrapper p {
    line-height: 25px;
  }

  img {
    width: 70%;
  }

  .crew .slider-wrapper .slide {
    gap: 75px;
  }
  .crew .slider-wrapper .slide .member-info {
    order: 1;
  }
  .crew .slider-wrapper .slide .member-info h4 {
    font-size: 16px;
  }
  .crew .slider-wrapper .slide .member-info h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 2rem;
  }
  .crew .slider-wrapper .slide .member-info .about {
    line-height: 25px;
  }
  .crew .slider-wrapper .slide .member-info,
.crew .slider-wrapper .slide .member-img {
    width: 100%;
  }
  .crew .slider-wrapper .slide .member-img {
    text-align: center;
    order: 2;
  }
  .crew .slider-wrapper .slide .member-img img {
    width: 100%;
    max-height: 330px;
  }

  .crew .slider-wrapper .dot-navs {
    bottom: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .technology .tech-slider-wrapper {
    text-align: center;
    gap: 25px;
  }
  .technology .tech-slider-wrapper .slide-description,
.technology .tech-slider-wrapper .slide-img {
    width: 100%;
  }
  .technology .tech-slider-wrapper .slide-img {
    order: 1;
  }
  .technology .tech-slider-wrapper .slide-description {
    order: 3;
  }
  .technology .tech-slider-wrapper .slide-description h2 {
    text-align: center;
  }
  .technology .tech-slider-wrapper .slide-num {
    order: 2;
  }
  .technology .tech-slider-wrapper .slide-num span {
    display: inline-block;
    margin-right: 15px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  header {
    overflow: hidden;
    position: relative;
  }

  .navbar {
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .navbar .hamburger-icon {
    display: block;
  }
  .navbar ul {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 65%;
    padding-top: 5rem;
    z-index: 10;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .navbar ul li::after {
    content: none;
  }
  .navbar ul::before {
    content: none;
  }
  .navbar ul.opened {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  section {
    width: auto;
    text-align: center;
  }

  .home section {
    width: auto;
    text-align: center;
    grid-template-columns: 100%;
    justify-items: center;
  }
  .home section .brief p {
    font-size: 16px;
    letter-spacing: 2.7px;
  }
  .home section .brief h1 {
    font-size: 80px;
  }
  .home section .explore a {
    width: 150px;
    height: 150px;
    line-height: 150px;
    font-size: 20px;
    letter-spacing: 1.2px;
  }

  .destination h2 {
    font-size: 16px;
  }

  .destination section {
    padding: 3rem 0;
  }

  .destination .destinations-wrapper {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
  .destination .destinations-wrapper ul {
    padding-left: 33px;
  }
  .destination .destinations-wrapper ul li {
    font-size: 16px;
  }
  .destination .destinations-wrapper h1 {
    font-size: 3.5rem;
  }
  .destination .destinations-wrapper p {
    line-height: 25px;
  }
  .destination .destinations-wrapper .details {
    grid-template-columns: 100%;
  }

  img {
    width: 70%;
  }

  .distance {
    margin-bottom: 20px;
  }

  .crew .slider-wrapper .slide {
    gap: 75px;
  }
  .crew .slider-wrapper .slide .member-info {
    order: 2;
  }
  .crew .slider-wrapper .slide .member-info h4 {
    font-size: 16px;
  }
  .crew .slider-wrapper .slide .member-info h2 {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .crew .slider-wrapper .slide .member-info .about {
    line-height: 25px;
  }
  .crew .slider-wrapper .slide .member-info,
.crew .slider-wrapper .slide .member-img {
    width: 100%;
  }
  .crew .slider-wrapper .slide .member-img {
    text-align: center;
    order: 1;
  }
  .crew .slider-wrapper .slide .member-img img {
    width: 100%;
    max-height: 330px;
  }

  .crew .slider-wrapper .dot-navs {
    bottom: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .technology .tech-slider-wrapper {
    text-align: center;
    gap: 25px;
  }
  .technology .tech-slider-wrapper .slide-description,
.technology .tech-slider-wrapper .slide-img {
    width: 100%;
  }
  .technology .tech-slider-wrapper .slide-img {
    order: 1;
  }
  .technology .tech-slider-wrapper .slide-img img {
    width: 100%;
  }
  .technology .tech-slider-wrapper .slide-description {
    order: 3;
  }
  .technology .tech-slider-wrapper .slide-description span {
    font-size: 14px;
  }
  .technology .tech-slider-wrapper .slide-description h2 {
    font-size: 24px;
    text-align: center;
  }
  .technology .tech-slider-wrapper .slide-num {
    order: 2;
  }
  .technology .tech-slider-wrapper .slide-num span {
    display: inline-block;
    margin-right: 15px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }
}

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