@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes gradientFlow {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@-webkit-keyframes pulseGlow {
  0%, 100% {
    -webkit-box-shadow: 0 0 20px rgba(0, 201, 167, 0.3);
            box-shadow: 0 0 20px rgba(0, 201, 167, 0.3); }
  50% {
    -webkit-box-shadow: 0 0 40px rgba(0, 201, 167, 0.5);
            box-shadow: 0 0 40px rgba(0, 201, 167, 0.5); } }

@keyframes pulseGlow {
  0%, 100% {
    -webkit-box-shadow: 0 0 20px rgba(0, 201, 167, 0.3);
            box-shadow: 0 0 20px rgba(0, 201, 167, 0.3); }
  50% {
    -webkit-box-shadow: 0 0 40px rgba(0, 201, 167, 0.5);
            box-shadow: 0 0 40px rgba(0, 201, 167, 0.5); } }

.reveal {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; }
  .reveal.revealed {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

.card-lift {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease; }
  .card-lift:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }

.img-zoom {
  overflow: hidden; }
  .img-zoom img {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  .img-zoom:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.gradient-text {
  background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.btn-gradient {
  background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
  background-size: 200% 200%;
  border: none;
  color: #fff;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn-gradient:hover {
    -webkit-animation: gradientFlow 3s ease infinite;
            animation: gradientFlow 3s ease infinite;
    -webkit-box-shadow: 0 10px 30px rgba(0, 201, 167, 0.4);
            box-shadow: 0 10px 30px rgba(0, 201, 167, 0.4);
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
  .btn-gradient:active, .btn-gradient:focus {
    color: #fff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.5);
            box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.5); }

.gradient-top-line {
  position: relative; }
  .gradient-top-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .gradient-top-line:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }

.dark-card {
  background: #141B2D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .dark-card:hover {
    background: #1E2942;
    border-color: rgba(0, 201, 167, 0.3);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

.glow-effect {
  position: relative; }
  .glow-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none; }

html {
  scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #495057; }

p {
  line-height: 1.75; }

a {
  color: #00C9A7;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  a:hover {
    color: #00D4FF; }

.text-primary {
  color: #00C9A7 !important; }

.bg-primary {
  background-color: #00C9A7 !important; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700; }

section {
  padding: 80px 0;
  background: #fff;
  color: #495057; }
  section h2.section-heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #212529;
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700; }
  section h3.section-subheading {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #868e96; }

@media (min-width: 768px) {
  section {
    padding: 120px 0; }
    section h2.section-heading {
      font-size: 3rem; }
    section h3.section-subheading {
      margin-bottom: 75px; } }

.section-dark {
  background: #0A0F1C;
  color: #fff;
  position: relative; }
  .section-dark h2.section-heading {
    color: #fff; }
  .section-dark h3.section-subheading {
    color: rgba(255, 255, 255, 0.6); }

.section-dark-surface {
  background: #141B2D;
  color: #fff;
  position: relative; }
  .section-dark-surface h2.section-heading {
    color: #fff; }
  .section-dark-surface h3.section-subheading {
    color: rgba(255, 255, 255, 0.6); }

.section-light {
  background: #fff;
  color: #495057;
  position: relative; }
  .section-light h2.section-heading {
    color: #212529; }
  .section-light h3.section-subheading {
    color: #868e96; }

.btn {
  font-weight: 600;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.btn-xl {
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px; }

.btn-lg {
  border-radius: 50px; }

.btn-primary {
  background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
  border: none;
  color: #fff; }
  .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    background: linear-gradient(135deg, #00b092 0%, #00bfe6 100%);
    color: #fff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
            box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3); }
  .btn-primary:active, .btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.5) !important;
            box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.5) !important; }

.btn-outline-light {
  border-width: 2px; }
  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff; }

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .service-card .service-icon i {
    font-size: 2rem;
    color: #fff; }

.service-card:hover .service-icon {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
  -webkit-box-shadow: 0 15px 30px rgba(0, 201, 167, 0.4);
          box-shadow: 0 15px 30px rgba(0, 201, 167, 0.4); }

.project-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .project-card:hover {
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
  .project-card .card-body {
    padding: 1.5rem; }

.bg-gradient-primary {
  background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%) !important;
  border: none; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important; }

.hover-gradient {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .hover-gradient:hover {
    background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

::-moz-selection {
  background: #00C9A7;
  text-shadow: none; }

::selection {
  background: #00C9A7;
  text-shadow: none; }

img::-moz-selection {
  background: transparent; }

img::selection {
  background: transparent; }

img::-moz-selection {
  background: transparent; }

#mainNav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  #mainNav .navbar-toggler {
    font-size: 12px;
    right: 0;
    padding: 13px;
    text-transform: uppercase;
    color: #495057;
    border: 1px solid rgba(73, 80, 87, 0.2);
    background-color: transparent; }
    #mainNav .navbar-toggler:hover {
      background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
      border-color: transparent;
      color: #fff; }
    #mainNav .navbar-toggler:focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.3);
              box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.3); }
  #mainNav .navbar-brand {
    color: #212529;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    #mainNav .navbar-brand img {
      vertical-align: top;
      height: 1.35em; }
    #mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
      color: #00C9A7; }
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 90%;
    font-weight: 500;
    padding: 0.75em 0;
    letter-spacing: 1px;
    color: #495057;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    #mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
      color: #00C9A7; }

@media (min-width: 992px) {
  #mainNav {
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    background-color: rgba(255, 255, 255, 0.95); }
    #mainNav .navbar-brand {
      font-size: 1.5em;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      #mainNav .navbar-brand img {
        vertical-align: top;
        height: 1.4em; }
    #mainNav .navbar-nav .nav-item .nav-link {
      padding: 1.1em 1em !important;
      color: #495057;
      position: relative; }
      #mainNav .navbar-nav .nav-item .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.8em;
        left: 1em;
        right: 1em;
        height: 2px;
        background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
      #mainNav .navbar-nav .nav-item .nav-link:hover::after, #mainNav .navbar-nav .nav-item .nav-link.active::after {
        -webkit-transform: scaleX(1);
                transform: scaleX(1); }
    #mainNav.navbar-shrink {
      padding-top: 0;
      padding-bottom: 0;
      background-color: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
              box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); }
      #mainNav.navbar-shrink .navbar-brand {
        font-size: 1.25em;
        padding: 12px 0; }
        #mainNav.navbar-shrink .navbar-brand img {
          vertical-align: top;
          height: 1em; } }

