<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body {
 
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

@font-face {
  font-family: ttprostosanscondensed-bold;
  src: url(../fonts/fonts2/typetype_-_ttprostosanscondensed-bold-webfont.ttf);
}

@font-face {
  font-family: ttprostosanscondensed-light;
  src: url(../fonts/fonts2/typetype_-_ttprostosanscondensed-light-webfont.ttf);
}

@font-face {
  font-family: ttprostosanscondensed-regular;
  src: url(../fonts/fonts2/typetype_-_ttprostosanscondensed-regular-webfont.ttf);
}


.com {
  display: flex;
  align-items: stretch;
  height: 400px;
  overflow: hidden;
}
.com__content {
  position: relative;
  flex: 8;
  background: transparent;
  padding: 10vh 10vw;
}
.com__content0 {
  position: relative;
  flex: 8;
  background: #59bac3;
  padding: 10vh 10vw;
}
.com__content1 {
  position: relative;
  flex: 8;
  background: #eb825e;
  padding: 10vh 10vw;
}
.com__content2 {
  position: relative;
  flex: 8;
  background: #47a9de;
  padding: 10vh 10vw;
}
.com__content3 {
  position: relative;
  flex: 8;
  background:#235761;
  padding: 10vh 10vw;
}
.com__content4 {
  position: relative;
  flex: 8;
  background:#9074ae;
  padding: 10vh 10vw;
}

.com__content5 {
  position: relative;
  flex: 8;
  background:#007bc0;
  padding: 10vh 10vw;
}




.com__section {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.com__section.active {
  opacity: 1;
  visibility: visible;
}
.com__section-half {
  flex: 1;
  height: 400px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
.com__section--text h1 {
    font-weight: 400;
    font-family: 'ttprostosanscondensed-bold',Helvetica,Arial,sans-serif;
    font-size: 57px;
    color: #fff;
    letter-spacing: -2px;
    text-transform: none;
    margin-bottom: 20px;
}
.com__section--text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 20px;
}
/*.com__section--text img {
  max-width: 250px;
  margin: 0 auto;
}*/
.com__section--text.centered {
  text-align: center;
}
.com__section--text-img {
  display: flex;
  flex-flow: row wrap;
}
.com__nav {
  width: 90px;
}
.com__nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: column wrap;
  height: 400px;
  overflow: visible;
}
.com__nav-item {
  flex: 1;
  position: relative;
  overflow: visible;
  border-bottom: 7px solid #1BAFB9;
  background: #22E2ED;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.com__nav-item.active {
  background: #20232a;
}
.com__nav-item:last-child {
  border-bottom: none;
}
.com__nav-item:hover {
  flex: 2;
}
.com__nav-item:hover .com__nav-link {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.com__nav-item:hover .blue-line,
.com__nav-item:hover .white-line,
.com__nav-item:hover .white-circle {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
.com__nav-link {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding: 0 20%;
  position: absolute;
  width: 280%;
  height: 100%;
  left: calc(-280% + 90px);
  background: rgba(32, 35, 42, 0.75);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.com__nav-link.flex-row {
  flex-flow: row wrap;
}
.com__nav-link.centered {
  align-items: center;
}
.com__nav-link .com__section-half {
  height: auto;
}
.com__nav-link .com__section-half:nth-child(2) {
  align-items: center;
}

.blue-line {
  display: block;
  width: 80%;
  height: 14px;
  background: #22E2ED;
  margin-bottom: 12px;
}

.white-line {
  display: block;
  width: 60%;
  height: 5px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 7px;
}
.white-line:nth-of-type(3) {
  width: 50%;
}

.white-circle {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

/* animation classes */
.animate {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slideInLeft {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.slideInRight {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.scaleIn {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.scaleInLeft {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.delay-1 {
  transition-delay: 0.05s;
}

.delay-2 {
  transition-delay: 0.1s;
}

.delay-3 {
  transition-delay: 0.15s;
}

.delay-4 {
  transition-delay: 0.2s;
}

.delay-5 {
  transition-delay: 0.25s;
}

.logo {
  position: fixed;
  bottom: 3vh;
  left: 3vw;
  z-index: 2;
}
.logo img {
  width: 45px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.logo img:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}
</pre></body></html>