@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,300;0,400;0,500;1,400&display=swap");

/* Swatches in Hex */
:root {
  --voyage-1-hex: #5679a6;
  --voyage-2-hex: #96c6d9;
  --voyage-3-hex: #d9d15f;
  --voyage-4-hex: #d9c7b8;
  --voyage-5-hex: #a68776;
  --voyage-1-rgba: rgba(86, 120, 165, 1);
  --voyage-2-rgba: rgba(149, 197, 216, 1);
  --voyage-3-rgba: rgba(216, 208, 95, 1);
  --voyage-4-rgba: rgba(216, 199, 184, 1);
  --voyage-5-rgba: rgba(165, 135, 117, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* overflow-x: hidden; */
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: (var(--voyage-4-hex));
}

::-webkit-scrollbar-thumb {
  background-color: var(--voyage-1-hex);
  border-radius: 1px;
}

.loader {
  background: #000;
  background: linear-gradient(45deg, var(--voyage-1-hex), var(--voyage-2-hex));
  backdrop-filter: blur(100px);
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
  transition: 1s ease all;
}

.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap {
  animation: spin 1200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: #fff;
  height: 70px;
  width: 70px;
  top: 7px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

nav {
  position: absolute;
  width: 80%;
  left: 10%;
  z-index: 99;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--voyage-1-hex);
  border-bottom: 2px solid #384f3d;
  transition: 0.5s all ease-in-out;
}

nav.active {
  position: fixed;
  width: 90%;
  left: 5%;
  z-index: 99;
  top: 0;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--voyage-1-hex);
  border-bottom: 2px solid #384f3d;
  transition: 0.5s all ease-in-out;
  background-color: #ffffff5b;
  backdrop-filter: blur(20px);
  padding: 0 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 5px 5px 24px 1px rgba(86, 120, 165, 0.03);
  box-shadow: 5px 5px 24px 1px rgba(86, 120, 165, 0.79);
}

.brand-logo {
  max-width: 320px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.brand-logo img {
  width: 30px;
}

.links {
  width: 600px;
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  list-style: none;
  transition: 0.5s all ease-in-out;
}

.links a {
  color: var(--voyage-1-hex);
  text-decoration: none;
}

.link {
  transition: 0.3s all ease;
  cursor: pointer;
}

.link a:hover {
  color: var(--voyage-3-hex);
}

.hamburger div {
  width: 30px;
  height: 4px;
  background-color: var(--voyage-1-hex);
  margin-bottom: 4px;
  border-radius: 5px;
  transition: 0.5s all ease;
}

.hamburger {
  display: none;
  cursor: pointer;
  transition: 0.5s all ease;
}

.hamburger.is-active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active div:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 986px) {
  .hamburger {
    display: block;
  }

  .links {
    position: absolute;
    top: -1000px;
    background-color: rgba(255, 255, 255, 0.911);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 450px;
    font-size: 1.5em;
    padding-top: 80px;
    flex-direction: column;
    left: 0;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    z-index: -1;
    -webkit-box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.562);
    box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.575);
  }

  .navLinkButton {
    width: 80%;
  }

  .links.active {
    top: 0;
  }
}

.navLinkButton {
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216) 0% rgba(86, 120, 165) 100%
  );
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.5rem;
  border-radius: 10px;
  border: none;
}

.headerContainer {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: color;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.headerWrapper {
  height: 100vh;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 1) 100%
  );
  position: absolute;
}

.content {
  position: absolute;
  bottom: 150px;
  left: 10%;
}

.title {
  color: #ffffff;
  font-size: 1.7rem;
  text-shadow: #1b1b1b 0.1em 0.1em 0.2em;
}

.otherDetails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  color: #ffffff;
  text-shadow: #1b1b1b 0.1em 0.1em 0.2em;
}

.otherDetails p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.1rem;
}

.otherDetails p span {
  margin-right: 10px;
}
.readTime img {
  width: 25px;
}

.scrollButton {
  position: absolute;
  bottom: 50px;
  left: 50%;
  animation: scrollButton 2s infinite;
}

@keyframes scrollButton {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.blog {
  width: 90%;
  margin: 100px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.blogWrapper {
  width: 70%;
}

.para {
  margin-bottom: 50px;
  color: #142361;
  font-size: 1.2rem;
}

.para.one {
  font-weight: 500;
  font-size: 1.3rem;
}

.imageContainer {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px;
  background: #142361;
  -webkit-box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.562);
  box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.575);
  border-radius: 10px;
  color: #c1d0f1;
  margin-bottom: 50px;
}

