@view-transition {
  navigation: auto;
}

@keyframes slide-in-from-top {
  from {
    translate: 0 -100vh;
  }
}

@keyframes slide-in-from-left {
  from {
    translate: -100vw 0;
  }
}

@keyframes slide-in-from-right {
  from {
    translate: 100vw 0;
  }
}

@keyframes slide-out-to-top {
  to {
    translate: 0 -100vh;
  }
}

@keyframes slide-out-to-left {
  to {
    translate: -100vw 0;
  }
}

@keyframes slide-out-to-right {
  to {
    translate: 100vw 0;
  }
}

::view-transition-group(*) {
  animation-duration: 500ms;
  animation-timing-function: ease-in;
}

::view-transition-group(slide) {
  animation-duration: 1000ms;
  animation-timing-function: ease-out;
}

html:active-view-transition-type(up) {
  &::view-transition-old(slide) {
    animation-name: slide-out-to-top;
  }
}

html:active-view-transition-type(down) {
  &::view-transition-new(slide) {
    animation-name: slide-in-from-top;
  }
}

html:active-view-transition-type(forward) {
  &::view-transition-old(slide) {
    animation-name: slide-out-to-left;
  }

  &::view-transition-new(slide) {
    animation-name: slide-in-from-right;
  }
}

html:active-view-transition-type(backward) {
  &::view-transition-old(slide) {
    animation-name: slide-out-to-right;
  }

  &::view-transition-new(slide) {
    animation-name: slide-in-from-left;
  }
}

/* global */
html {
  background-color: #1e2533;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Mulish';
  color: #FFFFFF;
  overflow: hidden;
}

a,
a:visited {
  color: #FFFFFF;
}

ul {
  margin: 0;
}

li::marker {
  color: #0032FC;
}

.highlight {
  background: #bcf5f1;
  color: #0433ff;
  font-weight: bold;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body-root {
  width: 1920px;
  min-width: 1920px;
  height: 1080px;
  min-height: 1080px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 36px;
  background-color: #1e2533;
  background-image: url("../images/bg_dark.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.body-root.bordered {
  border: 1px solid #424B5E;
}

/* index */
.title-slide {
  flex: 1;
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
}

.title-slide-cover {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title-slide-cover img {
  height: 100%;
}

.title-slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 96px 96px 0 96px;
}

.title-date {
  align-self: flex-start;
  background: #1e62ff;
  color: #000000;
  font-size: 24px;
  margin-bottom: 72px;
  padding: 4px 8px;
}

.title-slide-header {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 72px;
  font-weight: bold;
}

.title-slide-footer {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}

.title-slide-presenters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.title-slide-presenter {
  display: flex;
  flex-direction: row;
  background: #424b5e;
  padding: 8px;
  height: 75px;
  width: 400px;
  border-radius: 8px;
}

.title-slide-presenter:first-child .title-slide-presenter-border {
  background: #1e62ff;
}

.title-slide-presenter:last-child .title-slide-presenter-border {
  background: #1bdfc7;
}

.title-slide-presenter-border {
  width: 6px;
  height: 100%;
  border-radius: 6px;
}

.title-slide-presenter-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 18px;
  color: #bac1cf;
}

.title-slide-presenter-header {
  font-weight: bold;
  color: #FFFFFF;
}

.title-slide-launcher {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 8px;
}


.title-disclaimer {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 36px 0 36px 84px;
  gap: 36px;
}

.title-disclaimer img {
  height: 16px;
}

.title-disclaimer div {
  color: #727C8F;
  font-size: 10px;
}

.mini-launcher {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.mini-launcher-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.mini-launcher-dot {
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background: #FFFFFF;
}

.mini-launcher:hover .mini-launcher-dot {
  background: #727C8F;
}

/* launcher */
.close-button {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 24px;
}

.close-button i {
  color: #727C8F;
}

.close-button:hover i {
  color: #FFFFFF;
}

.launcher-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.launcher-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 800px;
  height: 600px;
}

.launcher-row {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.launcher-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.launcher-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.launcher-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 8px;
  background: #727C8F;
  border-radius: 24px;
  cursor: pointer;
}

.launcher-icon:hover {
  background: #2D57FF;
}

.launcher-icon i {
  font-size: 52px;
}

.launcher-disclaimer {
  position: absolute;
  left: 84px;
  bottom: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}

.launcher-disclaimer img {
  height: 16px;
}

.launcher-disclaimer div {
  color: #727C8F;
  font-size: 10px;
}

/* footer */
.footer-root {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 36px 0;
}

.footer-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #727C8F;
  border-radius: 100px;
  padding: 8px 24px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #727C8F;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 12px;
  transition: transform 200ms;
}

