/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss ***!
  \************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Raleway:wght@400;500;600;700&display=swap);
/*!****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss (1) ***!
  \****************************************************************************************************************************************************************************************/
:root {
  --header-height: 3rem;
  /* =========== colors =========== */
  --hue-color: 190;
  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);
  /* ========== Font & Typography ========== */
  --body-font: "Open Sans", sans-serif;
  --title-font: "Raleway", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /* Font Weight */
  --font-medium: 500;
  --font-semi-bold: 600;
  /* ============ Margin ============ */
  --m-0-25: 0.25rem;
  --m-0-5: 0.5rem;
  --m-0-75: 0.75rem;
  --m-1: 1rem;
  --m-1-25: 1.25rem;
  --m-1-5: 1.5rem;
  --m-2: 2rem;
  --m-2-5: 2.5rem;
  /* ========== Z Index ========== */
  --z-tooltip: 10;
  --z-fixed: 100;
  /* Hover Overlay */
  --img-transition: 0.3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1); }

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem; } }

/* ========== Variable Dark Theme ========== */
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%); }

/* ============= BASE ============= */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color); }

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font); }

ul {
  list-style: none; }

a {
  text-decoration: none; }

img,
video {
  max-width: 100%;
  height: auto; }

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: none; }

button {
  cursor: pointer; }

.main {
  overflow-x: hidden; }

/* ======== REUSABLE CSS CLASSES ======== */
.section {
  padding: 4.5rem 0 2.5rem; }

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--m-2); }

.container {
  max-width: 968px;
  margin-left: var(--m-1);
  margin-right: var(--m-1); }

.grid {
  display: grid;
  gap: 1.5rem; }

/* MIXIN */
/* =========== BUTTON =========== */
.button {
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: 0.4s; }
  .button:hover {
    background-color: var(--first-color-alt); }

.button__flex {
  display: flex;
  row-gap: 1rem;
  padding: 0;
  background-color: transparent; }
  .button__flex:hover {
    background-color: transparent; }

/* =========== HEADER =========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: transparent; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height); }
  .nav__logo {
    font-weight: var(--font-semi-bold);
    color: var(--white-color); }
  .nav__menu {
    position: relative;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 767px) {
      .nav__menu {
        position: fixed;
        width: 70%;
        right: -100%;
        top: 0;
        height: 100%;
        background-color: var(--body-color);
        box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
        transition: 0.4s; } }
  .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    padding: var(--m-2-5); }
  .nav__link {
    font-weight: var(--font-semi-bold);
    color: var(--text-color-light);
    text-transform: uppercase; }
  .nav__dark {
    padding: var(--m-2-5);
    display: flex;
    position: absolute;
    bottom: 2rem;
    -moz-column-gap: var(--m-1);
         column-gap: var(--m-1);
    color: var(--text-color-light);
    align-items: center; }
    .nav__dark-icon {
      font-size: 1.2rem; }
  .nav__close {
    position: absolute;
    right: var(--m-1);
    top: var(--m-0-75);
    font-size: 1.5rem; }
  .nav__toggle {
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    color: var(--white-color); }

.active {
  position: relative;
  color: var(--title-color); }

.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--title-color);
  bottom: -0.75rem; }

.show__menu {
  right: 0; }

/* =========== CHANGE header COLOR =========== */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.31); }
  .scroll-header .nav__logo, .scroll-header .nav__toggle {
    color: var(--title-color); }

/* =========== HOME =========== */
.homeBg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 87%;
     object-position: 87%;
  width: 100%;
  height: 640px;
  z-index: -1; }

.home__container {
  height: 640px;
  position: relative;
  color: var(--white-color); }

.home__data {
  margin-top: 6.3rem; }
  .home__data-subtitle {
    font-weight: var(--font-semi-bold); }
  .home__data-title {
    color: var(--white-color);
    font-size: var(--biggest-font-size);
    margin: 0.7rem 0 3.5rem;
    font-weight: var(--font-medium); }

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin-top: -4rem; }
  .home__social-link {
    color: var(--white-color);
    font-size: 1.2rem;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; }

.home__info {
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 235px;
  height: auto;
  display: flex;
  background-color: var(--first-color);
  padding: 1.5rem 1rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  align-items: center; }
  .home__info-title {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size); }
  .home__info-overlay {
    width: 150px;
    overflow: var(--img-hidden); }
    .home__info-overlay img {
      transition: all var(--img-transition); }
      .home__info-overlay img:hover {
        transform: var(--img-scale); }
  .home__info-btn {
    font-size: 0.8rem; }
    .home__info-btn:hover .home__info-icon {
      transform: translateX(0.5rem); }
  .home__info-icon {
    margin-left: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.4s; }

/* =========== ABOUT =========== */
.about__container {
  align-items: center; }

