/* Products index page */
.story-hero {
  position: relative;
  padding: 8px 0 0 0;
  background: url(/assets/img/stroy-hero.svg) no-repeat;
  background-size: cover;
  /* overflow: hidden; */
}
#blog-hero--single .story-hero-content {
  padding: 100px 80px 20px 80px !important;
}
.story-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--n30);
  z-index: -1;
}

/* Breadcrumbs */
.breadcrumbs {
  position: fixed;
  top: 150px;
  left: 24px;
  z-index: 11;
  transition: .3s ease;
}

.breadcrumbs.fixed {
  padding: 4px 6px;
  top: 76px !important;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: rgba(243, 248, 250, 0.38);
  backdrop-filter: blur(10px);
  /* filter: blur(20px); */
}

.breadcrumbs ol {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs ol li {
  color: var(--n100);
  font-size: 14px;
  font-family: 'Audi Light';
}

.breadcrumbs.dark ol li {
  color: var(--n500-a);
}

.breadcrumbs ol li a {
  display: flex;
  padding: 6px 8px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: 'Audi Normal';
  color: var(--n900);
  border-radius: 4px;
  transition: .5s ease;
}

.breadcrumbs ol li.active a {
  color: var(--n400);
}

.breadcrumbs ol li:hover a {
  background-color: var(--n30-a);
}

.breadcrumbs ol li:active a {
  background-color: var(--n50-a);
}

.breadcrumbs:not(fixed).dark {
  background-color: rgba(221, 231, 234, 0.38);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 3px;
}

.breadcrumbs ol li:last-child a {
  cursor: default;
}

.breadcrumbs ol li:last-child a:hover {
  background-color: transparent;
}

/* end Breadcrumbs */
.story-hero-content {
  display: flex;
  align-items: center;
  padding: 100px 0 100px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.story-comp-logo {
  display: flex;
  gap: 12px;
  align-items: center;
}
.story-comp-logo span {
  font-family: 'Audi Normal';
  font-size: 16px;
  color: var(--n400);
}
.atlaslogo {
  height: 16px !important;
}
.story-hero--logo {
  height: 24px;
}
.story-comp-logo > img {
  margin-top: 0;
  height: 24px;
}

.story-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.story-hero--headline {
  margin-top: 12px;
  text-align: left;
  max-width: 100vw;
  font-size: 48px;
  font-family: 'Extended Bold';
  line-height: 130%;
  color: var(--n900);
}

.story-hero--desc {
  max-width: 70vw;
  font-size: 20px;
  font-family: 'Audi Normal';
  color: var(--n800);
  line-height: 140%;
}


.story-company-details {
  margin-top: 24px;
  border-top: 1px solid var(--n50-a);
  padding: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-comp-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.story-comp-row strong {
  font-family: 'Audi Normal';
}
.story-book-call {
  margin-top: 12px;
  background-color: var(--n900);
  display: inline-flex;
  gap: 12px;
  border-radius: 6px;
  padding: 16px 24px;
  color: var(--n0);
  cursor: pointer;
  transition: .5s ease;
}

.story-book-call:hover {
  transform: translateY(-4px);
  background-color: var(--b400);
}

.story-book-call:active {
  transform: translateY(0px);
  background-color: var(--b500);
}

.story-hero-logos {
  position: relative;
  min-width: 50vw;
  height: 100%;
}

.story-hero-logos ul {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-hero-logos ul li {
  position: absolute;
  padding: 16px 12px 12px 12px;
  border-radius: 6px;
  background-color: var(--n20);
  display: inline-flex;
  flex-direction: column;
  opacity: .8;
  box-shadow: 0px 11px 11px rgba(59, 76, 82, 0.11);
  transition: .4s ease-in-out;
}

.story-hero-logos ul li:hover {
  opacity: 1;
  transform: translateY(-11px) scale(1);
  box-shadow: none;
}

.story-hero-logos ul li img {
  object-fit: contain;
  height: 24px;
}

.story-hero-logos ul li.md img {
  height: 40px;
}

.story-hero-logos ul li.lg img {
  height: 56px;
}

.story-hero-logos ul li span {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  color: var(--n400);
  font-family: 'Audi Bold';
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease-in-out;
}

.story-hero-logos ul li:hover span {
  opacity: 1;
  bottom: -24px;
  transform: translateX(-50%);
  visibility: visible;
}

.story-hero-logos ul li:nth-child(1) {
  top: 0;
  left: 0;
}

.story-hero-logos ul li:nth-child(2) {
  animation-delay: 2s;
  top: -12vh;
  left: 15vw;
}

.story-hero-logos ul li:nth-child(3) {
  top: 0;
  left: 18vw;
}

.story-hero-logos ul li:nth-child(4) {
  top: 11vh;
  left: 13vw;
}

.story-hero-logos ul li:nth-child(5) {
  top: -24vh;
  left: 20vw;
}

.story-hero-logos ul li:nth-child(6) {
  top: -14vh;
  left: 32vw;
}

.story-hero-logos ul li:nth-child(7) {
  top: 10vh;
  left: 30vw;
}

.story-hero-logos ul li:nth-child(8) {
  top: -24px;
  left: 29vw;
}

.story-hero-logos ul li:nth-child(9) {
  top: -18vh;
  left: 40px;
}

.story-hero-logos ul li:nth-child(10) {
  top: -90px;
  left: 40px;
}

.story-hero-logos ul li:nth-child(11) {
  top: -42px;
  left: 11%;
}
.story-hero-logos ul li:nth-child(12) {
  top: -80px;
  right: 24%;
}


.animate-breathing {
  animation: breathing 4s infinite;
}

@keyframes breathing {
  0%, 100% {
    transform: scale(0.9)
  }

  50% {
    transform: scale(1.02);
  }
}


.story-main {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.story-item {
  max-width: 650px;
  border-radius: 8px;
  background-color: var(--n0);
  box-shadow: 0px 12px 32px rgba(59, 76, 82, 0.08);
  border: 2px solid var(--n0);
  transition: .5s ease;
  overflow: hidden;
}

.story-item:hover {
  box-shadow: none;
  border: 2px solid var(--n0);
  transform: translateY(-12px);
}

.story-item--poster {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  height: 240px;
  background-color: rgb(220, 233, 233);
}

.story-item--poster img {
  height: 60px;
}

.story-item--poster.scale-logo img {
  height: 90px;
}

.story-item--meta {
  background-color: var(--n0);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transition: .5s ease;
}

.story-item--meta h3 {
  font-size: 18px;
  font-family: 'Extended Bold';
  color: var(--n900);
  text-transform: capitalize;
}

.story-item--meta p {
  font-size: 14px;
  color: var(--n500);
  line-height: 155%;
  font-family: 'Audi Normal';
}

.story-item--meta a {
  margin: 24px auto 0 auto;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  font-family: 'Audi Bold';
  gap: 12px;
  color: var(--n500);
  transition: .5s ease;
}

.story-item--meta a:hover {
  color: var(--b300);
  border: 2px solid var(--n10-a);
  border-bottom: 2px solid var(--b300);
  gap: 20px;
}



/* Single Story */
.story-single {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 40px 80px;
  background-color: var(--n0);
  display: flex;
  justify-content: space-between;
  gap: 5vw;
}

.story-sidebar {
  /* min-width: 20vw; */
  border-radius: 4px;
  border: 1px solid var(--n50-a);
  align-self: baseline;
}
.story-sidebar-block {
  padding: 24px;
  border-bottom: 1px solid var(--n50-a);
}
.story-sidebar-block h4 {
  font-size: 16px;
  font-family: 'Extended Bold';
  color: var(--n800);
  white-space: nowrap;
}
.story-sidebar-block--content {
  margin-top: 16px;
  width: 100%;
  font-size: 12px;
  color: var(--n300);
  font-family: 'Audi Normal';
  overflow: hidden;
}
.story-sidebar-block--content img {
  max-inline-size: 100%;
  margin-bottom: 16px;
  height: 48px;
  transition: .5s ease;
}
.story-sidebar-block--content img:hover {
  transform: translateY(-2px);
}
.story-sidebar-block--content img:active {
  transform: translateY(0px) scale(.98);
}
.story-sidebar-block--content p {
  line-height: 155%;
}
.story-sidebar-block ul {
  margin-left: 16px;
  list-style-type: disc;
}
.story-sidebar-block ul li {
  margin-bottom: 12px;
  font-family: 'Audi Bold';
  transition: .5s ease;
}
.story-sidebar-block ul li:hover {
  transform: translateX(4px);
  color: var(--b400);
}
.story-sidebar-block ul ul {
  margin-top: 12px;
  margin-left: 12px;
}
.story-sidebar--sub-li {
  padding-left: 12px;
}
.story-content {
  padding-left: 40px;
}

.story-content h2:first-child {
  margin-top: 0;
}

.story-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 40px;
}
.story-content h3 {
  font-size: 32px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.story-content p {
  font-size: 16px;
  font-family: 'Audi Normal';
  margin-bottom: 16px;
  line-height: 200%;
  color: var(--n300);
}
.story-content p a {
  color: var(--b300);
  text-decoration: underline;
  transition: .5s ease;
}
.story-content p a:hover {
  color: var(--b400);
}
/* Single Story */

/* -------------- Single Blog ---------- */
@media (width < 920px) {
  #blog-single img {
    min-width: 100%;
    width: 100%;
  }
}
#blog-single article img:nth-child(1) {
  display: block;
  min-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;;
}
#blog-single article a {
  text-decoration: underline;
  color: var(--b300);
}
#blog-single article a:hover {
  color: var(--b400);
}
#blog-single h2 {
  font-size: 32px;
  margin-block: 40px 12px; 
}
#blog-single h3 {
  font-size: 24px;
  margin-block: 32px 12px; 
}
#blog-single h4 {
  font-size: 20px;
  margin-block: 24px 12px; 
}
#blog-single p {
  font-size: 18px;
  font-family: 'Audi Normal';
  font-weight: 500;
  line-height: 200%;
  margin-bottom: 16px;
  color: var(--n500);
}
#blog-single ul {
  margin-left: 24px;
  margin-bottom: 12px;
  list-style-type: circle;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#blog-single ul li p {
  margin-bottom: 0;
}
/* -------------- Single Blog ---------- */

