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

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  box-shadow: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h2 {
  /* Heading/Heading 2 */
  font-family: "Instrument Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px; /* 110.417% */
  letter-spacing: -0.192px;
}

.h3 {
  font-family: "Instrument Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 115% */
}

.h4 {
  font-family: "Instrument Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
}

.h5 {
  font-family: "Instrument Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px; /* 104.167% */
}

.subheading-regular {
  font-family: "Instrument Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 135% */
}

.body-xlarge {
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px; /* 145% */
}

.body-large {
  font-family: "Instrument Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 138.889% */
}

.body-regular {
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.5px; /* 131.25% */
}

.button-small {
  font-family: "Instrument Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
}

.active {
  color: #fff !important;
  transition: all 0.3s ease;
}

.inactive {
  color: #9ca3af !important;
  transition: all 0.3s ease;
}

::-moz-selection {
  /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: #000000;
  background: #fff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  color: #f3f4f6;
}

.container-2 {
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  /* Your styles here */
  .container {
    max-width: 1440px;
    margin: 0 auto;
    color: #f3f4f6;
    padding: 0 48px;
  }
  .container-2 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
  }
}
.button-primary {
  display: inline-flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Instrument Sans";
  transition: all 0.3s ease;
  font-weight: 600;
  background-color: #fff;
  color: #000000;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.button-primary:hover {
  cursor: pointer;
  opacity: 0.9;
}

.button-secondary {
  display: inline-flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Instrument Sans";
  transition: all 0.3s ease;
  font-weight: 600;
  background-color: #0c0c0c;
  outline: 1px solid #222222;
  color: #f3f4f6;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.button-secondary:hover {
  cursor: pointer;
  background-color: #222222;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid #222222;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.header .logo {
  z-index: 5;
}
.header .logo:hover {
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}
.header nav ul {
  display: flex;
  gap: 32px;
  color: #fff;
}
.header nav ul .nav-links {
  z-index: 5;
}
.header nav ul .nav-link {
  position: relative;
  text-align: center;
}
.header nav ul .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header nav ul .nav-link:hover::before {
  transform: scaleX(1);
}
.header .contact-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  z-index: 2;
}
.header .hamburger-menu {
  display: none;
  height: 32px;
  width: 32px;
}
.header .hamburger-menu:hover {
  cursor: pointer;
}

header {
  position: relative;
  z-index: 10;
  width: 100%;
  transition: all 0.3s ease;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  backdrop-filter: blur(1px);
}
header .mobile-menu {
  position: absolute;
  z-index: 5;
  height: 100vh;
  width: 100%;
  display: none;
  background-color: #000000;
}
header .mobile-menu .mobile-content {
  width: 100%;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .mobile-menu .mobile-content .mobile-ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
header .mobile-menu .mobile-content .mobile-navlink {
  width: 100%;
  padding: 24px 0 24px 24px;
  border-bottom: 1px solid #27272a;
  color: #d1d5db;
}
header .mobile-menu .mobile-content .mobile-navlink:hover {
  background-color: #fff;
  cursor: pointer;
}
header .mobile-menu .mobile-content .mobile-navlink:hover {
  color: #000000;
}
header .mobile-menu .mobile-content .mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0px 40px 40px 40px;
}
header .mobile-menu .mobile-content .mobile-buttons .button-mobile {
  padding: 20px 0;
}

.active-menu {
  display: flex !important;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}