.footer-icon:hover {
  background: #424B5E;
  transform: scale(1.2);
}

.footer-icon:active,
.footer-icon.active {
  background: #2D57FF;
}

.footer-icon i {
  font-size: 36px;
}

.footer-divider {
  width: 1px;
  background: #DCDFE5;
  height: 42px;
}

/* slide */
.slide-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #1E2533;
  background: #FFFFFF;
  border-radius: 36px;
  padding: 36px 48px;
  overflow: hidden;
}

.slide-title {
  font-size: 64px;
  font-weight: bold;
}

.slide-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  font-size: 32px;
}

.slide-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 36px;
  margin: 36px 36px 0 36px;
}

.slide-footer img {
  height: 16px;
}

.slide-footer div {
  color: #BAC1CF;
  font-size: 10px;
}

a.slide-link {
  position: absolute;
  color: #1E2533;
  bottom: 50%;
}

a.slide-link.next-slide {
  right: 0;
}

a.slide-link.prev-slide {
  left: 0;
}

a.slide-link .slide-link-icon {
  left: 0;
}

a.slide-link .slide-link-icon-active {
  display: none;
  color: #0032fc;
}

a.slide-link:hover .slide-link-icon {
  display: none;
}

a.slide-link:hover .slide-link-icon-active {
  display: block;
}

/* team */
.team-slide .slide-content {
  align-items: center;
  justify-content: center;
  margin-top: 0;
  white-space: nowrap;
}

.team-list {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.team-column {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 440px;
}

.team-icon {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.team-icon img {
  width: 180px;
  height: 180px;
  border-radius: 90px;
}

.team-detail {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 4px;
}

.team-detail .name {
  font-weight: bold;
  font-size: 24px;
}

/* full stack */
.full-stack-slide {
  background: linear-gradient(to right, #FFFFFF 55%, #f5f7ff 45%);
}

.full-stack-slide .slide-content {
  flex-direction: row;
  font-size: 24px;
}

.full-stack-column-left {
  flex: 55;
}

.full-stack-column-right {
  flex: 45;
}

.full-stack-description {
  padding: 0 36px 0 20px;
}

.full-stack-image {
  padding-left: 36px;
}

.full-stack-image img {
  width: 100%;
}

ul.full-stack-list li {
  padding-left: 12px;
}

ul.full-stack-list li {
  margin-top: 36px;
}

ul.full-stack-list ul li {
  margin-top: 12px;
}

/* tech */
.tech-columns {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 36px;
}

.tech-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f5f7ff;
  border: 2px solid #0032fc;
  border-radius: 18px;
  padding: 24px 36px;
}

.tech-column-title {
  font-weight: bold;
}

.tech-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 24px;
}

.tech-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.tech-icon {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 24px;
}

.tech-icon img {
  height: 150px;
}

/* sdlc */
.sdlc-slide {
  background: linear-gradient(to left, #FFFFFF 60%, #f5f7ff 40%);
}

.sdlc-slide .slide-title {
  text-align: right;
}


.sdlc-columns {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.sdlc-left {
  flex: 4;
  display: flex;
  flex-direction: column;
}

.sdlc-right {
  flex: 6;
  display: flex;
  flex-direction: column;
}

.sdlc-image {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-right: 36px;
}

.sdlc-image img {
  width: 100%;
}

.sdlc-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  padding: 0 36px 0 48px;
  font-size: 24px;
}

.sdlc-detail-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.sdlc-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sdlc-detail-title {
  font-weight: bold;
}

/* apps */
.app-slide .slide-content {
  flex-direction: row;
  gap: 48px;
  margin-top: 48px;
}

.app-slide.internal-apps {
  background: linear-gradient(to right, #FFFFFF 50%, #f5f7ff 50%);
}

.app-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}

.app-slide.client-apps .app-list {
  padding-right: 68px;
}

.app-slide.internal-apps .app-list {
  padding-left: 68px;
  margin-top: 36px;
  gap: 48px;
}

.app-slide.internal-apps .app-title {
  margin-top: 0;
}

.app-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
}

.app-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-title {
  font-weight: bold;
  font-size: 24px;
  margin-top: 24px;
}

.app-description ul {
  padding-left: 28px;
}

.app-description ul li {
  margin-top: 12px;
  padding-left: 8px;
}

.ranger-image {
  flex: 1;
}

.ranger-image img {
  width: 100%;
}

/* environment */
.env-columns {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.env-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f5f7ff;
  border: 2px solid #0032fc;
  border-radius: 18px;
  padding: 24px 36px;
}

.env-column-title {
  text-align: center;
  font-weight: bold;
}

.env-column-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.env-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  border-radius: 16px;
  background: #0032fc;
  color: #FFFFFF;
  font-size: 24px;
}

