@import url("https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One");
:root {
  --main-bg-color: #02080e;
  --lighten-bg-color: #ad655375;
  --darken-bg-color: #0000004d;
  --accent-text-color: #d67e68;
  --dark-text-color: #af7a6c;
  --text-color:#ffffff;
}

/* general teaparty styling */
body {
  background: var(--main-bg-color);
  color: var(--text-color);
  font-family: Cardo;
}

a {
  color: var(--accent-text-color);
}

.header {
  border-bottom: 1px solid #E2E8F0;
}
.header .navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #1b242e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  z-index: 100;
}
.header .navbar a {
  color: var(--text-color);
  text-decoration: none;
}
.header .navbar ul {
  padding: 0;
  list-style: none;
}
.header .navbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .nav-item {
  margin-left: 5rem;
}
.header .navbar .nav-link {
  font-weight: 400;
}
.header .navbar .nav-link:hover {
  color: var(--accent-text-color);
}
.header .navbar .nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--accent-text-color);
}
.header .hamburger {
  display: none;
}
.header .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-color);
}
@media only screen and (max-width: 1000px) {
  .header .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.9rem;
    flex-direction: column;
    background-color: var(--main-bg-color);
    width: 0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }
  .header .nav-menu.active {
    left: 0;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid;
  }
  .header .nav-menu.active .nav-item {
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem 0;
  }
  .header .nav-menu.active .nav-item:hover {
    background-color: #1b242e;
    color: var(--accent-text-color);
  }
  .header .hamburger {
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: 2rem;
  }
  .header .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main content */
.photobg .row {
  display: flex;
  flex-wrap: wrap;
}
.photobg .column {
  flex: 25%;
}
.photobg .column img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: opacity(10%);
}

.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}

.main-title, .accent-title {
  padding: 3rem 3rem 0;
  text-align: center;
  color: var(--accent-text-color);
  font-size: 2rem;
  font-family: Cardo;
  font-weight: normal;
  margin: 0;
  line-height: 1;
}

.hero-paragraph {
  padding: 0 2rem;
  font-size: calc(1rem + 0.2vw);
  box-sizing: border-box;
  font-family: Cardo;
  font-weight: normal;
  color: var(--text-color);
}

/* 
.nv_quick_item{
  display: block;
} */
.primary-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow-y: hidden;
}
.primary-landing .text {
  position: absolute;
  margin: auto auto 0;
  padding: 3rem 3rem;
  width: 100%;
}
.primary-landing .text h2, .primary-landing .text h3 {
  font-weight: 300;
}
.primary-landing .text h3 {
  margin: 0;
}
.primary-landing .text h3 a {
  text-decoration: none;
}