.about__data {
  text-align: center; }

.about__btn {
  display: inline-block;
  margin: 2rem 0 1rem; }

.about__img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem; }
  .about__img-overlay {
    overflow: var(--img-hidden); }
  .about__img-one {
    width: 130px;
    transition: var(--img-transition); }
    .about__img-one:hover {
      transform: var(--img-scale); }
  .about__img-two {
    width: 180px;
    transition: var(--img-transition); }
    .about__img-two:hover {
      transform: var(--img-scale); }

/* =========== DISCOVER =========== */
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden); }

.discover__data {
  position: absolute;
  bottom: 1rem;
  left: 1rem; }

.discover__title {
  color: var(--white-color);
  font-size: var(--h3-font-size); }

.discover__description {
  color: var(--white-color);
  font-size: var(--smaller-font-size); }

.discover__img {
  transition: var(--img-transition); }
  .discover__img:hover {
    transform: var(--img-scale); }

/* =========== EXPERIENCE =========== */
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center; }

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  justify-items: center; }

.experience__data-num {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--m-0-5); }

.experience__data-description {
  font-size: var(--small-font-size); }

.experience__img {
  position: relative; }
  .experience__img-overlay:nth-child(1) {
    width: 265px;
    margin-right: 2rem;
    overflow: var(--img-hidden); }
  .experience__img-overlay:nth-child(2) {
    width: 120px;
    position: absolute;
    right: 0;
    top: 2rem;
    overflow: var(--img-hidden); }
  .experience__img img {
    transition: var(--img-transition); }
    .experience__img img:hover {
      transform: var(--img-scale); }

/* =========== EXPERIENCE =========== */
.video__container {
  justify-content: center; }
  @media screen and (min-width: 568px) {
    .video__container {
      grid-template-columns: .6fr; } }

.video__description {
  text-align: center;
  margin-bottom: var(--m-1-25); }

.video__content {
  position: relative; }

.video__btn {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  padding: .5rem 1.5rem; }
  .video__btn-icon {
    font-size: 1.5rem; }

/* =========== PLACE =========== */
.place__container {
  grid-template-columns: repeat(3, -webkit-max-content);
  grid-template-columns: repeat(3, max-content);
  justify-content: center; }
  @media screen and (max-width: 568px) {
    .place__container {
      grid-template-columns: repeat(2, -webkit-max-content);
      grid-template-columns: repeat(2, max-content); } }

.place__card, .place__img {
  height: 230px; }

.place__card {
  position: relative;
  overflow: var(--img-hidden); }
  .place__card:hover .place__img {
    transform: var(--img-scale); }

.place__img {
  transition: var(--img-transition); }

.place__content {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--white-color);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1.2rem; }

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
  -moz-column-gap: .3rem;
       column-gap: .3rem; }

.place__data {
  display: flex;
  flex-direction: column; }
  .place__data-title {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    margin-bottom: var(--m-0-25); }
  .place__data-subtitle {
    font-size: var(--smaller-font-size);
    margin-bottom: var(--m-1-5); }

.place__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: .2rem .75rem; }
  .place__btn-icon {
    font-size: 1.5rem; }

/* =========== SUBSCRIBE =========== */
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0; }

.subscribe__title, .subscribe__description {
  color: var(--white-color);
  text-align: center; }

.subscribe__description {
  margin-bottom: var(--m-2-5); }

.subscribe__form {
  background-color: var(--input-color);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  width: 470px;
  margin: 0 auto; }
  @media screen and (max-width: 568px) {
    .subscribe__form {
      width: 100%; } }

.subscribe__input {
  color: var(--text-color);
  background-color: var(--input-color);
  width: 65%;
  margin-left: .2rem;
  width: 55%; }

/* =========== SPONSORS =========== */
.sponsors__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem; }

.sponsors__content:hover .sponsors__img {
  filter: invert(0.5); }

.sponsors__img {
  width: 90px;
  transition: var(--img-transition);
  filter: invert(0.7); }

/* =========== Footer =========== */
.footer__container {
  row-gap: 5rem; }

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem; }

.footer__title {
  margin-bottom: var(--m-0-5);
  font-size: var(--h3-font-size); }

.footer__subtitle {
  margin-bottom: var(--m-1);
  font-size: var(--h3-font-size); }

.footer__description {
  margin-bottom: var(--m-1-5); }

.footer__item {
  margin-bottom: var(--m-0-75); }

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

.footer__social {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem; }
  .footer__social-link {
    color: var(--title-color);
    font-size: 1.25rem; }

.footer__right {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center; }

.footer__copy, .footer__terms-link {
  color: var(--text-color-light);
  font-size: var(--small-font-size); }