.hero h2 {
  color: #f3f4f6;
  text-align: left;
}
.hero .hero-title {
  padding-bottom: 20px;
  color: #f3f4f6;
}
.hero .hero-subtitle {
  color: #d1d5db;
  text-align: left;
}
.hero .hero-subtitle span {
  text-decoration: underline;
}
.hero .hero-text {
  color: #f3f4f6;
}
.hero .hero-description__span {
  color: #9ca3af;
}
.hero .hero-button {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0;
  }
  .hero .hero-content {
    padding: 0 24px;
  }
  .hero .hero-content h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
  }
  .header {
    background-color: rgb(0, 0, 0);
  }
  .header nav ul {
    display: none;
  }
  .header .contact-buttons {
    display: none;
  }
  .header .hamburger-menu {
    display: flex;
  }
}
.work {
  margin-top: 128px;
}
.work .work-heading {
  color: #f3f4f6;
  margin-bottom: 32px;
  text-align: left;
}
.work .more-work {
  text-align: left;
  padding: 24px;
  border: 1px solid #27272a;
  margin: 64px 0;
  background: url("../../images/sprinkle.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.work h5 {
  color: #f3f4f6;
  margin-bottom: 12px;
}
.work p {
  color: #d1d5db;
}

.work-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  row-gap: 96px;
  align-items: stretch;
}
.work-cards .card-external-portal {
  cursor: url("../../images/external-hover_black.svg"), auto;
}
.work-cards .card-external {
  cursor: url("../../images/external-hover.svg"), auto;
}
.work-cards .card-norna:hover {
  cursor: not-allowed;
}
.work-cards .card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.work-cards .card h5 {
  color: #f3f4f6;
  margin-bottom: 8px;
}
.work-cards .card p {
  color: #9ca3af;
}
.work-cards .card .card-image-portal {
  background-color: white;
}
.work-cards .card .card-image:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in;
}
.work-cards .card .card-video {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-cards .heading-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.work-cards .heading-pill .pills {
  display: flex;
  gap: 8px;
  align-items: center;
}
.work-cards .heading-pill .pills .pill-success {
  color: #00aa62;
  border: 1px solid #00aa62;
  padding: 2px 8px;
  font-weight: 600 !important;
  background-color: rgba(0, 170, 98, 0.2);
}
.work-cards .heading-pill .pills .pill-system {
  color: #613fff;
  border: 1px solid #613fff;
  padding: 2px 8px;
  font-weight: 600 !important;
  background-color: rgba(97, 63, 255, 0.2);
}
.work-cards .heading-pill .pills .pill-regular {
  color: #f3f4f6;
  border: 1px solid #f3f4f6;
  padding: 2px 8px;
  font-weight: 600 !important;
  background-color: rgba(243, 244, 246, 0.05);
}
.work-cards .heading-pill .pills .pill-norna {
  color: #d946ef;
  border: 1px solid #d946ef;
  padding: 2px 8px;
  font-weight: 600 !important;
  background-color: rgba(217, 70, 239, 0.2);
}
.work-cards .card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 24px;
}
.work-cards .card-image:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .work-cards {
    gap: 64px;
    grid-template-columns: 1fr;
  }
  .work-cards .card {
    width: 100%;
    height: auto;
    padding: 0 24px;
    align-self: self-start;
  }
  .work-cards .card .card-video {
    height: auto;
  }
  .work-heading {
    margin-left: 24px;
  }
  .card-image {
    height: auto;
    margin-bottom: 24px;
  }
  .pill {
    font-size: 14px;
  }
}
.skills {
  margin-top: 128px;
}
.skills h4 {
  margin-bottom: 20px;
  text-align: left;
  color: #f3f4f6;
}
.skills .skills-description {
  color: #d1d5db;
  margin-bottom: 48px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  justify-content: space-between;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.grid-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.grid-content .skills-title {
  color: #f3f4f6;
  margin-bottom: 8px;
}
.grid-content .skills-info {
  color: #9ca3af;
  font-weight: 500;
}

.grid-image {
  width: 190px;
  height: 140px;
  object-fit: cover;
  transition: all 0.3s ease-in;
}
.grid-image:hover {
  opacity: 0.9;
  filter: brightness(1);
  filter: contrast(150%);
  outline: 1px solid #d1d5db;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .skills h4 {
    padding-left: 24px;
  }
  .skills .skills-description {
    padding: 0 24px;
  }
  .grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-item {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 24px;
  }
  .grid-image {
    width: auto;
    height: 120px;
  }
}
.arsenal {
  text-align: center;
  margin-top: 128px;
}
.arsenal .arsenal-heading {
  text-align: left;
  color: #f3f4f6;
  margin-bottom: 32px;
}
.arsenal p {
  text-align: left;
  color: #d1d5db;
  margin-top: 20px;
}
.arsenal .arsenal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.arsenal .arsenal-grid .grid-item-text {
  padding-left: 48px;
  justify-content: center !important;
  align-items: flex-start !important;
}
.arsenal .arsenal-grid .grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #222222;
  min-height: 224px;
}
.arsenal .arsenal-grid .grid-item:hover {
  outline: 1px solid #9ca3af;
  filter: brightness(1);
  filter: contrast(150%);
}
.arsenal .arsenal-grid .grid-item.text-item {
  grid-column: span 2;
  text-align: left;
}
.arsenal .arsenal-grid .grid-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .arsenal .arsenal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 24px;
  }
  .arsenal .arsenal-grid .grid-item.text-item {
    grid-column: span 2;
    align-items: center !important;
    text-align: center;
  }
  .arsenal .arsenal-heading {
    padding-left: 24px;
  }
  .arsenal p {
    padding-left: 24px;
  }
}