.page-home #mainNav {
  background-color: rgba(10, 15, 28, 0.95);
  -webkit-box-shadow: none;
          box-shadow: none; }
  .page-home #mainNav .navbar-toggler {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2); }
    .page-home #mainNav .navbar-toggler:hover {
      background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
      border-color: transparent;
      color: #fff; }
  .page-home #mainNav .navbar-brand {
    color: #fff; }
    .page-home #mainNav .navbar-brand.active, .page-home #mainNav .navbar-brand:active, .page-home #mainNav .navbar-brand:focus, .page-home #mainNav .navbar-brand:hover {
      color: #00C9A7; }
  .page-home #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.85); }
    .page-home #mainNav .navbar-nav .nav-item .nav-link.active, .page-home #mainNav .navbar-nav .nav-item .nav-link:hover {
      color: #00C9A7; }

@media (min-width: 992px) {
  .page-home #mainNav {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none; }
    .page-home #mainNav .navbar-nav .nav-item .nav-link {
      color: #fff; }
    .page-home #mainNav.navbar-shrink {
      background-color: rgba(10, 15, 28, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
              box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
      .page-home #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
        color: #fff; } }

header.masthead {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0A0F1C 0%, #141B2D 50%, #1E2942 100%);
  overflow: hidden; }
  header.masthead::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 201, 167, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    -webkit-animation: pulseGlow 8s ease-in-out infinite;
            animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none; }
  header.masthead::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none; }
  header.masthead .container {
    position: relative;
    z-index: 1; }
  header.masthead .intro-text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center; }
    header.masthead .intro-text .intro-lead-in {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px; }
    header.masthead .intro-text .intro-heading {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 30px;
      font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-weight: 700; }
      header.masthead .intro-text .intro-heading .gradient-text {
        background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block; }
    header.masthead .intro-text .intro-subheading {
      font-size: 1.1rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8; }

