/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  background-color: #0b132a;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #0a0a0a;
  line-height: 1.7;
  font-size: 19px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  overflow-x: hidden;
}

p {
  margin: 0 0 30px;
}

a {
  color: currentColor;
  text-decoration: none;
  outline: none;
}
a:hover,
a:focus {
  color: currentColor;
}
p a {
  color: currentColor;
  opacity: 0.7;
  font-style: italic;
  border-bottom: 1px solid;
}
p a:hover,
p a:focus {
  color: currentColor;
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: bold;
  font-weight: 700;
}

section {
  position: relative;
}

button {
}
button:focus {
  outline: none;
}

.small,
small {
  font-size: 80%;
}

hr {
  width: 100%;
  height: 0;
  border: none;
  border-bottom: 1px solid rgb(144 144 144 / 30%);
}

.anim-image-parallax {
  transform: scale(1.2);
  transform-origin: 50% 100%;
}

/* Selection */
::selection {
  color: #fff;
  text-shadow: none;
  background: #4c2122;
}
::-moz-selection {
  color: #fff;
  text-shadow: none;
  background: #4c2122; /* Firefox */
}
::-webkit-selection {
  color: #fff;
  text-shadow: none;
  background: #4c2122; /* Safari */
}

/* Lists */
.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* Disable scroll */
.tt-no-scroll {
  overflow-y: hidden !important;
}

/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */

/* Body font
============= */
body {
  font-family: "Kaisei HarunoUmi", serif;
  font-family: "Roboto", sans-serif;
}

/* Secondary font
================== */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
#ball,
.tt-main-menu,
.ph-caption-title-ghost,
.ph-caption-subtitle,
.scroll-down-circle,
.made-with-love,
.tt-ol-menu-toggle-btn-text,
.tt-m-menu-toggle-btn-text,
.tt-ol-menu-list,
.tt-heading,
.tt-btn,
.social-buttons,
.footer-social,
.tt-ps-nav-pagination,
.tt-pc-navigation,
.tt-cc-pagination,
.tt-phc-item::before,
.tt-phc-counter,
.pli-counter,
.ttgr-cat-trigger-wrap,
.ttgr-cat-list,
.ttgr-cat-classic-nav,
.tt-copyright,
.tt-pn-link,
.tt-pn-subtitle,
.ph-share-ghost,
.tt-search-ghost,
.tt-pagination,
#blog-list.bli-compact .bli-info::before {
  font-family: "Kaisei HarunoUmi", serif;
}

/* ------------------------------------------------------------- *
 * Page transitions
/* ------------------------------------------------------------- */

#page-transition {
  display: none;
}
body.tt-transition #page-transition {
  position: relative;
  display: block;
  z-index: 99999;
}

/* Transition overlay */
body.tt-transition .ptr-overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111;
  z-index: 1;
  color: white;
  /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 50% 0%); */
  clip-path: ellipse(150% 100% at 50% 0);
  -webkit-clip-path: ellipse(150% 100% at 50% 0);
}
body.tt-transition .ptr-overlay::after {
  /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 50% 0%); */

  clip-path: ellipse(150% 100% at 50% 0);
  -webkit-clip-path: ellipse(150% 100% at 50% 0);
}

/* Transition preloader */
body.tt-transition .ptr-preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

body.tt-transition .ptr-prel-content {
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  color: white;
  background-color: #000;
}

.ptr-prel-image {
  max-height: 96px; /* You may need to change the img height to match your logo type! */
  opacity: 0.2; /* You may need to change the opacity as well! */
}

/* ----------------------------------------------------------------------------------------- *
 * Page boxed layout
 * Note: Class "boxed" in <body> tag is connected with class "tt-wrap" in several places!
/* ----------------------------------------------------------------------------------------- */

body.tt-boxed .tt-wrap {
  /* max-width: 1282px; */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

body.tt-boxed .tt-wrap .tt-wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ------------------------------------------------------------- *
 * Body inner
/* ------------------------------------------------------------- */

#body-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
}

/* ------------------------------------------------------------- *
 * Content wrap
/* ------------------------------------------------------------- */

#content-wrap {
  position: relative;
  overflow: hidden;
}

/* ------------------------------------------------------------- *
 * Custom scrollbar style
/* ------------------------------------------------------------- */

.tt-custom-scrollbar {
  overflow-y: auto;
}

/* Works on Firefox */
.tt-custom-scrollbar,
.tt-sliding-sidebar-inner,
select {
  scrollbar-width: thin;
  scrollbar-color: #666 #fefdfd;
}

select::-webkit-scrollbar {
  width: 10px;
}

/* ------------------------------------------------------------- *
 * Smooth Scrollbar
 * Source: https://github.com/idiotWu/smooth-scrollbar/
/* ------------------------------------------------------------- */

/* Hide default scrollbar */
body:not(.is-mobile).tt-smooth-scroll {
  overflow: hidden;
}

/* Scroll content (added if <body> contain class "tt-smooth-scroll". Disabled on mobile devices!) */
body:not(.is-mobile).tt-smooth-scroll #scroll-container {
  width: auto;
  height: 100vh;
  overflow: auto;
  margin: 0;
}

/* Styling scrollbar */
.scrollbar-track {
  background: transparent !important;
  z-index: 99999 !important;
}
.scrollbar-track:hover {
  /*background: rgba(222, 222, 222, 0.1) !important;*/
}
.scrollbar-thumb {
  background: #ddd !important;
  opacity: 0.25;
  transition: opacity 0.2s ease-in-out;
}
.scrollbar-track:hover .scrollbar-thumb {
  opacity: 0.5;
}

/* ------------------------------------------------------------- *
 * Magic cursor
/* ------------------------------------------------------------- */

#magic-cursor {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}
body.tt-magic-cursor #magic-cursor {
  display: block;
}

#ball {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  pointer-events: none;
  border-style: solid;
  border-color: #fff;
  border-radius: 50%;

  /* Note: border width handled through JS */
}

/* Ball view 
============= */
#ball .ball-view {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #e90a0a;
  line-height: 1.3;
  text-align: center;
  transform: scale(0);
}

#ball .ball-view i {
  font-size: 19px;
}

/* Ball drag 
============= */
#ball .ball-drag {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s;
}
#ball .ball-drag::before,
#ball .ball-drag::after {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 19px;
  color: #fff;
  height: 10px;
  line-height: 10px;

  /* Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#ball .ball-drag::before {
  content: "\f104"; /* Font Awesome */
  left: 0;
  transform: translate3d(-30px, 0, 0);
  transition: all 0.25s;
}
#ball .ball-drag::after {
  content: "\f105"; /* Font Awesome */
  right: 0;
  transform: translate3d(30px, 0, 0);
  transition: all 0.25s;
}

/* Ball close 
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}
#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-align: center;
}

/* ------------------------------------------------------------- *
 * tt-Section
/* ------------------------------------------------------------- */

.tt-section {
  position: relative;
  /* padding: 167px 0; */
}
@media (max-width: 991px) {
  .tt-section {
    padding: 6% 0;
  }
}
@media (max-width: 767px) {
  .tt-section {
    padding: 10% 0;
  }
  /* Hide default scrollbar */
  body:not(.is-mobile).tt-smooth-scroll {
    overflow: hidden;
  }

  /* Scroll content (added if <body> contain class "tt-smooth-scroll". Disabled on mobile devices!) */
  body:not(.is-mobile).tt-smooth-scroll #scroll-container {
    width: auto;
    height: 100vh;
    overflow: auto;
    margin: 0;
  }

  /* Styling scrollbar */
  .scrollbar-track {
    background: transparent !important;
    z-index: 99999 !important;
  }
  .scrollbar-track:hover {
    /*background: rgba(222, 222, 222, 0.1) !important;*/
  }
  .scrollbar-thumb {
    background: transparent !important;
    opacity: 0.1;
    transition: opacity 0.2s ease-in-out;
  }
  .scrollbar-track:hover .scrollbar-thumb {
    opacity: 0.5;
  }
}
@media (max-width: 480px) {
  .tt-section {
    padding: 15% 0;
  }
}

/* tt-section background image 
=============================== */
.tt-section-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

/* tt-section inner 
==================== */
.tt-section-inner {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

/* ------------------------------------------------------------- *
 * Headings
/* ------------------------------------------------------------- */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-weight: 500;
  color: inherit;
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  line-height: 1.4;
  margin-top: 0px;
  margin-bottom: 30px;
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 30px;
}

.h1,
h1 {
  font-size: 46px;
}
.h2,
h2 {
  font-size: 42px;
}
.h3,
h3 {
  font-size: 38px;
}
.h4,
h4 {
  font-size: 34px;
}
.h5,
h5 {
  font-size: 30px;
}
.h6,
h6 {
  font-size: 26px;
}

/* ------------------------------------------------------------- *
 * tt-Headings (custom headings)
/* ------------------------------------------------------------- */

.tt-heading {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .tt-heading {
    margin-bottom: 30px;
  }
}

/* tt-Headings title */
.tt-heading-title {
  margin: 0;
  font-size: calc(24px + 1vw);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
}

/* tt-Headings subtitle */
.tt-heading-subtitle {
  margin: 0 0 20px 0;
  font-size: calc(19px + 0.1vw);
  font-weight: bold;
  font-weight: normal;
  color: #fff;
}
.tt-heading-title + .tt-heading-subtitle {
  margin: 20px 0 0 0;
}

/* tt-Headings paragraph */
.tt-heading > p:first-child {
  margin-bottom: 0;
}
.tt-heading-title + p,
.tt-heading-subtitle + p {
  margin-top: 50px;
}
.tt-heading > p:last-child {
  margin-bottom: 0;
}

/* tt-Headings styles 
====================== */
/* style stroke */
.tt-heading.tt-heading-stroke .tt-heading-title {
  font-weight: bold;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
}

/* If "text-gray" is used */
.tt-heading.tt-heading-stroke .tt-heading-title.text-gray {
  -webkit-text-stroke-color: #a2a2a2;
}

/* If Firefox */
body.is-firefox .tt-heading.tt-heading-stroke .tt-heading-title {
  -webkit-text-stroke-width: 2px;
}

/* tt-Headings positions 
========================= */
/* position center */
.tt-heading.tt-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* tt-Headings sizes 
===================== */
/* size xsm */
.tt-heading.tt-heading-xsm .tt-heading-title {
  font-size: calc(24px + 0.1vw);
  font-weight: bold;
  font-weight: 600;
}
.tt-heading.tt-heading-xsm .tt-heading-subtitle {
  font-size: calc(13px + 0.1vw);
}

/* size sm */
.tt-heading.tt-heading-sm .tt-heading-title {
  font-size: calc(24px + 0.5vw);
  font-weight: bold;
  font-weight: 600;
}
.tt-heading.tt-heading-sm .tt-heading-subtitle {
  font-size: calc(15px + 0.1vw);
}

/* size lg */
.tt-heading.tt-heading-lg .tt-heading-title {
  font-size: calc(28px + 2vw);
  line-height: 1.3;
}
.tt-heading.tt-heading-lg .tt-heading-subtitle {
  font-size: calc(16px + 0.3vw);
  font-weight: bold;
  font-weight: 500;
}

/* size xlg */
.tt-heading.tt-heading-xlg .tt-heading-title {
  font-size: calc(28px + 3vw);
  line-height: 1.2;
}
@media (min-width: 1025px) {
  .tt-heading.tt-heading-xlg.tt-heading-stroke .tt-heading-title {
    -webkit-text-stroke-width: 1px;
  }
}
.tt-heading.tt-heading-xlg .tt-heading-subtitle {
  font-size: calc(16px + 0.3vw);
  font-weight: bold;
  font-weight: 500;
}

/* size xxlg */
.tt-heading.tt-heading-xxlg .tt-heading-title {
  font-size: calc(28px + 4.5vw);
  line-height: 1.2;
}
@media (min-width: 1025px) {
  .tt-heading.tt-heading-xxlg.tt-heading-stroke .tt-heading-title {
    -webkit-text-stroke-width: 1px;
  }
}
.tt-heading.tt-heading-xxlg .tt-heading-subtitle {
  font-size: calc(21px + 0.3vw);
  font-weight: bold;
  font-weight: 500;
}

/* ------------------------------------------------------------- *
 * tt-Header
/* ------------------------------------------------------------- */
/* #page-header.ph-full {
	background-color: #0B132A;
} */
#tt-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 999;
  pointer-events: none;
}

/* header position fixed */
#tt-header.tt-header-fixed {
  position: fixed;
}

/* header inner */
.tt-header-inner {
  width: 100%;
  display: flex;
  padding-top: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .tt-header-inner {
    padding-top: 20px;
  }
}

body:not(.tt-boxed) .tt-header-inner,
.tt-header-inner:not(.tt-wrap) {
  padding-left: 3.5%;
  padding-right: 3.5%;
}