.footer {
  margin-top: 128px;
  padding: 64px 0;
  border-top: 1px solid #222222;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer-container .footer-section:nth-of-type(1) img {
  margin-bottom: 16px;
}
.footer .footer-container .footer-section:nth-of-type(2) {
  text-align: center;
}
.footer .footer-container .footer-section:nth-of-type(2) h5 {
  margin-bottom: 16px;
}
.footer .footer-container .footer-section:nth-of-type(3) {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.footer .footer-container p {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer .footer-container:nth-of-type(1) img {
    margin: 0 auto 16px auto !important;
  }
}
.footer .footer-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.footer p {
  color: #d1d5db;
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 0;
  }
}

.about-section {
  margin-top: 96px;
}
.about-section .experience-section {
  padding-bottom: 64px;
}
.about-section .sayhi {
  padding-top: 80px;
  padding-bottom: 120px;
  border-top: 1px solid #27272a;
}
.about-section .sayhi .text-feeling {
  color: #d1d5db;
  margin-bottom: 20px;
}
.about-section .sayhi .sayhi-heading {
  margin-bottom: 20px;
  color: #d1d5db;
}
.about-section .sayhi .cta-coffee {
  color: #d1d5db;
}
.about-section .sayhi .cta-coffee a {
  text-decoration: underline;
}
.about-section .sayhi .icons {
  margin: 24px 0;
  display: flex;
  gap: 16px;
}
.about-section .sayhi .copyright {
  color: #d1d5db;
  font-weight: 500;
}

.top-content .intro {
  margin-bottom: 96px;
}
.top-content h4 {
  color: #f3f4f6;
  padding-bottom: 20px;
}
.top-content h5 {
  color: #d1d5db;
}
.top-content h5 span {
  text-decoration: underline;
}

.top-grid .paragraph-container p {
  padding-bottom: 24px;
  color: #d1d5db;
  text-align: left;
}

.top-grid,
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.image-container img,
.text-image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.personal-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 128px;
}

.personal-grid-main {
  grid-column: span 1;
}

.personal-title {
  display: flex;
}
.personal-title h5 {
  padding-right: 16px;
  color: #f3f4f6;
}

.personal-grid-gallery {
  grid-column: span 2;
}
.personal-grid-gallery .personal-item {
  margin-bottom: 56px;
}
.personal-grid-gallery .personal-heading {
  color: #f3f4f6;
  padding-bottom: 12px;
  padding-top: 24px;
}
.personal-grid-gallery .experience-heading {
  margin-bottom: 16px;
}
.personal-grid-gallery .experience-date {
  margin-bottom: 16px;
}
.personal-grid-gallery p {
  color: #d1d5db;
}
.personal-grid-gallery .gallery-image {
  width: 100%; /* Ensures the image spans the container width */
  height: auto; /* Maintains the original aspect ratio */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  display: block;
}

@media (max-width: 768px) {
  .top-content .intro {
    padding: 0 24px;
    margin-bottom: 48px;
  }
  .top-content h4 {
    font-size: 24px;
    line-height: 32px; /* 104.167% */
  }
  .top-content h5 {
    font-size: 20px;
    line-height: 27px;
  }
  .top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
  }
  .top-grid .paragraph-container {
    padding: 0 24px;
  }
  .image-container {
    margin: 0 auto;
  }
  .personal-section {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .personal-grid-gallery {
    grid-column: span 1;
  }
  .personal-title {
    justify-content: flex-start;
  }
  .sayhi {
    padding: 0 24px;
  }
}
.full-width-section .background-imageR {
  display: flex;
  justify-content: center;
  background-color: #009b8a;
  padding: 64px 0;
}
.full-width-section .background-imageR .risic-banner {
  object-fit: cover;
}