/* Responsive */
@media (width > 1900px) {
  .story-hero-logos ul li:nth-child(1) {
    left: 150px !important;
  }
  .story-hero-logos ul li:nth-child(5) {
    top: -18vh !important;
  }
  .story-hero-logos ul li:nth-child(2) {
    top: -10vh;
  }
  .story-hero-logos ul li:nth-child(9) {
    top: -10vh !important;
    left: 6vw;
  }
}
@media (width > 1600px) {
  .story-hero-logos ul li:nth-child(1) {
    left: 50px;
  }
  .story-hero-logos ul li:nth-child(5) {
    top: -21vh;
  }
  .story-hero-logos ul li:nth-child(9) {
    top: -11vh;
  }
  .story-hero-logos ul li:nth-child(7) {
    left: 25vw;
  }
}
@media (width < 1400px) {
  .story-hero-logos {
    margin-top: 40px;
  }
}
@media (width < 1400px) {
  .story-hero-logos {
    display: none;
  }
  .story-hero-text {
    width: 100%;
  }
  .story-main {
    padding-inline: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .story-item {
    width: 100%;
  }
}

@media (width < 1025px) {
  .story-single {
    margin-top: 0;
    padding: 40px 24px;
    flex-direction: column;
  }
  .story-sidebar {
    width: 100%;
  }
}

@media (width < 768px) {
  .story-hero--headline {
    font-size: 32px;
    line-height: 155%;
  }
  .story-hero-content {
    padding: 80px 24px 60px 24px;
  }
  .story-main {
    padding: 80px 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .story-item {
    width: 100%;
  }
  .story-hero--single .story-hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .story-hero--single .breadcrumbs {
    top: 120px;
  }
  .story-hero--single h1 {
    font-size: 26px;
  }
  .story-comp-logo > img {
    height: 16px;
  }
  .story-single {
    margin-top: 0;
    padding: 40px 24px;
    flex-direction: column;
  }
  .story-content {
    margin-top: 24px;
    padding-left: 0;
  }
  .story-content h2 {
    font-size: 32px;
  }

}
@media (width < 420px) {
  .story-comp-logo {
    margin-top: 32px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
}