/* header columns */
.tt-header-col {
  display: flex;
  align-items: center;
}
.tt-header-col:first-child {
  margin-right: auto;
}

/* Header logo 
=============== */
.tt-logo {
  position: absolute;
  top: 40px;
  margin-right: auto;
  line-height: 1;
  pointer-events: initial;
  z-index: 9;
  margin-left: -47px;
}
.tt-logo a {
  display: inline-block;
  font-size: 21px;
  color: #fff;
}
.tt-logo img {
  /* max-height: 48px;  */
  width: 143px;
  height: 157px;
  margin-right: 112px;
}
.tt-logo .tt-logo-light {
  width: 84px;
  height: 100%;
}

/* Logo for small screens */
@media (max-width: 1024px) {
  .tt-logo {
    top: 20px;
  }
  .tt-logo img {
    max-height: 42px; /* You may need to change the img height to match your logo type! */
  }
}

/* ------------------------------------------------------------- *
 * Header tools 
/* ------------------------------------------------------------- */

.tt-header-tools {
  position: relative;
  display: flex;
  pointer-events: initial;
}

/* Header tools item icon */
.tt-hti-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 1024px) {
  .tt-hti-btn {
    width: 40px;
  }
}
.tt-hti-btn-count {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 3px;
  width: 16px;
  height: 16px;
  background-color: #b50408;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

/* ------------------------------------------------------------- *
 * Classic menu
/* ------------------------------------------------------------- */

/* Classic menu (desktop)
========================== */
@media (min-width: 1200px) {
  .tt-main-menu {
    pointer-events: initial;
  }
  body.tt-header-tools-on .tt-main-menu {
    margin-right: 20px;
  }
  .tt-main-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0; /* inline list cap fix */
  }
  .tt-main-menu-list > li {
    display: inline-block;
    font-size: inherit; /* inline list cap fix */
    padding: 0 20px;
    transition: opacity 0.2s;
  }
  .tt-main-menu-list > li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .tt-main-menu-list > li:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .tt-main-menu-list > li > a,
  .tt-main-menu-list > li > .tt-submenu-trigger > a {
    display: block;
    padding: 20px 5px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s, opacity 0.3s;
  }

  /* submenu links */
  .tt-submenu-list {
    margin: 0;
    padding: 15px 0;
    list-style: none;
  }
  .tt-submenu-list li {
    width: 100%;
  }
  .tt-submenu-list li:first-child {
  }
  .tt-submenu-list li:last-child {
  }
  .tt-submenu-list li a {
    position: relative;
    display: block;
    padding: 10px 25px 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #111;
    transition: all 0.2s ease-in-out;
  }
  .tt-submenu-list > li a:hover,
  .tt-submenu-list > li > .tt-submenu-trigger:hover a,
  .tt-submenu-list > li.active > a,
  .tt-submenu-list > li.active > .tt-submenu-trigger a {
    background-color: rgba(0, 0, 0, 0.05);
  }

  /* Set submenu position to right on last menu list element */
  .tt-main-menu-list > li:last-child > .tt-submenu {
    left: auto;
    right: 0;
  }

  /* Submenu toggle */
  .tt-m-caret {
    display: none;
  }

  /* Sub-submenu */
  .tt-submenu .tt-submenu-wrap > .tt-submenu {
    left: 100%;
    right: auto;
    margin-top: -50px;
    margin-left: 0;
  }

  /* Caret (requires FontAwesome: https://fontawesome.com/) */
  .tt-submenu-trigger > a::after {
    margin-left: 10px;
    font-size: 12px;
    line-height: 0;

    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

  /* Caret in sub-submenus */
  .tt-submenu-wrap .tt-submenu-wrap .tt-submenu-trigger > a::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(-90deg);
  }

  /* Hide ".tt-submenu-trigger-m" on desktop */
  .tt-submenu-trigger .tt-submenu-trigger-m {
    display: none;
  }

  /* Submenu styles 
	================== */
  /* Submenu dark style */
  .tt-submenu-dark .tt-submenu {
    background-color: #212121;
    color: #a9a9a9;
  }
  .tt-submenu-dark .tt-submenu .tt-submenu-list li a {
    color: #a9a9a9;
  }
  .tt-submenu-dark .tt-submenu .tt-submenu-list > li a:hover,
  .tt-submenu-dark
    .tt-submenu
    .tt-submenu-list
    > li
    > .tt-submenu-trigger:hover
    a,
  .tt-submenu-dark .tt-submenu .tt-submenu-list > li.active > a,
  .tt-submenu-dark
    .tt-submenu
    .tt-submenu-list
    > li.active
    > .tt-submenu-trigger
    a {
    color: #fff;
    background-color: transparent;
  }
}

/* Show mobile menu on small screens only */
@media (max-width: 1199px) {
  .tt-main-menu {
    pointer-events: initial;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
  }
  .tt-main-menu-holder {
    position: relative;
    height: 100%;
    width: calc(100% + 17px);
    overflow-y: scroll;
    z-index: 2;
  }
  body.is-mobile .tt-main-menu-holder {
    padding-right: 17px;
  }
  .tt-main-menu-inner {
    display: table;
    width: 100%;
    height: 100%;
    padding: 20% 7%;
  }
  .tt-main-menu-content {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
  }

  /* Mobile menu list */
  .tt-main-menu-list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .tt-main-menu-list > li {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .tt-main-menu-list > li:first-child {
    margin-top: 0;
  }
  .tt-main-menu-list > li:last-child {
    margin-bottom: 0;
  }
  .tt-main-menu-list > li a {
    position: relative;
    display: inline-block;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: #eaeaea;
  }
  @media (max-width: 767px) {
    .tt-main-menu-inner {
      padding-top: 35%;
      padding-bottom: 35%;
    }
    .tt-main-menu-list > li a {
      font-size: 34px;
    }
  }

  /* Mobile menu list hover/active (master parent) */
  .tt-main-menu-list > li a:hover,
  .tt-main-menu-list > li > .tt-submenu-trigger:hover a,
  .tt-main-menu-list > li > .tt-submenu-trigger:hover .tt-m-caret,
  .tt-main-menu-list > li.active > a,
  .tt-main-menu-list > li.active > .tt-submenu-trigger a,
  .tt-main-menu-list > li.active > .tt-submenu-trigger .tt-m-caret {
    color: #fff;
  }

  /* Mobile submenu */
  .tt-submenu-wrap {
    position: relative;
  }
  .tt-submenu-trigger {
    position: relative;
    display: inline-block;
  }

  .tt-submenu-trigger > a {
    position: relative;
    z-index: 1;
  }
  .tt-submenu-trigger .tt-submenu-trigger-m {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
  }

  .tt-submenu {
    display: none;
    position: relative;
    top: auto;
    left: 0 !important;
    min-width: 100%;
    background-color: transparent;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #a9a9a9;
  }

  .tt-submenu-list {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
  }
  .tt-submenu-list .tt-submenu {
    margin-top: 10px;
  }
  .tt-submenu-list > li {
  }
  .tt-submenu-list > li a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: normal;
    color: #aaa;
    -webkit-text-stroke: 0;
  }

  /* Mobile submenu list hover/active */
  .tt-submenu-list > li a:hover,
  .tt-submenu-list > li > .tt-submenu-trigger:hover a,
  .tt-submenu-list > li > .tt-submenu-trigger:hover .tt-m-caret,
  .tt-submenu-list > li > .tt-submenu-trigger.tt-m-submenu-open a,
  .tt-submenu-list > li > .tt-submenu-trigger.tt-m-submenu-open .tt-m-caret,
  .tt-submenu-list > li.active > a,
  .tt-submenu-list > li.active > .tt-submenu-trigger a,
  .tt-submenu-list > li.active > .tt-submenu-trigger .tt-m-caret {
    color: #fff;
  }

  /* Mobile submenu caret (requires FontAwesome: https://fontawesome.com/) */
  .tt-m-caret {
    position: absolute;
    top: 55%;
    right: -42px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #eaeaea;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    transform: translate3d(0, -50%, 0);
  }
  .tt-m-caret::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s ease-in-out;
  }
  .tt-submenu-trigger.tt-m-submenu-open .tt-m-caret::after {
    transform: rotate(180deg);
  }

  /* Mobile sub-submenu caret */
  .tt-submenu-list > li > .tt-submenu-trigger .tt-m-caret {
    color: #8a8a8a;
  }

  /* Mobile menu toggle button */

  .tt-m-menu-toggle-btn-holder {
    float: left;
  }

  .tt-m-menu-toggle-btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
  }
  .tt-m-menu-toggle-btn span {
    position: absolute;
    display: block;
    top: 52%;
    left: 50%;
    height: 2px;
    width: 24px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }
  .tt-m-menu-toggle-btn span::before,
  .tt-m-menu-toggle-btn span::after {
    position: absolute;
    display: block;
    content: "";
    height: 2px;
    width: 24px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .tt-m-menu-toggle-btn span::before {
    top: -4px;
    width: 24px;
  }
  .tt-m-menu-toggle-btn span::after {
    top: auto;
    bottom: -4px;
    width: 18px;
  }

  /* Toggle button text */
  .tt-m-menu-toggle-btn-text {
    float: left;
    padding-right: 5px;
    overflow: hidden;
    text-align: right;
    font-size: 16px;
  }
  body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-menu {
    display: none;
  }

  /* Toggle button close */
  body.tt-m-menu-open .tt-m-menu-toggle-btn span {
    width: 20px;
    background-color: transparent;
  }
  body.tt-m-menu-open .tt-m-menu-toggle-btn span::before {
    top: 0;
    width: 20px;
    transform: rotate(45deg);
  }
  body.tt-m-menu-open .tt-m-menu-toggle-btn span::after {
    bottom: 0;
    width: 20px;
    transform: rotate(-45deg);
  }

  .tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
    display: none;
  }
  body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
    display: block;
  }

  /* Align mobile menu to center */
  .tt-main-menu.tt-m-menu-center .tt-main-menu-content {
    text-align: center;
  }
  .tt-main-menu.tt-m-menu-center .tt-submenu-list {
    margin: 0;
  }
}

/* ------------------------------------------------------------- *
 * Overlay menu 
/* ------------------------------------------------------------- */

/* Overlay menu 
================ */
.tt-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a0a0a;
  visibility: hidden;
  opacity: 0;
  pointer-events: initial;
}
.tt-ol-menu-holder {
  position: relative;
  height: 100%;
  width: calc(100% + 17px);
  padding-right: 17px;
  overflow-y: scroll;
  z-index: 2;
  background-color: #0b132a;
}
.tt-ol-menu-inner {
  display: table;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}