.content-section {
  text-align: center;
}
.content-section .intro {
  margin: 32px 0;
  text-align: left;
}
.content-section .intro h5 {
  color: #f3f4f6;
  padding-bottom: 16px;
}
.content-section .intro p {
  color: #d1d5db;
  max-width: 80%;
  margin-top: 24px;
}
.content-section .four-column-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 64px;
}
.content-section .four-column-layout .position {
  font-weight: bold;
  color: #f3f4f6;
  margin-bottom: 4px;
}
.content-section .four-column-layout .position-description {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}
.content-section .four-column-layout .position-description:hover {
  text-decoration: underline;
}

.stacked-bg {
  background-color: #0c0c0c;
}

.stacked-bg-2 {
  background-color: #000000;
}

.stacked-section {
  padding: 64px 0;
}
.stacked-section h3 {
  margin-bottom: 48px;
}
.stacked-section .stack-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stacked-section .stack-items .stacked-heading {
  margin-bottom: 24px;
  color: #f3f4f6;
}
.stacked-section .stack-items .stacked-description {
  color: #d1d5db;
  max-width: 80%;
}

.overall-experience {
  padding: 64px 0;
}
.overall-experience .section-heading {
  color: #f3f4f6;
  margin-bottom: 24px;
}
.overall-experience .section-description {
  color: #d1d5db;
  margin-bottom: 24px;
}
.overall-experience .images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.overall-experience .images-grid .grid-image {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  outline: none;
  filter: none;
  opacity: 1;
}
.overall-experience .nda {
  text-align: left;
}
.overall-experience .nda .nda-notice {
  color: #d1d5db;
}
.overall-experience .nda .articles {
  display: flex;
  gap: 48px;
  align-items: center;
}
.overall-experience .nda .articles .anchor {
  color: #d1d5db;
  display: flex;
  gap: 8px;
  margin: 24px 0px;
}
.overall-experience .nda .articles .anchor:hover {
  text-decoration: underline;
  color: #f3f4f6;
}

@media (max-width: 768px) {
  .content-section {
    padding: 0 24px;
    margin: 48px 0;
  }
  .content-section .four-column-layout {
    grid-template-columns: 1fr 1fr;
  }
  .content-section .intro p {
    max-width: 100%;
  }
  .stacked-section {
    padding: 64px 24px;
  }
  .stacked-section .stack-items .stacked-description {
    max-width: 100%;
  }
  .overall-experience {
    padding: 64px 24px 96px 24px;
  }
  .overall-experience .images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 20px;
  }
  .overall-experience .images-grid .grid-image {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    outline: none;
    filter: none;
    opacity: 1;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .risic-container {
    padding: 0 48px;
  }
}
.full-width-section .background-imagesZ {
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #0a261f 0%, #03120e 100%);
  padding: 64px 0;
}
.full-width-section .background-imagesZ .risic-banner {
  object-fit: cover;
}

.content-section {
  text-align: center;
}
.content-section .intro {
  margin: 32px 0;
  text-align: left;
}
.content-section .intro h5 {
  color: #f3f4f6;
  padding-bottom: 16px;
}
.content-section .intro p {
  color: #d1d5db;
  max-width: 80%;
  margin-top: 24px;
}
.content-section .four-column-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
  margin-top: 64px;
}
.content-section .four-column-layout .position {
  font-weight: bold;
  color: #f3f4f6;
  margin-bottom: 4px;
}
.content-section .four-column-layout .position-description {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}
.content-section .four-column-layout .position-description:hover {
  text-decoration: underline;
}

.case-study-container {
  padding-top: 96px;
}
.case-study-container .case-study-section {
  margin-bottom: 96px;
}
.case-study-container .heading-main {
  color: #f3f4f6;
}
.case-study-container .description {
  color: #d1d5db;
  margin-top: 24px;
}
.case-study-container .description-list {
  color: #d1d5db;
  margin-top: 16px;
  padding-left: 12px;
}
.case-study-container .features-list {
  padding-top: 24px;
  list-style-type: none;
  margin-bottom: 16px;
}
.case-study-container .features-list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.image-gallery-research {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
}
.image-gallery-research .gallery-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.image-gallery-research p {
  padding-top: 24px;
}
.image-gallery-research a {
  color: white;
}