.footer__terms {
  display: flex;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  justify-content: center; }
  .footer__terms-link {
    transition: var(--img-transition); }
    .footer__terms-link:hover {
      color: var(--text-color); }

/* =========== SCROLL up =========== */
.scroll__up {
  padding: 0;
  position: fixed;
  right: 1rem;
  bottom: -20%;
  z-index: var(--z-tooltip);
  transition: var(--img-transition); }
  .scroll__up-icon {
    line-height: 2.3rem;
    font-size: 2rem; }

.show-scrollup {
  bottom: 4.5rem; }

/* =========== CUSTOM SCROLL BAR =========== */
::-webkit-scrollbar {
  width: 10px;
  background-color: var(--scroll-bar-color);
  border-radius: .6rem; }

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .6rem; }
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-color-light); }

/* =========== MEDIA QUERY =========== */
@media screen and (max-width: 340px) {
  .home__data-title {
    font-size: 2.1rem; }
  .home__info {
    width: 200px;
    padding: 1rem; }
    .home__info-overlay {
      width: 140px; }
  .experience__img-overlay:nth-child(1) {
    width: 190px; }
  .experience__img-overlay:nth-child(2) {
    width: 80px; }
  .video__btn {
    padding: .4rem .9rem;
    bottom: -.6rem; }
    .video__btn-icon {
      font-size: initial; }
  .experience__content {
    -moz-column-gap: 1rem;
         column-gap: 1rem; }
  .place__container {
    grid-template-columns: repeat(1, -webkit-max-content);
    grid-template-columns: repeat(1, max-content); }
  .subscribe__form {
    padding: 0.2rem; }
  .subscribe__btn {
    padding: .5rem; }
  .show-scrollup {
    bottom: 3rem; } }

@media screen and (min-width: 768px) {
  .section {
    padding: 7rem 0 2rem; }
  .nav {
    height: calc(var(--header-height) + 1.5rem); }
    .nav__menu {
      display: flex;
      flex-direction: row;
      height: initial; }
    .nav__list {
      flex-direction: row;
      -moz-column-gap: 3.7rem;
           column-gap: 3.7rem;
      padding: initial; }
    .nav__link {
      color: var(--white-color);
      text-transform: capitalize; }
    .nav__toggle, .nav__close {
      display: none; }
    .nav__dark {
      position: initial;
      display: flex;
      align-items: center;
      padding: initial;
      color: var(--white-color);
      margin-left: var(--m-1); }
      .nav__dark-text {
        display: none; }
  .active::before {
    background-color: var(--white-color); }
  /* =========== CHANGE COLOR =========== */
  .scroll-header {
    background-color: var(--body-color); }
    .scroll-header .nav__dark {
      color: var(--title-color); }
    .scroll-header .nav__link {
      color: var(--text-color); }
    .scroll-header .active {
      color: var(--title-color); }
    .scroll-header .active::before {
      background-color: var(--title-color); }
  .home__data {
    margin-top: 12.3rem; }
  .home__social {
    flex-direction: row;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
    margin-top: 3rem; }
  .home__info {
    bottom: 3rem;
    padding: 1.2rem 1rem; }
    .home__info-title {
      font-family: var(--smaller-font-size); }
    .home__info-overlay {
      width: 172px; }
  .about .section__title {
    text-align: initial; }
  .about__container {
    grid-template-columns: repeat(2, 1fr); }
  .about__data {
    text-align: left; }
  .discover__container {
    width: 610px;
    margin: 0 auto; }
  .experience__img-overlay:nth-child(1) {
    width: 365px;
    margin-right: 4rem; }
  .experience__img-overlay:nth-child(2) {
    width: 160px; }
  .place__container {
    padding-top: 2rem; }
  .subscribe__bg {
    background-color: transparent;
    padding: 0; }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0; }
  .footer__right {
    flex-direction: row;
    justify-content: space-evenly; } }

@media screen and (min-width: 968px) {
  .home__data {
    margin-top: 6.9rem; } }

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto; }
  .home__info {
    width: 328px;
    padding: 1.5rem 1rem; }
    .home__info__title {
      font-size: initial; }
  .about__img-one {
    width: 230px; }
  .about__img-two {
    width: 290px; }
  .experience__img-overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem; }
  .experience__img-overlay:nth-child(2) {
    width: 220px;
    top: 3rem; }
  .discover__container {
    width: 700px; }
  .discover__card {
    width: 237px; }
  .place__container {
    gap: 3rem 2rem; }
  .place__card, .place__img {
    height: 262px; }
  .video__container {
    grid-template-columns: .7fr; }
  .video__description {
    padding: 0 7rem; }
  .sponsors__img {
    width: 125px; }
  .footer__content {
    justify-items: center; } }

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px; } }


/*# sourceMappingURL=index-bundle.css.map*/