.tt-ol-menu-content {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 120px 5% 120px 5%;
}
@media (max-width: 767px) {
  .tt-ol-menu-content {
    padding-top: 25%;
    padding-bottom: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Disable page scroll if overlay menu is open */
body.tt-ol-menu-open {
  overflow-y: hidden !important;
}

/* Hide smooth scrollbar if overlay menu is open */
body.tt-smooth-scroll.tt-ol-menu-open .scrollbar-track {
  display: none !important;
}

/* Overlay menu list */
.tt-ol-menu-list {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tt-ol-menu-list > li {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .tt-ol-menu-list > li {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.tt-ol-menu-list > li:first-child {
  margin-top: 0;
}
.tt-ol-menu-list > li:last-child {
  margin-bottom: 0;
}

/* Overlay menu list item counter */
@media (min-width: 992px) {
  .tt-overlay-menu.tt-ol-menu-count .tt-ol-menu-list {
    counter-reset: ol-menu-list-counter;
  }
  .tt-overlay-menu.tt-ol-menu-count .tt-ol-menu-list > li > a::before,
  .tt-overlay-menu.tt-ol-menu-count
    .tt-ol-menu-list
    > li
    > .tt-ol-submenu-trigger
    > a::before {
    position: absolute;
    counter-increment: ol-menu-list-counter;
    content: "" counter(ol-menu-list-counter, decimal-leading-zero);
    top: 5px;
    left: -30px;
    line-height: 1;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    opacity: 0.4;
  }
}

/* Overlay menu list links (master parent) */
.tt-ol-menu-list > li > a,
.tt-ol-menu-list > li > .tt-ol-submenu-trigger > a {
  position: relative;
  display: inline-block;
  font-size: clamp(34px, 3.2vw, 62px);
  font-weight: bold;
  font-weight: 600;
  line-height: 1.2;
  color: #eaeaea;
  /* transition: opacity 0.3s ease-in-out; */
}

/* Overlay menu submenu */
.tt-ol-submenu-wrap {
  position: relative;
}
.tt-ol-submenu-trigger {
  position: relative;
  display: inline-block;
}
.tt-ol-submenu {
  display: none;
  position: relative;
  height: auto;
  margin-left: 20px;
  color: #8a8a8a;
}
.tt-ol-menu-list > li > .tt-ol-submenu {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Overlay menu submenu list */
.tt-ol-submenu-list {
  padding: 0;
  list-style: none;
}
.tt-ol-submenu-list .tt-ol-submenu {
  margin-top: 15px;
  margin-bottom: 20px;
}

/* Overlay menu submenu list links */
.tt-ol-submenu-list > li a,
.tt-ol-submenu-list > li > .tt-ol-submenu-trigger > a {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 19px;
  color: #aaa;
  transition: color 0.3s ease-in-out;
}

/* Overlay menu submenu list hover/active */
.tt-ol-submenu-list > li > .tt-ol-submenu-trigger.tt-ol-submenu-open > a,
.tt-ol-submenu-list
  > li
  > .tt-ol-submenu-trigger.tt-ol-submenu-open
  .tt-ol-submenu-caret,
.tt-ol-submenu-list > li.active > a,
.tt-ol-submenu-list > li.active > .tt-ol-submenu-trigger > a,
.tt-ol-submenu-list > li.active > .tt-ol-submenu-trigger .tt-ol-submenu-caret,
.tt-ol-submenu-list > li a:hover,
.tt-ol-submenu-list > li > .tt-ol-submenu-trigger:hover > a,
.tt-ol-submenu-list > li > .tt-ol-submenu-trigger:hover .tt-ol-submenu-caret {
  color: #fff;
}

/* Overlay menu toggle button 
============================== */
#tt-ol-menu-toggle-btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
  pointer-events: initial;
  cursor: pointer;
  z-index: 9;
}
@media (min-width: 1025px) {
  body.tt-header-tools-on #tt-ol-menu-toggle-btn-wrap {
    margin-right: 20px;
  }
}
.tt-ol-menu-toggle-btn-holder {
  float: left;
}

.tt-ol-menu-toggle-btn-holder .active span::before {
  background-color: #fff;
}
.tt-ol-menu-toggle-btn-holder .active span::after {
  background-color: #fff;
}

/* Toggle button for home page*/
.tt-ol-menu-toggle-btn {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
.tt-ol-menu-toggle-btn span {
  position: absolute;
  display: block;
  top: 54%;
  left: 50%;
  height: 2px;
  width: 24px;
  background-color: transparent;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.tt-ol-menu-toggle-btn span::before,
.tt-ol-menu-toggle-btn span::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 24px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.tt-ol-menu-toggle-btn .tt-btn-span::before {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 24px;
  background-color: #999;
  transition: all 0.3s ease-in-out;
}
.tt-ol-menu-toggle-btn .tt-btn-span::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 18px;
  background-color: #999;
  transition: all 0.3s ease-in-out;
}

.tt-ol-menu-toggle-btn span::before {
  top: -4px;
  width: 24px;
}
.tt-ol-menu-toggle-btn span::after {
  top: auto;
  bottom: -4px;
  width: 18px;
}
/* Toggle button for other page*/
.tt-ol-menu-toggle-btn100 {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
.tt-ol-menu-toggle-btn100 span {
  position: absolute;
  display: block;
  top: 54%;
  left: 50%;
  height: 2px;
  width: 24px;
  background-color: transparent;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.tt-ol-menu-toggle-btn100 span::before,
.tt-ol-menu-toggle-btn100 span::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 24px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.tt-ol-menu-toggle-btn100 span::before {
  top: -4px;
  width: 24px;
}
.tt-ol-menu-toggle-btn100 span::after {
  top: auto;
  bottom: -4px;
  width: 18px;
}
/* Toggle button text */
.tt-ol-menu-toggle-btn-text {
  float: left;
  padding-right: 5px;
  overflow: hidden;
  text-align: right;
  font-size: 20px;
  color: #000;
}
/* @media (max-width: 320px) {
  .tt-ol-menu-toggle-btn-text {
    display: none;
  }
} */
@media (max-width: 600px) {
  .tt-ol-menu-toggle-btn-text {
    display: none;
  }
}
/* Toggle button text hover */
.tt-ol-menu-toggle-btn-text .text-menu {
  position: relative;
  display: inline-block;
  text-align: right;
  /* transition: transform 0.3s; */
  transition: all 0.6s ease-in;
}
body.tt-ol-menu-open .tt-ol-menu-toggle-btn-text .text-menu {
  display: none;
}

body:not(.is-mobile) .tt-ol-menu-toggle-btn-text .text-menu::before {
  position: absolute;
  top: 100%;
  right: 0;
  content: attr(data-hover);
}
body:not(.is-mobile)
  #tt-ol-menu-toggle-btn-wrap:hover
  .tt-ol-menu-toggle-btn-text
  .text-menu {
  transform: translate3d(0, -100%, 0);
}

/* Toggle button close */
body.tt-ol-menu-open .tt-ol-menu-toggle-btn span {
  width: 20px;
  background-color: transparent;
}
body.tt-ol-menu-open .tt-ol-menu-toggle-btn span::before {
  top: 0;
  width: 20px;
  transform: rotate(45deg);
}
body.tt-ol-menu-open .tt-ol-menu-toggle-btn span::after {
  bottom: 0;
  width: 20px;
  transform: rotate(-45deg);
}

.tt-ol-menu-toggle-btn-text .text-close {
  display: none;
}
body.tt-ol-menu-open .tt-ol-menu-toggle-btn-text .text-close {
  display: block;
}

/* Disable menu toggle button click until the animations last */
body.olm-toggle-no-click .tt-ol-menu-toggle-btn-text,
body.olm-toggle-no-click .tt-ol-menu-toggle-btn {
  pointer-events: none;
}

/* Overlay menu position center 
================================ */
.tt-overlay-menu.tt-ol-menu-center .tt-ol-menu-content {
  text-align: center;
}
.tt-overlay-menu.tt-ol-menu-center .tt-ol-submenu {
  margin-left: 0;
}

/* ------------------------------------------------------------- *
 *  tt-Search
/* ------------------------------------------------------------- */

.tt-search-trigger {
  pointer-events: initial;
  cursor: pointer;
}

.tt-search {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  visibility: hidden;
  opacity: 0;
  z-index: 99998;
}
.tt-search-close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.tt-search-ghost {
  position: absolute;
  top: 0;
  bottom: -3.5%;
  display: flex;
  align-items: flex-end;
  font-size: calc(28px + 28vw);
  font-weight: bold;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
  opacity: 0.03;
}

.tt-search-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 5%;
  margin-bottom: 10%;
  text-align: center;
  z-index: 3;
}
@media (max-width: 992px) {
  .tt-search-inner {
    padding: 15% 5%;
  }
}

.tt-search-title {
  margin-bottom: 10%;
  font-size: clamp(48px, 6vw, 112px);
  font-weight: bold;
  font-weight: 500;
  line-height: 1.3;
}
.tt-search .tt-search-form .tt-form-control {
  font-size: clamp(19px, 2vw, 26px);
}

.tt-search-close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: #333;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  z-index: 3;
  transition: transform 0.3s;
}
.tt-search-close-btn:hover {
  transform: rotate(90deg);
}

/* Disable page scroll if tt-Search is open. */
body.tt-search-open {
  overflow-y: hidden !important;
}
body.tt-search-open .scrollbar-track {
  display: none !important;
}

/* ------------------------------------------------------------- *
 * Page header
/* ------------------------------------------------------------- */

#page-header {
  position: relative;
  z-index: 1;
}
.page-header-inner,
body.ph-image-on.ph-bg-image-on
  #page-header:not(.project-info-list-on)
  .page-header-inner {
  width: 100%;
  padding-top: 13vw;
  padding-bottom: 7vw;
  z-index: 2;
}
body.ph-image-on #page-header:not(.project-info-list-on) .page-header-inner {
  padding-top: 16vw;
  padding-bottom: 13vw;
}
body:not(.tt-boxed) .page-header-inner,
.page-header-inner:not(.tt-wrap) {
  padding-left: 13%;
  padding-right: 13%;
}
@media (min-width: 1600px) and (max-width: 1920px) {
  .page-header-inner {
    padding-top: 250px;
    padding-bottom: 240px;
  }
  body.ph-image-on #page-header:not(.project-info-list-on) .page-header-inner {
    padding-top: 300px;
    padding-bottom: 260px;
  }

  /* If page header image does not exist or project info list exist */
  body:not(.ph-image-on) #page-header .page-header-inner,
  body.ph-image-on.ph-bg-image-on
    #page-header:not(.project-info-list-on)
    .page-header-inner {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
@media (max-width: 1400px) {
  body.tt-boxed .page-header-inner.tt-wrap {
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media (max-width: 1024px) {
  #page-header:not(.project-info-list-on) .page-header-inner {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  body:not(.tt-boxed) .page-header-inner,
  .page-header-inner:not(.tt-wrap) {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 540px) {
  body.ph-image-on #page-header:not(.project-info-list-on) .page-header-inner {
    /* padding-bottom: 60vw; */
  }
}

/* Page header image 
===================== */
.ph-image {
  position: absolute;
  top: 160px;
  right: 18vw;
  width: clamp(340px, 18vw, 800px);
  z-index: 2;
  line-height: 0;
}
@media (max-width: 1920px) {
  #page-header.ph-full .ph-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  .ph-image {
    width: 380px;
  }
  #page-header.ph-full:not(.ph-center):not(.ph-bg-image) .ph-image {
    width: 480px;
  }
}
@media (max-width: 1600px) {
  .ph-image,
  #page-header.ph-full:not(.ph-center):not(.ph-bg-image) .ph-image {
    width: 320px;
  }
}
@media (max-width: 1024px) {
  .ph-image,
  #page-header.ph-full:not(.ph-center):not(.ph-bg-image) .ph-image {
    right: 10vw;
  }
}
@media (max-width: 540px) {
  .ph-image,
  #page-header.ph-full:not(.ph-center):not(.ph-bg-image) .ph-image {
    width: 50%;
  }
}

.ph-image-inner {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Video */
#page-header:not(.ph-image-cropped) .ph-video-wrap {
  position: relative;
  padding-bottom: 140%;
}
.ph-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#page-header.ph-bg-image .ph-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Page header image cover opacity */
[class*="ph-image-cover-"] .ph-image-inner::before {
  position: absolute;
  display: block;
  content: "";
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #040404;
  z-index: 1;
  opacity: 0;
}
/* 

/* if class "ph-image-cropped" enabled (not for background image!) */
#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
  position: relative;
  padding-bottom: 130%;
}
#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Make image to background image */
#page-header.ph-bg-image .ph-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  z-index: -1;
  transform: none;
  overflow: hidden;
}
#page-header.ph-bg-image.ph-image-shadow:after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 35vh;
  z-index: 3;
  pointer-events: none;
  background: rgb(13, 13, 13);
  background: -moz-linear-gradient(
    0deg,
    rgba(13, 13, 13, 1) 0%,
    rgba(13, 13, 13, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(13, 13, 13, 1) 0%,
    rgba(13, 13, 13, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(13, 13, 13, 1) 0%,
    rgba(13, 13, 13, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0d0d",endColorstr="#0d0d0d",GradientType=1);
}
#page-header.ph-bg-image .ph-image-inner {
  width: 100%;
  height: 100%;
}

#page-header.ph-bg-image .ph-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#page-header.ph-bg-image .ph-video-wrap {
  padding-bottom: 0;
}

/* Page header caption 
======================= */
.ph-caption {
  position: relative;
}

/* page header caption title */
.ph-caption-title {
  position: relative;
  margin: 0;
  font-size: clamp(40px, 5vw, 94px);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  z-index: 9;
}

/* page header caption title ghost */
.ph-caption-title-ghost300 {
  /* text-align: left; */
  font-family: "Kaisei HarunoUmi";

  /* position: absolute; */
  display: flex;
  align-items: center;
  top: 897px;
  bottom: 0;
  left: 27%;
  /* padding-top: 100px; */
  color: #000;
  /* color: #fff ; */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #161515;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  line-height: 1;
  opacity: 20%;
  z-index: 1;
}
.ph-caption-title-ghost300 h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  top: -95px;
  left: 24%;
}
.ph-caption-title-ghost200 {
  text-align: left;
  font-family: "Kaisei HarunoUmi";

  /* position: absolute; */
  display: flex;
  align-items: center;
  top: -1329px;
  bottom: 0;
  left: 52%;
  /* padding-top: 10%; */

  /* color: #fff ; */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  line-height: 1;
  opacity: 20%;
  z-index: 1;
}
.ph-caption-title-ghost200 h2 {
  position: absolute;
  top: 11px;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
}
.ph-caption-title-ghost201 {
  text-align: left;
  font-family: "Kaisei HarunoUmi";
  /* font-size: 70px;
font-style: normal;
font-weight: 400; */
  /* position: absolute; */
  display: flex;
  align-items: center;
  bottom: 0;
  left: 52%;
  padding-top: 10%;
  /* color: #fff ; */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  line-height: 1;
  opacity: 20%;
  z-index: 1;
}
.ph-caption-title-ghost201 h2 {
  position: absolute;
  top: 135px;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
}
.ph-caption-title-ghost100 {
  text-align: center;
  font-family: "Kaisei HarunoUmi";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;

  display: flex;
  align-items: center;
  top: 29px;
  bottom: 0;
  left: 2%;
  padding-top: 10%;

  /* color: #fff ; */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  line-height: 1;
  opacity: 20%;
  z-index: 1;
}
.ph-caption-title-ghost100 h1 {
  position: absolute;
  top: -92px;
}
.ph-caption-title-ghost {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  left: -6%;
  padding-top: 8%;
  font-size: calc(16px + 9vw);
  font-weight: bold;
  font-weight: 600;
  /* color: #fff ; */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 5px;
  /* border: 2px solid #fff; */
  white-space: nowrap;
  line-height: 1;
  opacity: 0.04;
  z-index: 1;
}