@media (min-width: 576px) {
  header.masthead .intro-text .intro-heading {
    font-size: 3rem; } }

@media (min-width: 768px) {
  header.masthead .intro-text {
    padding-top: 150px;
    padding-bottom: 150px; }
    header.masthead .intro-text .intro-lead-in {
      font-size: 20px;
      margin-bottom: 30px; }
    header.masthead .intro-text .intro-heading {
      font-size: 4rem;
      margin-bottom: 40px; }
    header.masthead .intro-text .intro-subheading {
      font-size: 1.25rem;
      margin-bottom: 50px; } }

@media (min-width: 992px) {
  header.masthead .intro-text {
    padding-top: 200px;
    padding-bottom: 200px; }
    header.masthead .intro-text .intro-heading {
      font-size: 5rem; } }

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    opacity: 0.7;
    -webkit-transform: translate(2%, 2%);
            transform: translate(2%, 2%); } }

.timeline {
  position: relative;
  padding: 0;
  list-style: none; }
  .timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: '';
    background-color: #e9ecef; }
  .timeline > li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px; }
    .timeline > li:after, .timeline > li:before {
      display: table;
      content: ' '; }
    .timeline > li:after {
      clear: both; }
    .timeline > li .timeline-panel {
      position: relative;
      float: right;
      width: 100%;
      padding: 0 20px 0 100px;
      text-align: left; }
      .timeline > li .timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0; }
      .timeline > li .timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0; }
    .timeline > li .timeline-image {
      position: absolute;
      z-index: 100;
      left: 0;
      width: 80px;
      height: 80px;
      margin-left: 0;
      text-align: center;
      color: white;
      border: 7px solid #e9ecef;
      border-radius: 100%;
      background-color: #00C9A7; }
      .timeline > li .timeline-image h4 {
        font-size: 10px;
        line-height: 14px;
        margin-top: 12px; }
    .timeline > li.timeline-inverted > .timeline-panel {
      float: right;
      padding: 0 20px 0 100px;
      text-align: left; }
      .timeline > li.timeline-inverted > .timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0; }
      .timeline > li.timeline-inverted > .timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0; }
    .timeline > li:last-child {
      margin-bottom: 0; }
  .timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit; }
    .timeline .timeline-heading h4.subheading {
      text-transform: none; }
  .timeline .timeline-body > ul,
  .timeline .timeline-body > p {
    margin-bottom: 0; }

@media (min-width: 768px) {
  .timeline:before {
    left: 50%; }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px; }
    .timeline > li .timeline-panel {
      float: left;
      width: 41%;
      padding: 0 20px 20px 30px;
      text-align: right; }
    .timeline > li .timeline-image {
      left: 50%;
      width: 100px;
      height: 100px;
      margin-left: -50px; }
      .timeline > li .timeline-image h4 {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px; }
    .timeline > li.timeline-inverted > .timeline-panel {
      float: right;
      padding: 0 30px 20px 20px;
      text-align: left; } }

@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px; }
    .timeline > li .timeline-panel {
      padding: 0 20px 20px; }
    .timeline > li .timeline-image {
      width: 150px;
      height: 150px;
      margin-left: -75px; }
      .timeline > li .timeline-image h4 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 30px; }
    .timeline > li.timeline-inverted > .timeline-panel {
      padding: 0 20px 20px; } }

@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px; }
    .timeline > li .timeline-panel {
      padding: 0 20px 20px 100px; }
    .timeline > li .timeline-image {
      width: 170px;
      height: 170px;
      margin-left: -85px; }
      .timeline > li .timeline-image h4 {
        margin-top: 40px; }
    .timeline > li.timeline-inverted > .timeline-panel {
      padding: 0 100px 20px 20px; } }