.landing-container {
  display: flex;
  align-items: center;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23595f65' fill-opacity='0.24'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/*item display css*/
:-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.container {
  padding: calc(1rem + 3vw) calc(1rem + 1.5vw);
}
.container:nth-of-type(2n) {
  display: grid;
  min-height: 50vh;
  align-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23595f65' fill-opacity='0.24'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.container h2 {
  color: var(--accent-text-color);
}
.container p.text {
  font-size: calc(1rem + 0.2vw);
  color: var(--text-color);
  line-height: 1.5;
}

.perspectives-container .item {
  display: flex;
  align-items: center;
  margin-top: calc(1rem + 1.5vw);
  padding: calc(1rem + 1vw);
  border-radius: 5px;
  background-color: #1b242e;
}
@media only screen and (max-width: 1000px) {
  .perspectives-container .item {
    flex-direction: column;
  }
}
.perspectives-container .item .portrait {
  padding: 2rem;
}
.perspectives-container .item .portrait img {
  border-radius: 50%;
}
.perspectives-container .item .description {
  border-left: 1px solid;
  padding: 2rem;
}
.perspectives-container .item p {
  font-size: calc(1rem + 0.2vw);
  color: var(--text-color);
  line-height: 1.5;
}
.perspectives-container .item h3 {
  text-align: center;
}
.perspectives-container .item .assets {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  gap: 1rem;
}
.perspectives-container .item .assets .references {
  padding: 1rem;
}
@media only screen and (max-width: 420px) {
  .perspectives-container .item .assets {
    flex-direction: column;
    align-items: center;
  }
  .perspectives-container .item .assets .text {
    text-align: center;
  }
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}

div {
  box-sizing: border-box;
}

.center {
  text-align: center;
}

.horizontal-scroll-wrapper {
  display: flex;
  min-width: 65vw;
  max-width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: calc(1rem + 0.2vw);
  padding: 1rem;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
  padding: 2px 0;
  background-color: var(--lighten-bg-color);
  border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  width: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px var(--darken-bg-color);
  background-color: var(--lighten-bg-color);
}

.horizontal-scroll-wrapper > p {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-image: linear-gradient(180deg, transparent 0, #1b242e 67%);
  padding: calc(2rem + 0.2vw);
  min-height: 100%;
  border-radius: 5px;
}

.horizontal-scroll-wrapper > p > span {
  display: block;
}

/* .horizontal-scroll-wrapper > p:hover .refImage > a > img{
  filter: none;
} */
.refImage {
  display: flex;
  justify-content: center;
}

.refImage > a > img {
  width: 20vw;
  max-width: 90vw;
  margin: auto;
  border-radius: 5px;
}

/* span.text{

} */
span.title > a {
  color: var(--accent-text-color);
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-family: "Pathway Gothic One", sans-serif;
}

span.details {
  padding-top: 1rem;
  line-height: 1.5;
  border-top: 1px solid;
}

@media only screen and (max-height: 500px) {
  .landing-container {
    height: unset;
  }
}
@media only screen and (max-width: 1200px) {
  .horizontal-scroll-wrapper {
    min-width: 40vw;
  }
  .hero-paragraph {
    padding: 1rem;
    font-size: 1rem;
  }
  .landing-container {
    height: unset;
  }
}
@media only screen and (max-width: 620px) {
  .landing-container {
    flex-direction: column;
  }
  .horizontal-scroll-wrapper > p {
    min-width: 70vw;
  }
}
/* timeline css */
.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 70vw;
  position: relative;
}

.timeline-item:nth-of-type(2n-1) .timeline__content-title, .timeline-item:nth-of-type(2n-1) .timeline__content-desc {
  text-align: right;
}

.timeline__content {
  width: 100%;
}

.timeline__content-title {
  font-weight: normal;
  font-size: 2rem;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  color: var(--text-color);
}

.timeline__content-desc {
  margin: 0;
  font-size: calc(1rem + 0.2vw);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.7);
  font-family: Cardo;
  font-weight: normal;
  /* line-height: 25px; */
}

.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}
.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}

.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.75);
  font-size: calc(0.8rem + 0.2vw);
  font-family: "Pathway Gothic One", sans-serif;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}

.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
  position: relative;
  padding: 80px 0;
  transition: 0.3s ease 0s;
  background-attachment: fixed;
  background-size: cover;
}

.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(99, 99, 99, 0.8); */
  content: "";
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.header__title {
  color: #fff;
  font-size: 2rem;
  font-family: Cardo;
  font-weight: normal;
  margin: 0;
}

.header__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 2rem;
  letter-spacing: 5px;
  margin: 0;
  font-weight: normal;
}

.demo-footer {
  padding: 60px 0;
  text-align: center;
}

.demo-footer a {
  color: #999;
  display: inline-block;
  font-family: Cardo;
}

.animate-item {
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  position: relative;
  transform: translateY(-80px);
}

.animate-item:before {
  position: absolute;
  top: 70%;
  margin-top: -5px;
  opacity: 0;
}

.animate-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.animate-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

/*# sourceMappingURL=teaparty-custom.css.map */
@import url("https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One");
:root {
  --main-bg-color: #02080e;
  --lighten-bg-color: #ad655375;
  --darken-bg-color: #0000004d;
  --accent-text-color: #d67e68;
  --dark-text-color: #af7a6c;
  --text-color:#ffffff;
}