/* page header caption subtitle */
.ph-caption-subtitle {
  position: relative;
  margin-top: 40px;
  font-size: calc(15px + 0.5vw);
  font-weight: 600;
  color: #e4e4e4;
  z-index: 9;
}
#page-header:not(.ph-center):not(.ph-bg-image) .ph-caption-subtitle {
  color: #a7a7a7;
}

/* page header caption category */
.ph-categories {
  position: relative;
  margin-bottom: 15px;
  z-index: 9;
}
.ph-category {
  position: relative;
  display: inline-block;
  font-size: calc(15px + 0.1vw);
  color: #fff;
  line-height: 1.4;
}
a.ph-category:hover {
  opacity: 0.8;
}
.ph-category ~ .ph-category:not(:empty)::before {
  content: ", ";
  margin-left: -4px;
}

/* page header caption meta */
.ph-meta {
  position: relative;
  display: inline-flex;
  margin-top: 40px;
  font-size: 16px;
  color: #cacaca;
  font-weight: normal;
  z-index: 9;
}
.ph-meta-published {
}
.ph-meta-posted-by {
  margin-left: 10px;
  font-weight: normal;
}
.ph-meta-posted-by a {
  position: relative;
  color: #cacaca;
}
.ph-meta-posted-by a:hover {
  opacity: 0.8;
}

/* page header caption description */
.ph-caption-description {
  position: relative;
  max-width: 900px;
  margin-top: 50px;
  z-index: 9;
}

/* page header caption paragraph */
.ph-caption > p {
  position: relative;
  max-width: 900px;
  z-index: 9;
}
.ph-caption .ph-caption-title + p,
.ph-caption .ph-caption-title-ghost + p,
.ph-caption .ph-caption-subtitle + p {
  margin-top: 50px;
}
.ph-caption > p:last-child {
  margin-bottom: 0;
}

/* Scroll down circle 
====================== */
.scroll-down-circle {
  position: absolute;
  display: block;
  left: 3%;
  bottom: -100px;
  width: 250px;
  height: 250px;
  z-index: 9;
}
@media (max-width: 1024px) {
  .scroll-down-circle {
    display: none;
  }
}
#page-header:not(.ph-full) .scroll-down-circle {
  /* Display only on full scren page header! */
  display: none;
}

/* Scroll down circle icon */
.scroll-down-circle .sdc-icon {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  font-size: 16px;
  color: #999;
  transform: translate(-50%, -50%);
}
#page-header.ph-bg-image .scroll-down-circle .sdc-icon {
  color: #fff;
}

/* Scroll down circle svg */
.scroll-down-circle svg {
  width: 100%;
  animation: sdc-rotation 8s infinite linear;
}
.scroll-down-circle rect {
  fill: #fff;
}
.scroll-down-circle text {
  font-size: 33px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 25px;
  fill: #bbb;
  transition: fill 0.2s;
}
.scroll-down-circle:hover text {
  fill: #fff;
}
#page-header.ph-bg-image .scroll-down-circle text {
}

/* Scroll down circle animation */
@keyframes sdc-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Made with love 
================== */
.made-with-love {
  position: absolute;
  display: none; /* disabled by default */
  right: 3.5%;
  bottom: 50px;
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
  z-index: 9;
}
#page-header.ph-full .made-with-love,
#page-header.ph-bg-image .made-with-love {
  display: block; /* enable only with "ph-full" */
}
@media (max-width: 1024px) {
  .made-with-love {
    display: none;
  }
}
.mwl-inner {
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  transform-origin: 50% -70%;
}
.mwl-text {
  display: inline-block;
}
.mwl-icon {
  display: inline-block;
  margin-left: 8px;
  animation: animateHeart 2.5s infinite;
}
@keyframes animateHeart {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.1);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* Page header share 
===================== */
.ph-share {
  position: absolute;
  display: inline-block;
  bottom: 5%;
  right: 3.5%;
  z-index: 9;
}

.ph-share-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-share-text {
  display: inline-block;
  font-size: 14px;
  color: #fff;
}
.ph-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
}

@media (min-width: 769px) {
  body.made-with-love-on .ph-share {
    bottom: 170px;
  }
  .ph-share-text {
    margin-right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translate3d(10px, 0, 0);
  }
  .ph-share.active .ph-share-text {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.2s;
  }

  .ph-share-icon {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
  }
  .ph-share.active .ph-share-icon {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .ph-share {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: rgb(42 42 42 / 96%);
    padding: 0 10px;
  }
  .ph-share-text {
    display: none;
  }
}

/* Page header share content */
.ph-share-content {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.ph-share-close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ph-share-ghost {
  position: absolute;
  top: 0;
  bottom: -3.5%;
  display: flex;
  align-items: flex-end;
  font-size: calc(28px + 34vw);
  font-weight: bold;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
  opacity: 0.03;
}

.ph-share-inner {
  position: relative;
  max-width: 1200px;
  padding: 5%;
  text-align: center;
  z-index: 3;
}
@media (max-width: 1024px) {
  .ph-share-inner {
    padding: 15% 5%;
  }
}

.ph-share-title {
  margin-bottom: 15px;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 600;
}
.ph-share-subtitle {
  font-size: 19px;
  font-weight: 300;
  color: #c1c1c1;
}
.ph-share-content .social-buttons {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .ph-share-content .social-buttons {
    margin-top: 20px;
  }
}
.ph-share-content .social-buttons > ul > li a {
  font-size: 19px;
}

.ph-share-close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: #333;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  z-index: 3;
  transition: transform 0.3s;
}
.ph-share-close-btn:hover {
  transform: rotate(90deg);
}

.ph-share-m-close {
  display: none !important;
}

/* Disable page scroll if share content is open. */
body.ph-share-open {
  overflow-y: hidden !important;
}
body.ph-share-open .scrollbar-track {
  display: none !important;
}

/* Page header styles 
====================== */
/* page header caption title (stroke style) */
#page-header.ph-stroke .ph-caption-title {
  font-weight: bold;
  font-weight: 800;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
}

/* Page header sizes 
===================== */
/* Caption size sm */
#page-header.ph-cap-sm .ph-caption-title {
  font-size: clamp(40px, 4vw, 68px);
}
#page-header.ph-cap-sm .ph-caption-title-ghost {
  padding-top: 3%;
  font-size: calc(16px + 8vw);
}

/* Caption size lg */
#page-header.ph-cap-lg .ph-caption-title {
  font-size: clamp(48px, 6vw, 112px);
}
#page-header.ph-cap-lg .ph-caption-title-ghost {
  padding-top: 5%;
  font-size: calc(16px + 10vw);
}

/* Caption size xlg */
#page-header.ph-cap-xlg .ph-caption-title {
  font-size: clamp(48px, 8vw, 142px);
}
@media (min-width: 1025px) {
  #page-header.ph-cap-xlg.ph-stroke .ph-caption-title {
    -webkit-text-stroke-width: 3px;
  }
}
#page-header.ph-cap-xlg .ph-caption-title-ghost {
  padding-top: 5%;
  font-size: calc(16px + 10vw);
}

/* Caption size xxlg */
#page-header.ph-cap-xxlg .ph-caption-title {
  font-size: clamp(48px, 10vw, 180px);
}
@media (min-width: 1025px) {
  #page-header.ph-cap-xxlg.ph-stroke .ph-caption-title {
    -webkit-text-stroke-width: 3px;
  }
}
#page-header.ph-cap-xxlg .ph-caption-title-ghost {
  padding-top: 5%;
  font-size: calc(16px + 13vw);
}

/* Page header full screen */
@media (min-width: 1025px) {
  #page-header.ph-full {
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
  #page-header.ph-full .page-header-inner {
    padding-top: 5% !important;
    padding-bottom: 5% !important;
  }
  #page-header.ph-full .ph-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  #page-header.ph-full:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
    padding-bottom: 140%;
  }
}

@media (min-width: 1025px) {
  #contact-page-header.ph-full {
    display: flex;
    align-items: center;
  }
  #contact-page-header.ph-full .page-header-inner {
    padding-top: 6% !important;
    padding-bottom: 12% !important;
  }
  #contact-page-header.ph-full .ph-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  #contact-page-header
    .ph-full:not(.ph-bg-image).ph-image-cropped
    .ph-image-inner {
    padding-bottom: 140%;
  }
}
@media (min-width: 1025px) {
  #about-page-header.ph-full {
    display: flex;
    align-items: center;
    min-height: 55vh;
  }
  #about-page-header.ph-full .page-header-inner {
    padding-top: 5% !important;
    padding-bottom: 5% !important;
  }
  #about-page-header.ph-full .ph-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  #about-page-header.ph-full:not(.ph-bg-image).ph-image-cropped
    .ph-image-inner {
    padding-bottom: 140%;
  }
}
@media (min-width: 1025px) {
  #page-header.ph-full {
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
  #page-header.ph-full .page-header-inner {
    padding-top: 5% !important;
    padding-bottom: 5% !important;
  }
  #page-header.ph-full .contact-ph-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
  }
  /* #page-header.ph-full .contact-ph-image img{
         width: 380px;
		 height: 532px;
	}  */
  #page-header.ph-full:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
    padding-bottom: 140%;
  }
}
/* Page header positions 
========================= */
/* Position center */
/* #page-header.ph-center {
	text-align: center;
} */
@media (min-width: 1025px) {
  /* #page-header.ph-center .page-header-inner {
		max-width: 100%;
		padding-left: 4% !important;
		padding-right: 4% !important;
	} */
}
#page-header.ph-center .ph-caption,
#page-header.ph-center .ph-caption-title,
#page-header.ph-center .ph-caption-subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#page-header.ph-center .ph-caption-title-ghost {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
#page-header.ph-center .ph-caption-description,
#page-header.ph-center .ph-caption > p {
  margin-left: auto;
  margin-right: auto;
}

#page-header.ph-center:not(.ph-bg-image) .ph-image {
  right: 50%;
  transform: translate(50%, 0);
  background-color: #0b132a;
}
#page-header.ph-center .project-info-list .social-buttons {
  margin-left: 0;
}

/* Position inline (for a single project page only! No effect with class "ph-center"!) */
@media (min-width: 1025px) {
  #page-header:not(.ph-center).ph-inline .page-header-inner {
    display: flex;
  }
  #page-header:not(.ph-center).ph-inline .ph-caption {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    align-self: center;
    padding-right: 10%;
  }

  #page-header:not(.ph-center).ph-inline .project-info-list {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    align-self: center;
    margin: 0;
  }

  #page-header:not(.ph-center).ph-inline .project-info-list > ul > li {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 0 25px 0;
  }
  #page-header:not(.ph-center).ph-inline
    .project-info-list
    > ul
    > li:last-child {
    margin: 0;
  }
  #page-header:not(.ph-center).ph-inline .project-info-list > ul > li::after {
    display: none;
  }
}

/* If page header background image is light (class "ph-bg-image-is-light")
============================================ */
/* Make page header caption dark */
body.ph-bg-image-light-on .ph-category,
body.ph-bg-image-light-on .ph-caption-title,
body.ph-bg-image-light-on .ph-caption-subtitle {
  color: #111;
}
body.ph-bg-image-light-on #page-header.ph-stroke .ph-caption-title {
  -webkit-text-stroke-color: #111;
}

/* Make page header project info list dark */
body.ph-bg-image-light-on #page-header .project-info-list,
body.ph-bg-image-light-on #page-header .project-info-list .pi-list-cont a {
  color: #111;
  font-weight: 500;
}
body.ph-bg-image-light-on #page-header .project-info-list > ul > li::after {
  background-color: rgb(92 92 92 / 40%);
}

/* Make magic cursor dark */
body.ph-bg-image-light-on:not(.tt-ol-menu-open):not(.ph-share-open) #ball {
  border-color: #666;
}

/* Make header logo dark */
body.ph-bg-image-light-on:not(.tt-ol-menu-open) #tt-header .tt-logo-light {
  display: none;
}
body.ph-bg-image-light-on:not(.tt-ol-menu-open) #tt-header .tt-logo-dark {
  display: block;
}