.env-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 48px;
  margin-top: 40px;
}

/* integrations */
.integrations-slide {
  background: linear-gradient(to right, #ffffff 55%, #f5f7ff 45%);
}

.integrations-slide .slide-content {
  margin: 0;
}

.integrations-columns {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.integrations-content {
  flex: 55;
  display: flex;
  flex-direction: column;
  padding-top: 36px;
}

.integrations-summary {
  display: flex;
  flex-direction: column;
  padding: 48px 64px 0 80px;
}

.integrations-title {
  font-weight: bold;
  font-size: 28px;
}

.integrations-detail {
  font-size: 24px;
}

.integrations-detail ul {
  padding-left: 28px;
}

.integrations-detail li {
  margin-top: 12px;
  padding-left: 8px;
}


.integrations-image {
  flex: 45;
  display: flex;
  align-items: center;
  justify-content: center;
}


.third-party-content.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.third-party-table-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75%;
}

.third-party-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
}

.third-party-table tr:not(:last-child) td {
  border-bottom: 1px solid #c0d2ff;
}

.third-party-table td:not(:last-child) {
  border-right: 1px solid #c0d2ff;
}

.third-party-table td {
  padding: 20px 36px;
}

.third-party-table ul li {
  margin-top: 8px;
}

.third-party-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.partner-slide {
  background: linear-gradient(to left, #f5f7ff 60%, #ffffff 40%);
}

.partner-slide .slide-content {
  margin-top: -80px;
}

.integrations-content.partner {
  flex: 4;
  height: 100%;
  padding-top: 0;
}

.integrations-content.partner .integrations-summary {
  flex: 1;
  padding-top: 0;
  justify-content: center;
}


.integrations-image.partner {
  flex: 6;
  height: 100%;
  align-items: center;
}

/* security */
.security-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  gap: 36px;
}

.security-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.security-column {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 36px;
}

.security-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.security-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.security-description {
  font-size: 20px;
}

.security-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* testing */

.testing-categories {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  padding: 0 64px;
  margin-bottom: 64px;
}

.testing-category {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f5f7ff;
  border: 2px solid #0032fc;
  border-radius: 18px;
  padding: 24px 36px;
  min-height: 300px;
}

.testing-category-header {
  font-weight: bold;
  text-align: center;
}

.testing-category-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.unit-testing-slide {
  background: linear-gradient(to left, #f5f7ff 50%, #ffffff 50%);
}

.unit-testing-slide .slide-content {
  flex-direction: row;
  margin-top: 0;
}

.unit-testing-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.unit-testing-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 600px;
  margin-bottom: 48px;
}

.unit-testing-header {
  font-size: 36px;
  font-weight: bold;
}

.unit-testing-description {
  font-size: 28px;
}

.qa-columns {
  flex: 1;
  display: flex;
  flex-direction: row;
  padding: 96px;
  gap: 64px;
}

.qa-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.qa-column-title {
  font-weight: bold;
  font-size: 28px;
}

.qa-column-content {
  font-size: 24px;
}

.qa-column-content ul {
  padding-left: 28px;
}

.qa-column-content li {
  margin-top: 12px;
  padding-left: 8px;
}

.smoke-testing-slide {
  background: linear-gradient(to left, #ffffff 50%, #f5f7ff 50%);
}

.smoke-testing-slide .slide-content {
  flex-direction: row;
  margin-top: 0;
}

.smoke-testing-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.smoke-testing-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 600px;
  margin-bottom: 48px;
}

.smoke-testing-header {
  font-size: 36px;
  font-weight: bold;
}

.smoke-testing-description {
  font-size: 28px;
}