/* general teaparty styling */
body {
  background: var(--main-bg-color);
  color: var(--text-color);
  font-family: Cardo;
}

a {
  color: var(--accent-text-color);
}

.header {
  border-bottom: 1px solid #E2E8F0;
}
.header .navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #1b242e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  z-index: 101;
}
.header .navbar a {
  color: var(--text-color);
  text-decoration: none;
}
.header .navbar ul {
  padding: 0;
  list-style: none;
}
.header .navbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .nav-item {
  margin-left: 5rem;
}
.header .navbar .nav-link {
  font-weight: 400;
}
.header .navbar .nav-link:hover {
  color: var(--accent-text-color);
}
.header .navbar .nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--accent-text-color);
}
.header .hamburger {
  display: none;
}
.header .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-color);
}
@media only screen and (max-width: 1000px) {
  .header .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.9rem;
    flex-direction: column;
    background-color: var(--main-bg-color);
    width: 0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }
  .header .nav-menu.active {
    left: 0;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid;
  }
  .header .nav-menu.active .nav-item {
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem 0;
  }
  .header .nav-menu.active .nav-item:hover {
    background-color: #1b242e;
    color: var(--accent-text-color);
  }
  .header .hamburger {
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: 2rem;
  }
  .header .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main content */
.photobg .row {
  display: flex;
  flex-wrap: wrap;
}
.photobg .column {
  flex: 25%;
}
.photobg .column img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: opacity(10%);
}

.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}

.main-title, .accent-title {
  padding: 3rem 3rem 0;
  text-align: center;
  color: var(--accent-text-color);
  font-size: 2rem;
  font-family: Cardo;
  font-weight: normal;
  margin: 0;
  line-height: 1;
}

.hero-paragraph {
  padding: 0 2rem;
  font-size: calc(1rem + 0.2vw);
  box-sizing: border-box;
  font-family: Cardo;
  font-weight: normal;
  color: var(--text-color);
}

/* 
.nv_quick_item{
display: block;
} */
.primary-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow-y: hidden;
}
.primary-landing .text {
  position: absolute;
  margin: auto auto 0;
  padding: 3rem 3rem;
  width: 100%;
}
.primary-landing .text h2, .primary-landing .text h3 {
  font-weight: 300;
}
.primary-landing .text h3 {
  margin: 0;
}
.primary-landing .text h3 a {
  text-decoration: none;
}