/* Make overlay menu toggle button dark */
body.ph-bg-image-light-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn-text {
  color: #111;
}
body.ph-bg-image-light-on:not(.tt-ol-menu-open)
  .tt-ol-menu-toggle-btn
  span::before,
body.ph-bg-image-light-on:not(.tt-ol-menu-open)
  .tt-ol-menu-toggle-btn
  span::after {
  background-color: #111;
}

/* Make classic menu links dark */
@media (min-width: 1025px) {
  body.ph-bg-image-light-on .tt-main-menu-list > li > a,
  body.ph-bg-image-light-on .tt-main-menu-list > li > .tt-submenu-trigger > a {
    color: #111;
  }
}
@media (max-width: 1024px) {
  body.ph-bg-image-light-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn-text {
    color: #111;
  }
  body.ph-bg-image-light-on:not(.tt-m-menu-open)
    .tt-m-menu-toggle-btn
    span::before,
  body.ph-bg-image-light-on:not(.tt-m-menu-open)
    .tt-m-menu-toggle-btn
    span::after {
    background-color: #111;
  }
}

/* Make scroll down circle dark */
body.ph-bg-image-light-on
  #page-header:not(.ph-image-shadow)
  .scroll-down-circle
  text {
  fill: #111;
}
body.ph-bg-image-light-on
  #page-header:not(.ph-image-shadow)
  .scroll-down-circle
  .sdc-icon {
  color: #555;
}

/* Make made with love dark */
body.ph-bg-image-light-on #page-header:not(.ph-image-shadow) .made-with-love {
  color: #111;
  opacity: 1 !important;
}

/* Make project share button dark */
body.ph-bg-image-light-on #page-header:not(.ph-image-shadow) .ph-share-icon {
  color: #111;
  opacity: 0.9 !important;
}
body.ph-bg-image-light-on #page-header:not(.ph-image-shadow) .ph-share-text {
  color: #111;
}

/* ------------------------------------------------------------- *
 * tt-Grid
/* ------------------------------------------------------------- */

.tt-grid {
  position: relative;
}
.tt-grid::after {
  content: "";
  display: table;
  clear: both;
}

/* tt-Grid top content
======================= */
.tt-grid-top {
  position: relative;
  padding-bottom: 40px;
  text-align: right;
}
body:not(.tt-boxed)
  .tt-section-inner.tt-wrap
  .tt-grid:not([class*="ttgr-gap-"])
  .tt-grid-top,
.tt-section-inner:not(.tt-wrap)
  .tt-grid:not([class*="ttgr-gap-"])
  .tt-grid-top {
  padding-left: 3vw;
  padding-right: 3vw;
}

/* tt-Ggrid categories/filter 
============================== */
.tt-grid-categories {
  position: relative;
}

/* tt-Ggrid categories/filter trigger 
====================================== */
.ttgr-cat-trigger-wrap {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  color: #fff;
  z-index: 999;
}

.ttgr-cat-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.ttgr-cat-trigger:hover {
}

.ttgr-cat-text {
  float: left;
  min-width: 60px;
  text-align: right;
  overflow: hidden;
}
.ttgr-cat-text > span {
  position: relative;
  display: inline-block;
  width: 100%;
  transition: transform 0.3s;
}
body:not(.is-mobile) .ttgr-cat-trigger-wrap:hover .ttgr-cat-text > span {
  transform: translate3d(0, -100%, 0);
}
body:not(.is-mobile) .ttgr-cat-text > span::before {
  position: absolute;
  top: 100%;
  right: 0;
  content: attr(data-hover);
}

.ttgr-cat-icon {
  float: left;
}
.ttgr-cat-icon span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 17px;
}

/* If "ttgr-cat-nav" is open */
body.ttgr-cat-nav-open {
  overflow-y: hidden !important;
}
@media (min-width: 768px) {
  body.ttgr-cat-nav-open .ttgr-item-inner {
    transition: transform 0.6s;
  }
}

/* tt-Ggrid categories trigger position fixed */
.ttgr-cat-trigger-wrap.ttgr-cat-fixed {
  position: fixed;
  bottom: 5%;
  right: 4%;
  padding: 10px 0 10px 10px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

/* tt-Ggrid categories/filter nav 
================================== */
.ttgr-cat-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0 0 0 / 60%);
  pointer-events: initial;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
}
.ttgr-cat-list-holder {
  position: relative;
  height: 100%;
  width: calc(100% + 17px);
  padding-right: 17px;
  overflow-y: scroll;
  z-index: 2;
}
.ttgr-cat-list-inner {
  display: table;
  width: 100%;
  max-width: 1282px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.ttgr-cat-list-content {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 160px 5% 120px 10%;
}

/* tt-Ggrid categories list */
.ttgr-cat-list {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ttgr-cat-list > li {
  position: relative;
}
.ttgr-cat-list > li > a {
  position: relative;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: calc(26px + 1.2vw);
  font-weight: bold;
  font-weight: 700;
  line-height: 1.2;
  color: #bbb;
  transition: color 0.3s ease-in-out;
}
.ttgr-cat-list > li > a:hover,
.ttgr-cat-list > li > a:focus,
.ttgr-cat-list > li > a.active {
  color: #fff;
}
.ttgr-cat-list > li:first-child > a {
  padding-top: 0;
}
.ttgr-cat-list > li:last-child > a {
  padding-bottom: 0;
}

/* tt-Ggrid categories list item counter */
@media (min-width: 992px) {
  .ttgr-cat-list {
    counter-reset: ttgr-cat-list-counter;
  }
  .ttgr-cat-list .ttgr-cat-item::before {
    position: absolute;
    counter-increment: ttgr-cat-list-counter;
    content: "" counter(ttgr-cat-list-counter, decimal-leading-zero);
    top: 5px;
    left: -40px;
    line-height: 1;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    opacity: 0.4;
  }
}

/* tt-Ggrid categories list close (for mobile devises) */
.ttgr-cat-close {
  margin-bottom: 25px;
  font-size: calc(13px + 0.6vw);
}
body:not(.is-mobile) .ttgr-cat-close {
  display: none;
}

/* tt-Ggrid categories/filter classic 
====================================== */
.tt-grid-categories-classic {
  position: relative;
  overflow: hidden;
}

.ttgr-cat-classic-nav {
  text-align: left;
}

/* tt-Ggrid categories/filter classic list */
ul.ttgr-cat-classic-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.ttgr-cat-classic-list > li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px;
}
ul.ttgr-cat-classic-list > li:first-child {
  margin-left: 0;
}
ul.ttgr-cat-classic-list > li:last-child {
  margin-right: 0;
}
ul.ttgr-cat-classic-list > li::before {
  position: absolute;
  display: inline-block;
  content: "/";
  top: 1px;
  left: -15px;
  opacity: 0.5;
}
ul.ttgr-cat-classic-list > li:first-child::before {
  display: none;
}

ul.ttgr-cat-classic-list > li > a {
  display: inline-block;
  padding: 5px;
  font-size: 15px;
  line-height: 1.4;
  color: #aaa;
  border-radius: 100px;
  transition: all 0.3s;
}
ul.ttgr-cat-classic-list > li > a:hover,
ul.ttgr-cat-classic-list > li > a.active {
  color: #fff;
}

/* tt-Ggrid categories/filter classic positions */
@media (min-width: 768px) {
  .ttgr-cat-classic-nav.ttgr-cat-classic-center {
    text-align: center;
  }
  .ttgr-cat-classic-nav.ttgr-cat-classic-right {
    text-align: right;
  }
}

/* tt-Grid items
================= */
.tt-grid-items-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* tt-Grid height class ("ttgr-height"). Use it on an element inside "ttgr-item-inner".
======================================== */
.ttgr-height {
  position: relative;
  padding-bottom: 35%;
}
@media (max-width: 768px) {
  .ttgr-height {
    position: relative;
    padding-bottom: 60%;
  }
}

body.tt-boxed .tt-wrap .ttgr-height {
  padding-bottom: 60%;
}

/* ------------------------------------------------------------- *
 * Portfolio grid
/* ------------------------------------------------------------- */

#portfolio-grid {
  position: relative;
}

/* Portfolio grid item */
.portfolio-grid-item {
  position: relative;
}

/* Portfolio grid item image 
============================= */
.pgi-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
}
.pgi-image-holder {
}
.pgi-image-inner {
}
.pgi-image {
  position: relative;
}
.pgi-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* video */
.pgi-video-wrap {
  position: relative;
}
video.pgi-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portfolio grid item caption 
=============================== */
.pgi-caption {
  width: 100%;
  max-width: 900px;
  padding: 20px 3%;
}
.pgi-caption-inner {
}

/* Portfolio grid item title */
.pgi-title {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: calc(19px + 1.5vw);
  font-weight: bold;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .pgi-title {
    font-size: calc(19px + 1.5vw);
  }
}

/* Portfolio grid item title hover (no effect if "pgi-cap-inside" enabled!) */
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a {
  display: inline;
}
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a {
  background-repeat: no-repeat;
  background-image: -o-linear-gradient(
    transparent calc(100% - 1px),
    currentColor 1px
  );
  background-image: linear-gradient(
    transparent calc(100% - 1px),
    currentColor 1px
  );
  background-image: -ms-linear-gradient(transparent 96%, currentColor 1px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 96%;
}
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a:hover {
  background-size: 100% 96%;
}

/* Portfolio grid item categories */
.pgi-categories-wrap {
  position: relative;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
}
.pgi-category {
  position: relative;
  display: inline-block;
  font-size: calc(13px + 0.1vw);
  color: #fff;
  opacity: 0.5;
}
.pgi-category ~ .pgi-category {
  margin-left: -4px;
}
.pgi-category ~ .pgi-category:not(:empty)::before {
  content: ", ";
}
.pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category {
  visibility: hidden;
  width: 0;
}
.pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category {
  display: none;
}
.pgi-category + .pgi-category + .pgi-category + .pgi-category::before {
  content: "...";
  margin-left: 5px;
  visibility: visible;
}

/* Portfolio grid item caption sizes 
===================================== */
@media (min-width: 768px) {
  .ttgr-layout-2 .pgi-title,
  .ttgr-layout-1-2 .pgi-title,
  .ttgr-layout-2-1 .pgi-title,
  .ttgr-layout-creative-1 .pgi-title,
  .ttgr-layout-creative-2 .pgi-title {
    font-size: calc(19px + 0.4vw);
  }

  .ttgr-layout-3 .pgi-title,
  .ttgr-layout-2-3 .pgi-title,
  .ttgr-layout-3-2 .pgi-title {
    font-size: calc(19px + 0.3vw);
  }

  .ttgr-layout-4 .pgi-title,
  .ttgr-layout-3-4 .pgi-title,
  .ttgr-layout-4-3 .pgi-title {
    font-size: calc(19px + 0.2vw);
  }

  body.tt-boxed .tt-wrap .ttgr-layout-2 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-1-2 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-2-1 .pgi-title {
    font-size: calc(19px + 0.3vw);
  }

  body.tt-boxed .tt-wrap .ttgr-layout-3 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-2-3 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-3-2 .pgi-title {
    font-size: calc(19px + 0.3vw);
  }

  body.tt-boxed .tt-wrap .ttgr-layout-4 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-3-4 .pgi-title,
  body.tt-boxed .tt-wrap .ttgr-layout-4-3 .pgi-title {
    font-size: calc(19px + 0.2vw);
  }
}

/* Portfolio grid item caption positions 
========================================= */
/* Position inside */
#portfolio-grid.pgi-cap-inside .pgi-caption {
  position: absolute;
  left: 0;
  bottom: 8%;
  padding: 0 8%;
  z-index: 2;
}
#portfolio-grid.pgi-cap-inside .pgi-category {
  opacity: 1;
}

/* Position center */
#portfolio-grid.pgi-cap-center .pgi-caption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#portfolio-grid.pgi-cap-center .pgi-caption-inner {
  text-align: center;
}
#portfolio-grid.pgi-cap-inside.pgi-cap-center .pgi-caption {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%) !important;
}

/* Portfolio grid item caption styles 
====================================== */
/* If light image used (effect only if "pgi-cap-inside" enabled) */
@media (min-width: 1025px) {
  #portfolio-grid.pgi-cap-inside .pgi-image-is-light .pgi-title {
    color: #111;
  }
  #portfolio-grid.pgi-cap-inside .pgi-image-is-light .pgi-category {
    color: #111;
  }
  #portfolio-grid.pgi-cap-inside
    .pgi-image-is-light
    .pgi-image-holder[class*="cover-opacity-"]::before {
    display: none !important;
  }
}

/* Portfolio grid item hover 
============================= */