.video-gallery {
  margin-bottom: 80px;
}
.video-gallery .heading-main {
  margin-bottom: 16px;
}
.video-gallery .description {
  margin-bottom: 24px;
}
.video-gallery .videos-container {
  display: block;
  width: 100%;
}
.video-gallery .videos-container .video-item {
  margin-bottom: 40px;
}
.video-gallery .videos-container .video-item .video {
  width: 100%;
  height: auto;
}
.video-gallery .videos-container .video-item .video-description {
  padding-top: 12px;
  padding-bottom: 64px;
  text-align: center;
}

@media (max-width: 768px) {
  .content-section {
    padding: 0 24px;
    margin: 48px 0;
  }
  .content-section .four-column-layout {
    grid-template-columns: 1fr 1fr;
  }
  .content-section .intro p {
    max-width: 100%;
  }
}
.full-width-section__portalsystem .background-imageS {
  display: flex;
  justify-content: center;
  background-color: #000000;
  padding: 64px 0;
  border-bottom: 1px solid #27272a;
}
.full-width-section__portalsystem .background-imageS .portal-banner {
  object-fit: cover;
}

.content-section {
  margin-top: 64px;
}
.content-section .anchor-portal {
  display: flex;
  gap: 8px;
  margin: 24px 0;
}
.content-section .anchor-portal:hover {
  text-decoration: underline;
  color: #f3f4f6;
}

.design-system-section {
  text-align: left;
  margin-top: 64px;
}
.design-system-section .subtitle {
  color: #9ca3af;
  margin-bottom: 16px;
}
.design-system-section .heading-main {
  margin-bottom: 32px;
  color: #f3f4f6;
}
.design-system-section .description {
  margin-bottom: 24px;
  color: #d1d5db;
}
.design-system-section .full-width-image {
  margin-top: 48px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #27272a;
}
.design-system-section .image-text-helper {
  text-align: center;
  color: #9ca3af;
  margin-top: 20px;
}

.design-system-section-2 {
  margin-top: 80px;
}
.design-system-section-2 .heading-space {
  margin-top: 112px;
}
.design-system-section-2 .description a {
  text-decoration: underline;
}
.design-system-section-2 .description-layout {
  margin-top: 48px;
}
.design-system-section-2 .list-items {
  margin: 32px 0px 32px 24px;
  gap: 12px;
}
.design-system-section-2 .list-items .list-item {
  color: #d1d5db;
  margin-bottom: 24px;
}
.design-system-section-2 .lisk-brandbook {
  border: none;
}
.design-system-section-2 .subheading-scenes {
  color: #d1d5db;
  margin-bottom: 32px;
}

.ending {
  padding: 160px 0;
}

.heading-end {
  font-size: 54px;
  line-height: 58px;
  color: #f3f4f6;
}

.contact-cta {
  margin-top: 32px;
  color: #d1d5db;
}
.contact-cta a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content-section {
    margin: 64px 24px;
  }
  .design-system-section {
    margin: 64px 24px;
  }
  .ending {
    margin-left: 24px;
    margin-right: 24px;
    padding: 24px 0px;
  }
  .heading-end {
    padding-bottom: 32px;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
  }
}
.contact {
  padding: 80px 0;
  text-align: center;
}
.contact .contact-heading {
  color: #f3f4f6;
}
.contact .contact-description {
  color: #d1d5db;
  margin-top: 24px;
}
.contact .contact-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  margin-top: 64px;
}
.contact .contact-container .contact-item {
  width: 100%;
  background-color: #0c0c0c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 64px;
  border: 1px solid #27272a;
}
.contact .contact-container .contact-item:hover {
  background-color: #131313;
}
.contact .contact-container .contact-item img {
  max-width: 100px;
  height: auto;
}

@media (max-width: 768px) {
  .contact {
    margin: 64px 0;
    padding: 0 24px;
    padding-bottom: 24px;
  }
  .contact .contact-heading {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
  }
  .contact .contact-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .contact .contact-item:hover {
    background-color: #131313;
  }
  .contact .contact-item img {
    max-width: 64px !important;
    height: auto;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: white;
}

@media (min-width: 600px) and (max-width: 1024px) {
  section {
    padding: 0 24px;
  }
}

/*# sourceMappingURL=style.css.map */