.team-member {
  margin-bottom: 50px;
  text-align: center; }
  .team-member img {
    width: 225px;
    height: 225px;
    border: 7px solid #fff; }
  .team-member h4 {
    margin-top: 25px;
    margin-bottom: 0;
    text-transform: none; }
  .team-member p {
    margin-top: 0; }

section#contact {
  background: #0A0F1C;
  position: relative;
  overflow: hidden; }
  section#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 201, 167, 0.08) 0%, transparent 60%);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none; }
  section#contact .container {
    position: relative;
    z-index: 1; }
  section#contact .section-heading {
    color: #fff; }
  section#contact .section-subheading {
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
    line-height: 1.8; }
  section#contact .form-group {
    margin-bottom: 25px; }
    section#contact .form-group input,
    section#contact .form-group textarea {
      padding: 20px;
      background: #141B2D;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      border-radius: 8px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      section#contact .form-group input:focus,
      section#contact .form-group textarea:focus {
        background: #1E2942;
        border-color: #00C9A7;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.2);
                box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.2); }
    section#contact .form-group input.form-control {
      height: auto; }
    section#contact .form-group textarea.form-control {
      height: 248px; }
  section#contact .form-control:focus {
    border-color: #00C9A7;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.2);
            box-shadow: 0 0 0 0.2rem rgba(0, 201, 167, 0.2); }
  section#contact ::-webkit-input-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4); }
  section#contact :-moz-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4); }
  section#contact ::-moz-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4); }
  section#contact :-ms-input-placeholder {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4); }

footer {
  padding: 40px 0;
  background: #0A0F1C;
  color: rgba(255, 255, 255, 0.7); }
  footer a {
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    footer a:hover {
      color: #00C9A7; }
  footer .copyright {
    font-size: 90%;
    line-height: 1.8;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5); }

ul.social-buttons {
  margin-bottom: 0; }
  ul.social-buttons li a {
    font-size: 20px;
    line-height: 40px;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: white;
    border-radius: 100%;
    outline: none;
    background-color: #141B2D;
    border: 1px solid rgba(255, 255, 255, 0.1); }
    ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
      background: linear-gradient(135deg, #00C9A7 0%, #00D4FF 100%);
      border-color: transparent;
      -webkit-transform: translateY(-3px);
              transform: translateY(-3px);
      -webkit-box-shadow: 0 10px 20px rgba(0, 201, 167, 0.3);
              box-shadow: 0 10px 20px rgba(0, 201, 167, 0.3); }

.releases {
  padding-top: 120px;
  background: #fff; }
  .releases .section-heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #212529; }
  .releases .section-subheading {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.25rem;
    color: #868e96; }
  .releases .card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .releases .card:hover {
      border-color: rgba(0, 201, 167, 0.3);
      -webkit-transform: translateY(-5px);
              transform: translateY(-5px);
      -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
              box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
    .releases .card .card-body {
      padding: 1.5rem; }
    .releases .card .card-title {
      color: #212529; }
      .releases .card .card-title a {
        color: #212529; }
        .releases .card .card-title a:hover {
          color: #00C9A7; }
    .releases .card .card-text {
      color: #868e96; }

.section-dark-surface #releases .card, .section-dark-surface.releases-dark .card {
  background: #1E2942;
  border: 1px solid rgba(255, 255, 255, 0.1); }
  .section-dark-surface #releases .card:hover, .section-dark-surface.releases-dark .card:hover {
    border-color: rgba(0, 201, 167, 0.3);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
  .section-dark-surface #releases .card .card-title, .section-dark-surface.releases-dark .card .card-title {
    color: #fff; }
    .section-dark-surface #releases .card .card-title a, .section-dark-surface.releases-dark .card .card-title a {
      color: #fff; }
      .section-dark-surface #releases .card .card-title a:hover, .section-dark-surface.releases-dark .card .card-title a:hover {
        color: #00C9A7; }
  .section-dark-surface #releases .card .card-text, .section-dark-surface.releases-dark .card .card-text {
    color: rgba(255, 255, 255, 0.6); }

#releases .card {
  border: none;
  overflow: hidden; }
  #releases .card .card-img-top {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  #releases .card:hover .card-img-top {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

@media (min-width: 768px) {
  .releases .section-heading {
    font-size: 3rem; } }