/* Clip path (effect only with gaps) */
@media (min-width: 768px) {
  #portfolio-grid.pgi-hover
    [class*="ttgr-gap-"]:not(.ttgr-gap-1)
    .pgi-image-holder {
    clip-path: inset(0 0 0 0);
    overflow: hidden;
    transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
  }
  #portfolio-grid.pgi-hover
    [class*="ttgr-gap-"]:not(.ttgr-gap-1)
    .pgi-image-wrap:hover
    .pgi-image-holder {
    clip-path: inset(3% 3% 3% 3%);
  }

  /* Image zoom */
  #portfolio-grid.pgi-hover .pgi-image {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  #portfolio-grid.pgi-hover .pgi-image-wrap:hover .pgi-image {
    transform: scale(1.05);
  }
}

/* Caption hover */
body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .pgi-title {
  transform: translate3d(0, 15px, 0);
  transition: all 0.25s ease-out;
  transition-delay: 0.1s;
}
body:not(.is-mobile)
  #portfolio-grid.pgi-cap-inside.pgi-cap-hover
  .portfolio-grid-item:hover
  .pgi-title {
  transform: translate3d(0, 0, 0);
}

body:not(.is-mobile)
  #portfolio-grid.pgi-cap-inside.pgi-cap-hover
  .pgi-categories-wrap {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 20px, 0);
  transition: all 0.25s ease-out;
  transition-delay: 0.1s;
}
body:not(.is-mobile)
  #portfolio-grid.pgi-cap-inside.pgi-cap-hover
  .portfolio-grid-item:hover
  .pgi-categories-wrap {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

/* Portfolio list item inner */
.pli-inner {
  position: relative;
}
@media (min-width: 768px) {
  .pli-inner {
    display: flex;
  }
}

/* Portfolio list item image 
============================= */
.pli-image-col {
  line-height: 0;
}

.pli-image-link {
  display: block;
  overflow: hidden;
}
.pli-image-holder {
}
.pli-image {
}
@media (max-width: 767px) {
  /* remove image cover */
  .pli-image[class*="cover-opacity-"]::before {
    display: none !important;
  }
}
.pli-image img {
}

.pli-video-wrap {
}
.pli-video {
  width: 100%;
}

@media (min-width: 768px) {
  .pli-image-col {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    z-index: 1;
  }

  /* Image hover */
  .pli-hover .pli-image-link {
    transition: all 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
    clip-path: inset(0 0 0 0);
  }
  .pli-hover .pli-image-col:hover .pli-image-link {
    clip-path: inset(3% 3% 3% 3%);
  }

  .pli-hover .pli-image .pli-image-hover-zoom {
    transition: all 1s cubic-bezier(0.07, 0.72, 0.29, 0.96);
  }
  .pli-hover .pli-image-col:hover .pli-image .pli-image-hover-zoom {
    transform: scale(1.05);
  }
}

/* Portfolio list item image cropped
===================================== */
.portfolio-list.pli-cropped .pli-image img,
.portfolio-list.pli-cropped .pli-video {
  width: 100%;
  height: 33vw;
  object-fit: cover;
  object-position: 50% 50%;
}
.portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-image img,
.portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-video {
  height: 30vw;
}

@media (max-width: 1024px) {
  .portfolio-list.pli-cropped .pli-image img,
  .portfolio-list.pli-cropped .pli-video,
  .portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-image img,
  .portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-video {
    height: 46vw;
  }
}
@media (max-width: 767px) {
  .portfolio-list.pli-cropped .pli-image img,
  .portfolio-list.pli-cropped .pli-video,
  .portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-image img,
  .portfolio-list.pli-cropped:not(.pli-info-overlay) .pli-video {
    height: 60vw;
  }
}

/* Portfolio list item info 
============================ */
.pli-info-col {
  position: relative;
}
@media (min-width: 768px) {
  .pli-info-col {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  .pli-info-col {
    margin-top: 20px;
  }
}

.pli-info {
  position: relative;
  line-height: 1;
}
@media (min-width: 768px) {
  .pli-info {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding-left: 15%;
    transform: translate3d(0, -50%, 0);
  }
}

.pli-title {
  margin: 0;
  font-size: calc(16px + 2vw);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.pli-title .split-line-wrap {
  line-height: 1.3;
}
.pli-title a {
  display: inline;
  color: #fff;
}
.portfolio-list:not(.pli-info-overlay) .pli-title a {
  background-repeat: no-repeat;
  background-image: -o-linear-gradient(
    transparent calc(100% - 2px),
    currentColor 2px
  );
  background-image: linear-gradient(
    transparent calc(100% - 2px),
    currentColor 2px
  );
  background-image: -ms-linear-gradient(transparent 96%, currentColor 2px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 96%;
}
.portfolio-list:not(.pli-info-overlay) .pli-title a:hover {
  background-size: 100% 96%;
}

.pli-categories-wrap {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .pli-categories-wrap {
    margin-top: 15px;
  }
}
.pli-category {
  position: relative;
  display: inline-block;
  font-size: calc(13px + 0.1vw);
  color: #fff;
  line-height: 1.6;
}
.portfolio-list:not(.pli-info-overlay) .pli-category {
  opacity: 0.5;
}
.pli-category ~ .pli-category {
  margin-left: -4px;
}
.pli-category ~ .pli-category:not(:empty)::before {
  content: ", ";
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
  visibility: hidden;
  width: 0;
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
  display: none;
}
.pli-category + .pli-category + .pli-category + .pli-category::before {
  content: "...";
  margin-left: 5px;
  visibility: visible;
}

/* Portfolio list item counter
=============================== */
.portfolio-list {
  counter-reset: pli-counter;
}
.pli-counter {
  position: absolute;
  display: inline-block;
  top: -60px;
  left: 15%;
  color: #fff;
  opacity: 0.4;
}
.pli-counter::before {
  counter-increment: pli-counter;
  content: "" counter(pli-counter, decimal-leading-zero);
  line-height: 1;
  font-size: calc(17px + 0.1vw);
  font-weight: normal;
  z-index: 99999;
}

@media (max-width: 767px) {
  .pli-counter {
    display: none;
  }
}

@media (min-width: 1025px) {
  body:not(.is-mobile) .pi-item-category {
    font-size: calc(13px + 0.1vw);
    transform: translate3d(0, 100%, 0);
  }
}
.pi-item-category ~ .pi-item-category {
  margin-left: -4px;
}
.pi-item-category ~ .pi-item-category:not(:empty)::before {
  content: ", ";
}
.pi-item-category ~ .pi-item-category ~ .pi-item-category ~ .pi-item-category {
  visibility: hidden;
  width: 22px;
}
.pi-item-category
  ~ .pi-item-category
  ~ .pi-item-category
  ~ .pi-item-category
  ~ .pi-item-category {
  display: none;
}
.pi-item-category
  + .pi-item-category
  + .pi-item-category
  + .pi-item-category::before {
  content: "...";
  margin-left: 5px;
  visibility: visible;
}

/* Portfolio interactive item link */
.pi-item-title-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}

/* Portfolio interactive item title */
.pi-item-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font-size: calc(14px + 5vw);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(0.51, 0.57, 0.17, 1);

  /* Ellipsis */
  overflow: hidden;
  text-overflow: ellipsis;
}
.pi-item-hover-title {
  position: absolute;
  display: block;
  left: 0;
  margin: 0;
  padding: 0;
  font-size: calc(14px + 5vw);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.6s cubic-bezier(0.51, 0.57, 0.17, 1);
}
@media (min-width: 1025px) {
  .pi-item-title,
  .pi-item-hover-title {
    white-space: nowrap;
  }

  .pi-item-hover-title {
    width: fit-content;
    display: flex;
  }

  .pi-item-title-link:hover .pi-item-title {
    transform: translate3d(0, -100%, 0);
    transition-delay: 0.1s;
  }
  .pi-item-title-link:hover .pi-item-hover-title {
    transform: translate3d(0, 0, 0);
    transition-delay: 0.1s;
  }

  .pi-item-hover-title span {
    align-items: center;
    padding-right: 5vw;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    /* animation-duration is handled by js. */
  }
  .pi-item-title-link:hover .pi-item-hover-title span {
    animation-play-state: running;
    /* animation-duration is handled by js. */
  }
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
}
@media (max-width: 1024px) {
  .pi-item-title {
    opacity: 0.9;
    font-size: calc(14px + 2vw);
    line-height: 1.4;
  }
  .pi-item-hover-title {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pi-item-image {
    overflow: hidden;
  }
  .pi-item-image::before {
    position: absolute;
    display: block;
    content: "";
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: #040404;
    opacity: 0.7;
  }
}
.pi-item-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* ------------------------------------------------------------- *
 * Portfolio slider (full screen)
/* ------------------------------------------------------------- */

.tt-portfolio-slider {
  position: relative;
  width: 100%;
  background-color: #0a0a0a;
}

.tt-portfolio-slider .swiper {
  height: 100vh;
}
@media (max-width: 1024px) {
  .tt-portfolio-slider .swiper {
    height: calc(100vh - 50px);
  }
}

/* Portfolio slider slide */
.tt-portfolio-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

/* Portfolio slider item 
========================= */
.tt-portfolio-slider-item {
  position: relative;
  height: 100%;
}

img.tt-psi-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Slide opasity cover (for prev/next slides) */
.tt-portfolio-slider-item::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: #000;
  transition: 0.5s ease-in-out;
}
.swiper-slide-prev .tt-portfolio-slider-item::after,
.swiper-slide-next .tt-portfolio-slider-item::after {
  opacity: 0.7;
  visibility: visible;
}

/* Portfolio slider caption 
============================ */
.tt-portfolio-slider-caption {
  position: absolute;
  top: 55%;
  left: 0;
  width: auto;
  /*max-width: 1000px;*/
  margin: 0px 2% 0 12%;
  color: #fff;
  z-index: 998;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}
@media (max-width: 767px) {
  .tt-portfolio-slider-caption {
    margin-left: 10%;
  }
}
.tt-ps-caption-inner {
}

.tt-portfolio-slider-caption a {
  pointer-events: initial;
}

/* Portfolio slider caption title */
.tt-ps-caption-title {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 100px);
  font-weight: bold;
  font-weight: 600;
  line-height: 1.2;
}
.tt-ps-caption-title a {
  display: inline;
  color: #fff;
}

/* Portfolio slider caption title hover if the magic cursor is not enabled */
body:not(.tt-magic-cursor) .tt-ps-caption-title a {
  background-repeat: no-repeat;
  background-image: -o-linear-gradient(
    transparent calc(100% - 3px),
    currentColor 3px
  );
  background-image: linear-gradient(
    transparent calc(100% - 3px),
    currentColor 3px
  );
  background-image: -ms-linear-gradient(transparent 96%, currentColor 3px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 96%;
}
body:not(.tt-magic-cursor) .tt-ps-caption-title a:hover {
  background-size: 100% 96%;
  color: currentColor;
}

/* Portfolio slider caption category */
.tt-ps-caption-category {
  margin: 30px 0 0 0;
  font-size: calc(13px + 0.1vw);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .tt-ps-caption-category {
    margin: 30px 0 0 0;
  }
}

/* Portfolio slider caption position 
===================================== */
/* Position center */
.tt-portfolio-slider-caption.psc-center {
  top: 50%;
  left: 50%;
  width: 90%;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* Portfolio slider caption styles 
=================================== */
/* Style stroke */
.tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
  font-weight: bold;
  font-weight: 800;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
    -webkit-text-stroke-width: 1px;
  }
}
@media (max-width: 991px) {
  .tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
    -webkit-text-stroke-width: 1px;
  }
}

/* Portfolio slider navigation 
=============================== */
.tt-portfolio-slider-navigation {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 4%;
  left: 50%;
  width: 300px;
  height: 60px;
  z-index: 1;
  transform: translate3d(-50%, 0, 0);
}
@media (max-width: 767px) {
  .tt-portfolio-slider-navigation {
    width: 90%;
  }
}

.tt-ps-nav-prev,
.tt-ps-nav-next {
  position: absolute;
  top: 0;
  z-index: 20;
}
.tt-ps-nav-prev {
  left: 0;
}
.tt-ps-nav-next {
  right: 0;
}

.tt-ps-nav-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  outline: none;
}
body:not(.tt-magic-cursor) .tt-ps-nav-arrow:hover {
  opacity: 0.5;
}
.tt-ps-nav-arrow-prev::after,
.tt-ps-nav-arrow-next::after {
  line-height: 0;

  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.tt-ps-nav-arrow-prev::after {
  content: "\f053";
}
.tt-ps-nav-arrow-next::after {
  content: "\f054";
}

.tt-ps-nav-arrow.tt-ps-nav-arrow-disabled {
  /* opacity: .5; */
  cursor: auto;
  pointer-events: none;
}

.tt-portfolio-slider .swiper-button-lock {
  display: none;
}

/* Portfolio slider pagination 
=============================== */
.tt-ps-nav-pagination {
}

.tt-portfolio-slider .swiper-pagination-lock {
  display: none;
}

/* Portfolio slider pagination bullets */
.tt-ps-nav-pagination-bullets {
  font-size: 0;
}
.tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  margin: 8px;
  opacity: 1;
  border-radius: 100%;
  border: 2px solid #fff;
}
.tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* Portfolio slider pagination dynamic bullets */
.tt-ps-nav-pagination-bullets-dynamic {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}
.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
  transition: 0.2s transform, 0.2s left;
}
.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.tt-ps-nav-pagination-bullets-dynamic
  .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.tt-ps-nav-pagination-bullets-dynamic
  .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.tt-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