.landing-container {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23595f65' fill-opacity='0.24'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/*item display css*/
:-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.container {
  padding: calc(1rem + 3vw) calc(1rem + 1.5vw);
}
.container:nth-of-type(2n) {
  display: grid;
  min-height: 50vh;
  align-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23595f65' fill-opacity='0.24'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.container h2 {
  color: var(--accent-text-color);
}
.container p.text {
  font-size: calc(1rem + 0.2vw);
  color: var(--text-color);
  line-height: 1.5;
}

.perspectives-container .item {
  display: flex;
  align-items: center;
  margin-top: calc(1rem + 1.5vw);
  padding: calc(1rem + 1vw);
  border-radius: 5px;
  background-color: #1b242e;
}
@media only screen and (max-width: 1000px) {
  .perspectives-container .item {
    flex-direction: column;
  }
}
.perspectives-container .item .portrait {
  padding: 2rem;
}
.perspectives-container .item .portrait img {
  border: 5px solid var(--accent-text-color);
  border-radius: 50%;
}
.perspectives-container .item .description {
  border-left: 1px solid;
  padding: 2rem;
}
.perspectives-container .item p {
  font-size: calc(1rem + 0.2vw);
  color: var(--text-color);
  line-height: 1.5;
}
.perspectives-container .item h3 {
  text-align: center;
}
.perspectives-container .item .assets {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  gap: 1rem;
}
.perspectives-container .item .assets .references {
  padding: 1rem;
}
@media only screen and (max-width: 420px) {
  .perspectives-container .item .assets {
    flex-direction: column;
    align-items: center;
  }
  .perspectives-container .item .assets .text {
    text-align: center;
  }
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}

div {
  box-sizing: border-box;
}

.center {
  text-align: center;
}

.horizontal-scroll-wrapper {
  display: flex;
  min-width: 65vw;
  max-width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: calc(1rem + 0.2vw);
  padding: 1rem;
  scroll-snap-type: x mandatory;
  z-index: 100;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
  padding: 2px 0;
  background-color: var(--lighten-bg-color);
  border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  width: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px var(--darken-bg-color);
  background-color: var(--lighten-bg-color);
}

.horizontal-scroll-wrapper > p {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-image: linear-gradient(180deg, transparent 0, #1b242e 67%);
  padding: calc(2rem + 0.2vw);
  min-height: 100%;
  border-radius: 5px;
}

.horizontal-scroll-wrapper > p > span {
  display: block;
}

/* .horizontal-scroll-wrapper > p:hover .refImage > a > img{
filter: none;
} */
.refImage {
  display: flex;
  justify-content: center;
}

.refImage > a > img {
  width: 20vw;
  max-width: 90vw;
  margin: auto;
  border-radius: 5px;
}

/* span.text{

} */
span.title > a {
  color: var(--accent-text-color);
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-family: "Pathway Gothic One", sans-serif;
}

span.details {
  padding-top: 1rem;
  line-height: 1.5;
  border-top: 1px solid;
}

@media only screen and (max-height: 500px) {
  .landing-container {
    height: unset;
  }
}
@media only screen and (max-width: 1200px) {
  .horizontal-scroll-wrapper {
    min-width: 40vw;
  }
  .hero-paragraph {
    padding: 1rem;
    font-size: 1rem;
  }
  .landing-container {
    height: unset;
  }
}
@media only screen and (max-width: 620px) {
  .landing-container {
    flex-direction: column;
  }
  .horizontal-scroll-wrapper > p {
    min-width: 70vw;
  }
}
/* timeline css */
.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 70vw;
  position: relative;
}

.timeline-item:nth-of-type(2n-1) .timeline__content-title, .timeline-item:nth-of-type(2n-1) .timeline__content-desc {
  text-align: right;
}

.timeline__content {
  width: 100%;
}

.timeline__content-title {
  font-weight: normal;
  font-size: 2rem;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  color: var(--text-color);
}

.timeline__content-desc {
  margin: 0;
  font-size: calc(1rem + 0.2vw);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.7);
  font-family: Cardo;
  font-weight: normal;
  /* line-height: 25px; */
}

.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
  .timeline-item:nth-of-type(2n-1) .timeline__content-title, .timeline-item:nth-of-type(2n-1) .timeline__content-desc {
    text-align: unset;
  }
}
.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}

.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.75);
  font-size: calc(0.8rem + 0.2vw);
  font-family: "Pathway Gothic One", sans-serif;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}

.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
  position: relative;
  padding: 80px 0;
  transition: 0.3s ease 0s;
  background-attachment: fixed;
  background-size: cover;
}

.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(99, 99, 99, 0.8); */
  content: "";
}

.timeline-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.header__title {
  color: #fff;
  font-size: 2rem;
  font-family: Cardo;
  font-weight: normal;
  margin: 0;
}

.header__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 2rem;
  letter-spacing: 5px;
  margin: 0;
  font-weight: normal;
}

.demo-footer {
  padding: 60px 0;
  text-align: center;
}

.demo-footer a {
  color: #999;
  display: inline-block;
  font-family: Cardo;
}

.animate-item {
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  position: relative;
  transform: translateY(-80px);
}

.animate-item:before {
  position: absolute;
  top: 70%;
  margin-top: -5px;
  opacity: 0;
}

.animate-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.animate-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

ul.text {
  border-left: 1px solid;
  padding: 0 3rem;
  font-size: calc(1rem + 0.25vw);
}
ul.text li {
  margin-top: 1rem;
  list-style-type: circle;
}

/*# sourceMappingURL=teaparty-custom.css.map */