.imageContainer img {
  width: 400px;
  border-radius: 10px;
  object-fit: cover;
}

.imgDescription {
  margin-left: 30px;
}

.imageDescription {
  margin-bottom: 30px;
}

.imageTitle {
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.imgQuote {
  color: #eb9431;
  margin-bottom: 20px;
}

.imgQuote.two {
  text-align: end;
}

.para h2 {
  color: #142361;
}

hr {
  margin-bottom: 20px;
}

.para p {
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 30px;
}

.buttons a {
  text-decoration: none;
  display: block;
  margin-left: auto;
}

.viewButton {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: var(--voyage-1-hex);
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216, 1) 0%,
    rgba(86, 120, 165, 1) 50%,
    rgba(149, 197, 216, 1) 50%,
    rgba(86, 120, 165, 1) 100%
  );
  background-size: 200%;
  background-position: left;
  color: white;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.viewButton:hover {
  background-position: right;
  color: var(--voyage-3-hex);
}

.contentContainer {
  width: 20%;
  position: sticky;
  top: 10%;
  height: min-content;
}

.contentHeader {
  font-size: 1.2rem;
  font-weight: 500;
}

.contentContainer ol {
  width: 90%;
  color: #142361be;
  margin-left: 30px;
  margin-top: 10px;
}

.contentContainer ol li {
  margin-bottom: 5px;
}

.backButton {
  position: fixed;
  left: 10px;
  top: 100px;
  transition: 0.5s ease;
  cursor: pointer;
  border-radius: 50%;
  height: 48px;
}

.buttonn {
  transition: 1s ease;
}

.backButton:hover {
  background-color: var(--voyage-3-hex);
}

.backButton:hover .buttonn {
  transform: rotateX(360deg);
}

.progress {
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--voyage-1-rgba) 0%,
    var(--voyage-2-rgba) 50%,
    var(--voyage-3-rgba) 100%
  );
  z-index: 99;
  position: sticky;
  top: 0;
}

.toTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: rotate(-135deg);
  font-size: 2rem;
  font-weight: 800;
  background: var(--voyage-1-hex);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1600px) {
  .imageContainer img {
    width: 300px;
    height: 500px;
    object-fit: cover;
  }
}

@media screen and (max-width: 1200px) {
  .imageContainer img {
    width: 500px;
    margin: auto;
    margin-bottom: 50px;
  }

  .imageContainer {
    flex-direction: column;
  }
}

@media screen and (max-width: 950px) {
  .contentContainer {
    display: none;
  }

  .blogWrapper {
    width: 90%;
  }

  .backButton {
    display: none;
  }
}

@media screen and (max-width: 740px) {
  .imageContainer img {
    width: 350px;
  }
}

@media screen and (max-width: 550px) {
  .brand-logo {
    margin: 20px;
    font-size: 1.6rem;
  }

  .brand-logo img {
    width: 25px;
  }

  .blog {
    flex-direction: column;
  }

  .contentContainer {
    display: none;
  }

  .blogWrapper {
    width: 100%;
  }

  .imageContainer {
    flex-direction: column;
    padding: 20px;
  }

  .imageContainer img {
    margin-bottom: 50px;
    width: 100%;
  }

  .imageTitle {
    font-size: 1.3rem;
  }

  .imgDescription {
    width: 100%;
    margin: 0;
  }

  .title {
    font-size: 1.5rem;
  }

  .otherDetails {
    flex-direction: column;
    margin-top: 30px;
    width: 70%;
    align-items: flex-start;
  }
}

@media screen and (max-width: 450px) {
  .brand-logo {
    margin: 20px;
    font-size: 1.2rem;
  }

  .brand-logo img {
    width: 20px;
  }
}

.floatingCTA {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.floatingCTA a {
  display: block;
  background-color: var(--voyage-1-hex);
  border: none;
  text-decoration: none;
  color: #fff;
  width: min-content;
  padding: 5px 15px 15px 5px;
  border-radius: 0 0 60px 0;
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (min-width: 987px) {
  .floatingCTA {
    display: none;
  }
}