/* Portfolio slider pagination fraction */
.tt-ps-nav-pagination-fraction {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-current {
  position: relative;
  top: -4px;
}
.tt-ps-nav-pagination-fraction .swiper-pagination-total {
  position: relative;
  bottom: -4px;
}

/* Portfolio slider pagination progressbar */
.tt-ps-nav-pagination-progressbar {
  position: absolute;
  left: 70px;
  right: 70px;
  width: auto;
  max-width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
.tt-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  transform-origin: left top;
}

/* If portfolio slider item image is light (class "psi-image-is-light")
=========================================== */
/* Make slider caption dark */
body.psi-light-image-on .tt-ps-caption-category,
body.psi-light-image-on .tt-ps-caption-title a {
  color: #111;
}

body.psi-light-image-on
  .tt-portfolio-slider-caption.psc-stroke
  .tt-ps-caption-title {
  -webkit-text-stroke-color: #111;
}

/* Make slider navigation dark */
body.psi-light-image-on .tt-ps-nav-pagination-fraction,
body.psi-light-image-on .tt-ps-nav-arrow {
  color: #111;
}
body.psi-light-image-on .tt-ps-nav-pagination-progressbar {
  background-color: rgb(0 0 0 / 20%);
}
body.psi-light-image-on
  .tt-ps-nav-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #111;
}
body.psi-light-image-on
  .tt-ps-nav-pagination-bullets
  .swiper-pagination-bullet {
  border-color: #111;
}
body.psi-light-image-on
  .tt-ps-nav-pagination-bullets
  .swiper-pagination-bullet-active {
  background: #111;
}

/* Make magic cursor dark */
body.psi-light-image-on:not(.tt-ol-menu-open) #ball {
  border-color: #515151;
}
body.psi-light-image-on:not(.tt-ol-menu-open) #ball .ball-drag::before,
body.psi-light-image-on:not(.tt-ol-menu-open) #ball .ball-drag::after {
  color: #111;
}

/* Make header logo dark */
body.psi-light-image-on #tt-header .tt-logo-light {
  display: none;
}
body.psi-light-image-on #tt-header .tt-logo-dark {
  display: block;
}

/* Make overlay menu toggle button dark */
body.psi-light-image-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn-text {
  color: #111;
}
body.psi-light-image-on:not(.tt-ol-menu-open)
  .tt-ol-menu-toggle-btn
  span::before,
body.psi-light-image-on:not(.tt-ol-menu-open)
  .tt-ol-menu-toggle-btn
  span::after {
  background-color: #111;
}

@media (max-width: 1024px) {
  body.psi-light-image-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn-text {
    color: #111;
  }
  body.psi-light-image-on:not(.tt-m-menu-open)
    .tt-m-menu-toggle-btn
    span::before,
  body.psi-light-image-on:not(.tt-m-menu-open)
    .tt-m-menu-toggle-btn
    span::after {
    background-color: #111;
  }
}

/* Make header tools dark */
body.psi-light-image-on .tt-header-tools .tt-hti-btn {
  color: #111;
}

/* ------------------------------------------------------------- *
 * Portfolio carousel
/* ------------------------------------------------------------- */

.tt-portfolio-carousel {
  position: relative;
}

.tt-portfolio-carousel .swiper-wrapper {
  position: relative;
}

.tt-portfolio-carousel .swiper-wrapper.swtr-smooth {
  /* Add transition when windows resize or orientation change */
  transition: transform 0.8s !important;
}

.tt-portfolio-carousel .swiper-slide {
  display: flex;
  align-items: center;
  height: 100vh;
}
@media (min-width: 1025px) {
  .tt-portfolio-carousel .swiper-slide {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .tt-portfolio-carousel .swiper-slide {
    height: calc(100vh - 50px);
  }
}

.tt-pc-ghost {
  position: absolute;
  font-size: calc(16px + 24vw);
  font-weight: 600;
  color: #fff;
  opacity: 0.02;
  line-height: 1;
  z-index: -1;
}
.tt-pc-ghost span {
  display: block;
}

/* Portfolio carousel item
=========================== */
.tt-portfolio-carousel-item {
  position: relative;
  display: flex;
  line-height: 0;
}
@media (min-width: 1025px) {
  .tt-portfolio-carousel-item {
    margin-left: 7vw;
    margin-right: 7vw;
  }
}

.tt-pci-image-wrap {
  position: relative;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.tt-pci-image,
.tt-portfolio-carousel-item .tt-pci-video {
  position: relative;
}
video.tt-pci-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1025px) {
  .tt-pci-image,
  .tt-portfolio-carousel-item .tt-pci-video {
    height: 30vw;
  }
  .tt-pci-image {
    width: auto;
  }
  .tt-portfolio-carousel-item .tt-pci-video {
    width: 48vw;
  }
}
@media (max-width: 1024px) {
  .tt-portfolio-carousel-item {
    width: 100%;
  }
  .tt-pci-image,
  .tt-portfolio-carousel-item .tt-pci-video {
    width: 100%;
    height: 60vw;
    object-fit: cover;
    object-position: 50% 50%;
  }
}

/* Slide disabled (for non active slides)
================== */
.tt-portfolio-carousel-item {
  transition: all 0.5s ease-in-out;
}
.swiper-slide.tt-pcs-disabled .tt-portfolio-carousel-item {
  cursor: auto;
  pointer-events: none;
  opacity: 0.3;
  transform: scale(0.9);
}

/* Portfolio carousel item caption 
=================================== */
.tt-pci-caption {
  position: absolute;
  top: 50%;
  width: 100%;
}
.tt-pci-caption-inner {
  position: relative;
}
.tt-pci-title {
  margin: 0;
  font-size: calc(16px + 3.2vw);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.tt-pci-categories {
  position: relative;
  margin-top: 30px;
}
.tt-pci-category {
  position: relative;
  display: inline-block;
  font-size: calc(13px + 0.1vw);
  color: #fff;
  line-height: 1.2;
}
.tt-pci-category ~ .tt-pci-category {
  margin-left: -4px;
}
.tt-pci-category ~ .tt-pci-category:not(:empty)::before {
  content: ", ";
}
.tt-pci-category ~ .tt-pci-category ~ .tt-pci-category ~ .tt-pci-category {
  visibility: hidden;
  width: 0;
}
.tt-pci-category
  ~ .tt-pci-category
  ~ .tt-pci-category
  ~ .tt-pci-category
  ~ .tt-pci-category {
  display: none;
}
.tt-pci-category
  + .tt-pci-category
  + .tt-pci-category
  + .tt-pci-category::before {
  content: "...";
  margin-left: 5px;
  visibility: visible;
}

@media (min-width: 1025px) {
  .tt-pci-caption {
    left: 0;
    transform: translate3d(-100px, -50%, 0);
  }
  .tt-pci-caption-front {
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
  }
  .tt-pci-caption-back {
    left: -1px;
    z-index: 1;
  }
}
@media (max-width: 1024px) {
  .tt-pci-caption {
    top: 40%;
    left: 5%;
    right: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .tt-pci-caption-back {
    display: none;
  }
  .tt-pci-caption-front {
    z-index: 9;
  }
}

/* Disable actions until animations are loaded (for "tt-transition" only) */
body.tt-transition .tt-portfolio-hover-carousel::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
body.tt-transition .tt-portfolio-hover-carousel.tt-phc-ready::before {
  display: none;
}

/* If image is light 
===================== */
.phc-image.phc-image-is-light[class*="cover-opacity-"]::before {
  opacity: 0 !important;
}
body.tt-light-bg-on .tt-phc-item-title {
  -webkit-text-stroke: 1px #111;
}
body.tt-light-bg-on
  .tt-portfolio-hover-carousel
  .swiper-slide.active
  .tt-phc-item-title {
  color: #111;
  -webkit-text-stroke: 1px #111;
}
body.tt-light-bg-on .tt-phc-category,
body.tt-light-bg-on .tt-phc-item::before,
body.tt-light-bg-on .tt-phc-counter {
  color: #111;
}
body.tt-light-bg-on .tt-phc-counter-separator::before {
  background-color: #111;
}

body.tt-portfolio-hover-carousel-on.tt-light-bg-on #ball {
  border-color: #111;
}
body.tt-portfolio-hover-carousel-on.tt-light-bg-on #ball .ball-drag,
body.tt-portfolio-hover-carousel-on.tt-light-bg-on #ball .ball-drag::before,
body.tt-portfolio-hover-carousel-on.tt-light-bg-on #ball .ball-drag::after {
  color: #111;
}

/* Make header logo dark */
body.tt-light-bg-on #tt-header .tt-logo-light {
  display: none;
}
body.tt-light-bg-on #tt-header .tt-logo-dark {
  display: block;
}

/* Make overlay menu toggle button dark */
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn-text {
  color: #111;
}
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::before,
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::after {
  background-color: #111;
}

@media (max-width: 1024px) {
  body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn-text {
    color: #111;
  }
  body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::before,
  body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::after {
    background-color: #111;
  }
}

/* Make header tools dark */
body.tt-light-bg-on .tt-header-tools .tt-hti-btn {
  color: #111;
}

/* ------------------------------------------------------------- *
 * Page nav
/* ------------------------------------------------------------- */

.tt-page-nav {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 1900px) and (min-width: 1024px) {
  .tt-page-nav {
    max-width: 40vw;
  }
}

/* Page nav link */
.tt-pn-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}

/* Page nav title */
.tt-pn-title {
  position: relative;
  display: block;
  left: 50%;
  font-family: "Kaisei HarunoUmi";
  font-size: clamp(42px, 6vw, 110px);
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  opacity: 0.4;
  white-space: nowrap;
  transform: translate3d(-50%, 0, 0);
  transition: transform 0.9s cubic-bezier(0.51, 0.57, 0.17, 1);

  /* Ellipsis */
  overflow: hidden;
  text-overflow: ellipsis;
}
.tt-pn-hover-title {
  position: absolute;
  left: 50%;
  font-size: clamp(36px, 6vw, 110px);
  font-weight: bold;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  white-space: nowrap;
  transform: translate3d(-50%, 100%, 0);
  transition: transform 0.9s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.tt-pn-hover-title span {
  color: #fff;
  transform: translate3d(-50%, 400%, 0);
  margin: 0 20px;
}
@media (max-width: 1024px) {
  .tt-pn-title:hover {
    opacity: 1;
  }
  .tt-pn-hover-title {
    display: none;
  }
}

@media (min-width: 1025px) {
  .tt-pn-link:hover .tt-pn-title {
    transform: translate3d(-50%, -400%, 0);
    transition-delay: 0.1s;
  }
  .tt-pn-link:hover .tt-pn-hover-title {
    transform: translate3d(-50%, 0, 0);
    /* transition-delay: 0.1s; */
  }

  /* If the hover title is cloned (have multiple <span>'s) then animate it */
  .tt-page-nav .tt-pn-hover-title span {
    display: inline-flex;
    align-items: center;
    padding-right: -3vw;
    animation: marquee 10s linear infinite;
    animation-play-state: paused;
  }
  .tt-page-nav .tt-pn-link:hover .tt-pn-hover-title span {
    animation: marquee 10s linear infinite;
    animation-play-state: running;
  }
  @-webkit-keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-1300px);
    }
  }
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-1300px);
    }
  }
}

/* Page nav hover title separator (dot) */
.tt-pn-hover-title span::after {
  position: absolute;
  display: block;
  content: "";
  right: 27.900000000000006vw;
  top: 56%;
  width: 0.8vw;
  height: 0.8vw;
  background-color: #fff;
  border-radius: 100px;
  transform: translate3d(0, -50%, 0);
}

/* Page nav subtitle */
.tt-pn-subtitle {
  margin-top: 20px;
  font-size: calc(16px + 0.1vw);
  color: #fff;
  font-family: "Roboto";
}

/* Page nav styles 
=================== */
/* Style stroke (no effect on small screens) */
@media (min-width: 1025px) {
  .tt-page-nav.tt-pn-stroke .tt-pn-title {
    font-weight: bold;
    font-weight: 800;
    opacity: 0.6;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
  }

  /* If Firefox */
  body.is-firefox .tt-page-nav.tt-pn-stroke .tt-pn-title {
    -webkit-text-stroke-width: 2px;
  }
}

