/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Raleway", serif;
}

.page-section {
  padding: 6rem 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-section {
    padding: 4.5rem 0;
  }
}

/* navigation */

.navbar {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.navbar .navbar-brand {
  font-weight: 700;
  color: #212529;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #6c757d;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  cursor: pointer;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #f4623a;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #f4623a !important;
}

@media (min-width: 992px) {
  .navbar {
    box-shadow: none;
    background-color: transparent;
    padding-top: 3rem;
    padding-bottom: 3rem;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .navbar.navbar-shrink {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-shadow: none;
    background-color: #ffd700;
    background-color: rgba(245, 245, 245, .95);
  }

  .navbar .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar .navbar-brand:hover {
    color: #fff;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    color: #fff;
    padding: 0;
    margin: 0 1.25rem;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #ffd700;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: #000;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #000;
  }

  .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0;
  }

  .navbar .navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: transparent;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    background-color: #ffd700;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover:before {
    background-color: #000;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta {
    padding: .5rem 2rem;
    padding-top: .55rem;
    padding-bottom: .45rem;
    margin-right: 0;
    color: #000;
    text-transform: uppercase;
    font-size: .95rem;
    font-weight: 700;
    background-color: #ffd700;
    border-radius: 25px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta:before {
    display: none;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta:hover {
    color: #000;
    background-color: #E6C200;
  }

  .navbar .navbar-nav .nav-item:first-child .nav-link-cta i {
    margin-right: .75rem;
  }

  .navbar.navbar-shrink .navbar-brand {
    color: #212529;
  }

  .navbar.navbar-shrink .navbar-brand:hover {
    color: #f4623a;
  }
}

/* cover */

header {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 7rem;
  background: url('../images/cover5.jpg');
  background-size: 100%;
  background-position-x: 100%;
  background-position-y: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

header h1 {
  font-family: "EB Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  text-transform: uppercase;
}

header h1 span {
  color: #ffd700;
  font-size: 4rem;
  font-weight: 600;
}

header p {
  width: 80%;
  margin-top: 1.5rem;
  font-family: "EB Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
}

header .icons-stars {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

header .icons-stars i {
  color: #ffd700;
  font-size: 1.6rem;
}

header .video-container {
  position: absolute;
  top: -3rem;
  top: 3rem;
  top: 6rem;
  left: calc(50% - 65px);
  height: calc(100% + 8rem);
  height: calc(100% + 1.5rem);
  height: 90%;
}

header video {
  position: relative;
  object-fit: cover;
  height: 100%;
  border: 3px solid #eee;
  border-radius: 40px;
}

.video-button {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 3rem;
  padding: 10px;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #ffd700;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.video-button:hover {
  background-color: #E6C200;
}

.video-button i {
  margin-right: .75rem;
}

/* experiences */

.experiences-section h2 {
  color: #000;
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
}

.experiences-section button {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #000;
  background-color: #ffd700;
  border: 0;
  border-radius: 50%;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.experiences-section button:hover {
  color: #000;
  background-color: #E6C200;
}

.experiences-section button:last-child {
  margin-left: .5rem;
}

.experiences-section .horizontal-line {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
}

.experiences-section .horizontal-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 4px;
  border-radius: 10px;
  background-color: #000;
}

.individual-experience {
  position: relative;
  height: 350px;
  width: 100%;
  background-size: 105%;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-experience:hover {
  background-size: 110%;
}

.individual-experience h3 {
  position: absolute;
  top: calc(50% - 20px);
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: italic;
}

/* vlog episodes */

.vlog-episodes {
  background-color: #ffd700;
}

.vlog-episodes h2 {
  color: #000;
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
}

.vlog-episodes h3 {
  position: absolute;
  top: calc(50% - 35px);
  width: calc(100% - 3rem);
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 30px;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: italic;
}

.vlog-episodes h3 span {
  font-size: 20px;
}

.vlog-episodes button {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #000;
  background-color: #ffd700;
  border: 0;
  border-radius: 50%;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.vlog-episodes button:hover {
  color: #000;
  background-color: #E6C200;
}

.vlog-episodes button:last-child {
  margin-left: .5rem;
}

.vlog-episodes .horizontal-line {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #ddd;
  border-radius: 10px;
}

.vlog-episodes .horizontal-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 4px;
  border-radius: 10px;
  background-color: #000;
}

.vlog-episodes .video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  cursor: pointer;
}

.vlog-episodes video {
  position: relative;
  object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  header p {
    width: 90%;
  }

  /*
  header .video-container {
    top: -4.5rem;
  }
  */

  .individual-experience {
    height: 290px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-for-lg {
    display: none !important;
  }

  header {
    background-size: 140%;
  }

  header h1 {
    line-height: 3rem;
  }

  header h1 span {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 3.5rem;
  }

  header .video-container {
    top: -3.75rem;
    height: 100%;
  }

  .experiences-section h2 {
    font-size: 2.5rem;
  }

  .individual-experience {
    height: 330px;
  }
}1
















/* */