/* Content carousel navigation 
=============================== */
.tt-cc-nav-prev,
.tt-cc-nav-next {
  position: absolute;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
}
.tt-cc-nav-prev {
  left: 2%;
}
.tt-cc-nav-next {
  right: 2%;
}

.tt-cc-nav-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.tt-cc-nav-prev .tt-cc-nav-arrow::after,
.tt-cc-nav-next .tt-cc-nav-arrow::after {
  position: relative;
  line-height: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.tt-cc-nav-prev .tt-cc-nav-arrow::after {
  content: "\f053";
}
.tt-cc-nav-next .tt-cc-nav-arrow::after {
  content: "\f054";
}

.tt-cc-nav-prev.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow,
.tt-cc-nav-next.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

/* Content carousel pagination 
=============================== */
.tt-cc-pagination {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, 0, 0);
}

/* Content carousel pagination bullets */
.tt-cc-pagination-bullets {
  font-size: 0;
}
.tt-cc-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  margin: 8px;
  opacity: 1;
  border-radius: 100%;
  border: 2px solid #fff;
}
.tt-cc-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* Content carousel pagination dynamic bullets */
.tt-cc-pagination-bullets-dynamic {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
  transition: 0.2s transform, 0.2s left;
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

/* Content carousel pagination fraction */
.tt-cc-pagination-fraction {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}

.tt-cc-pagination-fraction .swiper-pagination-current {
  position: relative;
  top: -4px;
}
.tt-cc-pagination-fraction .swiper-pagination-total {
  position: relative;
  bottom: -4px;
}

/* Content carousel pagination progressbar */
.tt-cc-pagination-progressbar {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .tt-cc-pagination-progressbar {
    max-width: 90%;
  }
}
.tt-cc-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  transform-origin: left top;
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */

button {
  background-color: transparent;
  cursor: pointer;
  border: none;
}

.tt-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: transparent;
  margin: 15px 15px 15px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-weight: 500;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  z-index: 9;
}
.tt-btn:last-child {
  margin-right: 0;
}
.tt-btn > * {
  position: relative;
  color: #fff;
  transition: transform 0.3s;
}
.tt-btn > *,
.tt-btn > *::after {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  line-height: 1;
}
.tt-btn > *::after {
  position: absolute;
  content: attr(data-hover);
  top: 100%;
  width: 100%;
  left: 0;
  padding-left: 0;
  padding-right: 0;
}
.tt-btn:hover > * {
  transform: translate3d(0, -100%, 0);
}

/* Button disabled */
.tt-btn.tt-btn-disabled {
  opacity: 0.4;
}
.tt-btn.tt-btn-disabled *,
.tt-btn button[disabled] {
  cursor: not-allowed;
}

/* ------------------------------------------------------------- *
 * Magnetic wrap
/* ------------------------------------------------------------- */

.magnetic-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------------------------- *
 * Blockquote
/* ------------------------------------------------------------- */

blockquote {
  position: relative;
  margin: 35px 5%;
  padding-left: 40px;
  font-size: 24px;
  border-left: 4px solid #3e3e3e;
}
@media (max-width: 768px) {
  blockquote {
    margin-left: 0;
    margin-right: 0;
  }
}
blockquote.open-quote {
  border: none;
}
blockquote.open-quote::before {
  position: absolute;
  content: open-quote;
  top: 0;
  left: 0;
  font-size: 84px;
  font-weight: 300;
  color: #d2d2d2;
  line-height: 1;
}
blockquote footer {
  display: block;
  margin-top: 20px;
  font-size: 80%;
  color: #999;
}
blockquote footer::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #7d7d7d;
  margin: 0 10px 5px 0;
}

/* ------------------------------------------------------------- *
 * Figure
/* ------------------------------------------------------------- */

figure {
  position: relative;
  margin: 0;
}

/* figure image */
figure img {
  width: 100%;
  height: auto;
}

/* figure caption */
figcaption {
  position: relative;
  max-width: 600px;
  padding: 15px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  z-index: 9;
  opacity: 0.8;
}
@media (min-width: 1025px) {
  figcaption {
    position: absolute;
    right: 5%;
    bottom: 5%;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
figcaption a {
  border-bottom: 1px dotted;
}
figcaption a:hover {
  opacity: 0.9;
}

/* ------------------------------------------------------------- *
 * Forms
/* ------------------------------------------------------------- */

.tt-form-control {
  display: block;
  width: 100%;
  background-color: transparent;
  padding: 5px 15px;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
  border: 1px solid rgb(136 136 136 / 65%);
  border-radius: 3px;
}
.tt-form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: rgb(204 204 204 / 85%);
  outline: none;
  box-shadow: none;
}
.tt-form-control + .tt-form-control {
  margin-top: 20px;
}
.tt-form-control:disabled,
.tt-form-control[readonly] {
  background-color: rgb(176 176 176 / 6%);
  opacity: 0.4;
  cursor: not-allowed;
}

.tt-form-control:not(textarea):not([size]) {
  /* tt-form-control height */
  height: 56px;
}

.tt-form-text {
  display: block;
  margin-top: 5px;
  font-style: italic;
  color: #999;
}

label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
label .required {
  opacity: 0.8;
}

::-webkit-input-placeholder {
  color: #999 !important;
}
:-moz-placeholder {
  color: #999 !important;
}
::-moz-placeholder {
  color: #999 !important;
}
:-ms-input-placeholder {
  color: #999 !important;
}

/* form group */
.tt-form-group {
  margin-bottom: 30px;
}

/* checkbox/radio */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

/* textarea */
textarea,
textarea.tt-form-control {
  padding: 15px;
}

/* select */
select,
select.tt-form-control {
  cursor: pointer;
  color: #999;
}
select option {
  background-color: #131212;
  color: #fff;
}
select option[value=""][disabled] {
  display: none;
}
select[multiple] option {
  background-color: transparent;
  color: #fff;
}
select option[disabled],
select[multiple] option[disabled] {
  color: #999;
}
select:required:invalid {
  color: #999;
}

/* range slider */
input[type="range"] {
  width: 100%;
}

/* Form inline 
=============== */
@media (min-width: 1025px) {
  /* Form inline */
  form.tt-form-inline {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
  form.tt-form-inline .tt-form-group {
    margin: 0 15px 0 0;
  }
  form.tt-form-inline .tt-btn {
    margin: 40px 0 0 0;
  }

  /* Form group inline */
  .tt-form-group.tt-form-inline {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .tt-form-group.tt-form-inline label {
    display: flex;
    margin: 0 15px 0 0;
  }
  .tt-form-group.tt-form-inline label span {
    margin: 0 0 0 4px;
  }
  form.tt-form-inline .tt-btn.tt-form-inline {
    margin: 0;
  }
}

/* Custom form with button inside */
.tt-form-btn-inside {
  position: relative;
}
.tt-form-btn-inside .tt-form-control {
  padding-right: 60px !important;
}
.tt-form-btn-inside button {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 60px;
  height: 54px;
  background-color: transparent;
  font-size: 19px;
  color: #999;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}
.tt-form-btn-inside button:hover {
  color: #fff;
}

/* -------------------------------------------------------------------- *
 * Background video
 * Note: position "relative" or "absolute" required on parent element!
/* -------------------------------------------------------------------- */

.tt-bg-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
video.tt-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------- *
 * Background noise
/* ------------------------------------------------------------- */

.bg-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-noise:before {
  position: absolute;
  content: "";
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: -1;
  pointer-events: none;
  background-image: url(../img/bg-noise.png);
  background-position: 50%;
  animation: BgNoise 1s steps(2) infinite;
}
@keyframes BgNoise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}

/* ------------------------------------------------------------- *
 * Sidebar (classic)
/* ------------------------------------------------------------- */

.tt-sidebar {
  margin-top: 15px;
  margin-left: 30px;
}
@media (max-width: 1600px) {
  .tt-sidebar {
    margin-left: 10px;
  }
}

/* Sidebar left */
.tt-row.tt-lg-row-reverse .tt-sidebar {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 1600px) {
  .tt-row.tt-lg-row-reverse .tt-sidebar {
    margin-right: 10px;
  }
}

/* Hide elements (added by .js) */
.tt-sidebar-trigger,
.tt-sidebar-close-btn {
  display: none;
}

/* Sidebar on small screen 
=========================== */
@media (max-width: 991px) {
  .tt-sidebar-wrap {
    position: absolute;
    z-index: 9999;
  }
  .tt-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100vh;
    z-index: 2;
    background-color: #1b1b1b;
    padding: 60px 30px 100px 30px;
    margin: 0;
    overflow-y: auto;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.4s ease-in-out;
  }
  body.tt-sidebar-open .tt-sidebar {
    transform: translate3d(0, 0, 0);
  }
  body.tt-sidebar-open {
    overflow-y: hidden !important;
  }

  /* Sidebar cover */
  .tt-sidebar-cover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 75%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  body.tt-sidebar-open .tt-sidebar-cover {
    opacity: 1;
    visibility: visible;
  }

  /* Sidebar trigger */
  .tt-sidebar-trigger {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: #4c2122;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    border-radius: 100px;
  }
  .tt-sidebar-trigger .tt-str-icon-close {
    display: none;
  }

  .ph-share .tt-sidebar-trigger {
    position: relative;
    bottom: auto;
    right: auto;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
  }

  body.tt-sidebar-open .tt-sidebar-trigger .tt-str-icon-close {
    display: block;
  }
  body.tt-sidebar-open .tt-sidebar-trigger .tt-str-icon {
    display: none;
  }

  /* Sidebar top close button */
  .tt-sidebar-close-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s;
  }
  .tt-sidebar-close-btn:hover {
    transform: rotate(90deg);
  }
}

@media (max-width: 440px) {
  .tt-sidebar {
    width: 90%;
    padding: 60px 20px 100px 20px;
  }
}

/* ------------------------------------------------------------- *
 * Sliding sidebar
/* ------------------------------------------------------------- */

.tt-sliding-sidebar-wrap {
  position: relative;
  z-index: 9999;
}

body.tt-sliding-sidebar-open {
  overflow-y: hidden !important;
}
body.tt-sliding-sidebar-open .scrollbar-track {
  display: none !important;
}

.tt-sliding-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100vh;
  z-index: 2;
  background-color: #1b1b1b;
  padding-top: 60px;
  overflow: hidden;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 440px) {
  .tt-sliding-sidebar {
    width: 90%;
  }
}
body.tt-sliding-sidebar-open .tt-sliding-sidebar {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.tt-sliding-sidebar-close {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 75%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body.tt-sliding-sidebar-open .tt-sliding-sidebar-close {
  opacity: 1;
  visibility: visible;
}

.tt-sliding-sidebar-close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 25px;
  width: 30px;
  height: 30px;
  background-color: #333;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.3s;
}
.tt-sliding-sidebar-close-btn:hover {
  transform: rotate(90deg);
}

@media (min-width: 769px) {
  body.tt-sliding-sidebar-left-on #content-wrap {
    padding-left: 40px;
  }
  body.tt-sliding-sidebar-right-on #content-wrap {
    padding-right: 40px;
  }
  body.tt-sliding-sidebar-left-on .tt-header-inner {
    padding-left: 70px;
  }
  body.tt-sliding-sidebar-right-on .tt-header-inner {
    padding-right: 70px;
  }
}

/* Sliding sidebar trigger 
=========================== */
.tt-sliding-sidebar-trigger {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 40px;
  height: 100vh;
  background-color: #1b1b1b;
  font-size: 20px;
  color: #808080;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, width 0.3s;
}

@media (min-width: 769px) {
  body:not(.is-mobile) .tt-sliding-sidebar-trigger:hover {
    width: 54px;
    background-color: #222;
    color: #fff;
  }
}

.tt-sliding-sidebar-trigger .tt-ss-icon-close {
  display: none;
}

/* Sliding sidebar position right 
================================== */
.tt-ss-right .tt-sliding-sidebar {
  left: auto;
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.tt-ss-right .tt-sliding-sidebar-trigger {
  left: auto;
  right: 0;
}

/* Sliding sidebar trigger on small screens
============================================ */
@media (max-width: 768px) {
  .tt-sliding-sidebar-trigger {
    top: auto;
    left: auto;
    right: 10px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: #4c2122;
    font-size: 16px;
    color: #fff;
    border-radius: 100px;
    z-index: 3;
  }

  .ph-share .tt-sliding-sidebar-trigger {
    position: relative;
    bottom: auto;
    right: auto;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
  }

  body.tt-sliding-sidebar-open .tt-sliding-sidebar-trigger .tt-ss-icon {
    display: none;
  }
  body.tt-sliding-sidebar-open .tt-sliding-sidebar-trigger .tt-ss-icon-close {
    display: block;
  }
}

/* Magic cursor behavior */
#magic-cursor.blog-interactive-hover-on {
  z-index: -1;
}
#magic-cursor.blog-interactive-hover-on #ball {
  overflow: hidden;
  border: none !important;
}
