/*  MICROTHEMER STYLES  */


/*= General =================== */

/** General >> root **/
:root {
  /**variable start**/
  /*colors*/
  --color-accent: linear-gradient(45deg, var(--secondary), var(--primary));
  --color-accent-counter: linear-gradient(135deg, var(--secondary), var(--primary));
  --color-white: #ECF0F3;
  --color-white--shade-1: #d1d9e6;
  --color-txt: #444444;
  --color-txt--light: #838383;
  --color-glass: linear-gradient(135deg, hsl(0,0,100,85%),hsl(0,0,100,5%));
  /*others*/
  --content-width: 750px;
  --nav-bar-width: 8rem;
  /**variable end**/
  /**root target start**/
  background: var(--color-white);
  /**root target end**/
}

:root body {
  min-height: 100vh;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--base);
}

:root footer {
  margin-top: auto;
}

:root p {
  margin: 0;
  margin-bottom: 1em;
}

:root h1,
:root h2,
:root h3,
:root h4,
:root h5,
:root h6 {
  margin-bottom: .6em;
}

:root p a {
  font-weight: 700;
}

/** General >> Body Blush **/
body {
  position: relative;
}

body:before {
  position: absolute;
  content: '';
  width: 40vmin;
  height: 30vmin;
  right: 0;
  top: 100vh;
  z-index: -1;
  background-color: rgba(128, 217, 255, 0.7);
  border-radius: 50%;
  filter: blur(400px);
}

/** General >> WP Block Image **/
.wp-block-image,
.wp-block-video video {
  border-radius: 2rem;
}

.wp-block-image figcaption,
.wp-block-video video figcaption {
  border-radius: 0 0 2rem 2rem;
}


/*= _layout =================== */

/** _layout >> Layout Grid **/
.l-grid:not(.oxy-easy-posts),
.l-grid.oxy-easy-posts > * {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  grid-gap: 3.5vmax;
}

.l-grid.l-grid--xl:not(.oxy-easy-posts),
.l-grid.l-grid--xl.oxy-easy-posts > * {
  grid-template: auto / 1fr;
}

.l-grid.l-grid--l:not(.oxy-easy-posts),
.l-grid.l-grid--l.oxy-easy-posts > * {
  grid-template: auto/repeat(2, 1fr);
}

.l-grid.l-grid--s:not(.oxy-easy-posts),
.l-grid.l-grid--s.oxy-easy-posts > * {
  grid-template: auto/repeat(4, 1fr);
  grid-gap: 3vmax;
}

.l-grid.l-grid--xs:not(.oxy-easy-posts),
.l-grid.l-grid--xs.oxy-easy-posts > * {
  grid-template: auto/repeat(6, 1fr);
  grid-gap: 2.5vmax;
}


/*= _component ================ */

/** _component >> Portfolios **/
.c-portfolios .oxy-repeater-pages-wrap {
  grid-column: 1 / -1;
}

/** _component >> Portfolio **/
.c-portfolio {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: var(--space-l) var(--space-l);
  z-index: 1;
}

.c-portfolio--l {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.c-portfolio--l .c-portfolio__img-container {
  width: 55%;
}

.c-portfolio--l .c-portfolio__details-wrapper {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.c-portfolio--l .c-portfolio__excerpt {
  text-align: left;
}

.c-portfolio--l .c-portfolio__details {
  width: 45%;
  margin: auto calc(var(--space-xl) * -1) auto var(--space-xl);
}

.c-portfolio__img-container {
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}

.c-portfolio__img-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.c-portfolio__img-shadow {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 80%;
  filter: blur(8px);
}

.c-portfolio__img {
  border-radius: 2rem;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  z-index: 2;
}

.c-portfolio__details {
  margin-top: var(--space-xl);
  padding: 3vmax;
  background: var(--color-white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.c-portfolio__details-wrapper {
  color: var(--base);
}

.c-portfolio__title {
  font-size: var(--text-s);
}

.c-portfolio__excerpt {
  font-size: var(--text-l);
  font-weight: 700;
}

/** _component >> CTA **/
.c-cta {
  position: relative;
  margin-top: 5rem;
  text-decoration: none;
}

.c-cta:hover {
  text-decoration: none;
}

.c-cta--center {
  margin-right: auto;
  margin-left: auto;
}

.c-cta:before {
  content: '';
  position: absolute;
  background-image: var(--color-accent);
  filter: blur(15px);
  width: 50%;
  height: 50%;
  bottom: -.5rem;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.c-cta:hover:before {
  width: 80%;
}

.c-cta__txt {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  padding: 1.5rem 3rem;
  color: var(--white);
  border-radius: 15px;
  background-image: var(--color-accent);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.c-cta__txt:hover {
  transform: translateY(-1rem);
}

/** _component >> Posts **/
.c-posts .oxy-repeater-pages-wrap {
  grid-column: 1 / -1;
}

/** _component >> Post **/
.c-post__img-wrapper {
  width: 100%;
  min-height: 20rem;
}

.c-post__img {
  object-fit: cover;
}

.c-post__detail {
  padding: 3rem;
  width: 100%;
}

.c-post__meta {
  width: 100%;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.c-post__meta-date {
  color: var(--base-medium);
  margin-left: auto;
}

.c-post__meta-category a {
  color: var(--base-medium);
  margin-right: .5em;
}

.c-post__txt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  text-align: left;
}

.c-post__title {
  margin-top: 1rem;
  color: var(--base);
}

.c-post__excerpt {
  margin-top: 1rem;
  color: var(--base);
}

/** _component >> Contact CTA **/
.c-contact-cta__container {
  position: relative;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}

.c-contact-cta__container-txt {
  z-index: 10;
}

.c-contact-cta__img {
  position: absolute;
  height: 150%;
  max-height: 50vmin;
  right: 0;
  bottom: 10%;
  z-index: 5;
  width: auto;
}

.c-contact-cta h2 {
  text-align: center;
  margin-bottom: 1em;
}

/** _component >> Neumorphism Button **/
.c-neu-btn {
  border-radius: .5rem;
  background: var(----color-white);
  box-shadow: -4px -4px 5px 0px var(--white), 4px 4px 5px 0px var(--color-white--shade-1);
  -o-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.c-neu-btn:hover {
  box-shadow: -4px -4px 5px 0px #D1D9E6, 4px 4px 5px 0px var(--white);
}

.c-neu-btn:active {
  box-shadow: inset -2px -2px 5px 0px var(--white), inset 2px 2px 5px 0px var(--color-white--shade-1);
}

.c-neu-btn__icon svg {
  max-width: 5rem;
  max-height: 5rem;
  padding: 1rem;
  color: var(--base);
}

/** _component >> Splide **/
.splide {
  width: 100%;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
  /*hover other than 1st card, show txt*/
  /*hover other than 1st card, hide title*/
  /*hover other than 1st card, hide 1st card txt*/
  /*hover other than 1st card, show 1st card title*/
  /*hover 1st card, keep showing 1st card txt*/
  /*hover 1st card, keep showing 1st card title*/
}

.splide * {
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

.splide__track {
  display: block;
  width: 100%;
}

.splide__list {
  display: flex !important;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 100%;
}

.splide__slide {
  position: relative;
  border-radius: 2rem;
  min-height: 50vh;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  /*make 1st child flexible with grow*/
}

.splide__slide:not(:last-child) {
  margin-right: var(--space-m);
}

.splide__slide:first-child {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  /*set default state of txt & title for 1st child*/
}

.splide__slide:first-child .splide__txt {
  opacity: 1;
}

.splide__slide:first-child .splide__title {
  opacity: 0;
}

.splide__slide:not(:first-child) {
  width: 25%;
}

.splide__slide:hover:not(:first-child) {
  width: 50%;
}

.splide__slide:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, var(--base) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  bottom: 0;
  border-radius: 0 0 2rem 2rem;
}

.splide__img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 90%;
  width: auto;
}

.splide__title {
  position: absolute;
  bottom: var(--space-s);
  display: block;
  color: white;
  z-index: 3;
  margin-left: var(--space-s);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: auto;
}

.splide__txt {
  z-index: 2;
  margin-top: auto;
  margin-bottom: var(--space-s);
  color: var(--white);
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-size: var(--text-l);
  padding: 0 var(--space-s);
  opacity: 0;
}

.splide .splide__slide:not(.splide__slide--1):hover .splide__txt {
  opacity: 1;
}

.splide .splide__slide:not(.splide__slide--1):hover .splide__title {
  opacity: 0;
}

.splide:not(.splide__slide--1):hover .splide__txt {
  opacity: 0;
}

.splide:not(.splide__slide--1):hover .splide__title {
  opacity: 1;
}

.splide .splide__slide--1:hover .splide__txt {
  opacity: 1;
}

.splide .splide__slide--1:hover .splide__title {
  opacity: 0;
}


/*= _theme ==================== */

/** _theme >> Claymorphism **/
.t-clay {
  box-shadow: inset 0 -4px 5px 0 #B9CDDE, inset 15px 0 12px 3px var(--white), inset -6px -4px 16px 0 #B9D2E6, inset -7px -10px 35px #B9D2E6;
  border-radius: 30px;
  background: var(--white);
}

/** _theme >> Neumorphism **/
.t-neu {
  box-shadow: -5px -5px 5px 0px var(--white), 5px 5px 5px 0px #D1D9E6;
  border-radius: 2rem;
  background: var(--color-white);
}

.t-neu--inset {
  box-shadow: inset -5px -5px 5px 0px var(--white), inset 5px 5px 5px 0px #D1D9E6;
}

/** _theme >> Glassmorphism **/
.t-glass {
  background: var(--color-glass);
  background-repeat: no-repeat;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  /*background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5)) !important;*/
  background: radial-gradient(farthest-side at 20% 20%, rgba(255, 255, 255, 0.51), rgba(255, 255, 255, 0.3)) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}


/*= _object =================== */

/** _object >> Fluent Form **/
.o-form .fluentform,
.o-form.fluentform {
  padding: var(--space-l);
  max-width: var(--width-l);
}

.o-form .fluentform .ff-el-form-control,
.o-form.fluentform .ff-el-form-control {
  border: none;
  box-shadow: inset -5px -5px 5px 0 var(--white), inset 5px 5px 5px 0 #D1D9E6;
  padding: var(--space-s);
  border-radius: 20px;
}

.o-form .fluentform .ff_submit_btn_wrapper,
.o-form.fluentform .ff_submit_btn_wrapper {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.o-form .fluentform .ff_submit_btn_wrapper:before,
.o-form.fluentform .ff_submit_btn_wrapper:before {
  content: '';
  height: 50%;
  width: 10%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1rem;
  background: var(--color-accent);
  filter: blur(15px);
  z-index: 1;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  border-radius: 50%;
}

.o-form .fluentform .ff_submit_btn_wrapper:hover:before,
.o-form .fluentform .ff_submit_btn_wrapper:focus:before,
.o-form .fluentform .ff_submit_btn_wrapper:active:before,
.o-form.fluentform .ff_submit_btn_wrapper:hover:before,
.o-form.fluentform .ff_submit_btn_wrapper:focus:before,
.o-form.fluentform .ff_submit_btn_wrapper:active:before {
  width: 15%;
}

.o-form .fluentform .ff-btn,
.o-form.fluentform .ff-btn {
  background: var(--color-accent);
  color: var(--white);
  border: none;
  padding: 1.2rem 3rem;
  background-repeat: repeat;
  z-index: 2;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.o-form .fluentform .ff-btn:hover,
.o-form .fluentform .ff-btn:focus,
.o-form.fluentform .ff-btn:hover,
.o-form.fluentform .ff-btn:focus {
  opacity: 1;
  transform: translateY(-1rem);
}

.o-form .fluentform .ff-btn:active,
.o-form.fluentform .ff-btn:active {
  transform: translateY(0);
}

.o-form .fluentform .ff-el-section-break,
.o-form.fluentform .ff-el-section-break {
  margin-bottom: 0;
  margin-top: 2rem;
}


/*= Main ====================== */

/** Main >> Header **/
@media (min-width: calc(1400px + 80px)) {
  .header__logo-link {
    margin-left: 0;
  }
}

.header__logo-link:hover .header__logo-img {
  transform: rotate(180deg);
}

.header__logo-link:not(:hover) .header__logo-img path {
  fill: var(--base);
}

.header__logo-img {
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
}

/** Main >> Hamburger **/
.hamburger {
  color: var(--base);
}

/** Main >> Modal **/
.oxy-modal-backdrop.live {
  margin-left: var(--nav-bar-width);
  max-width: calc(100% - var(--nav-bar-width));
}

/** Main >> Footer **/
.footer {
  margin-left: var(--nav-bar-width);
  max-width: calc(100% - var(--nav-bar-width));
}

.footer__logo-link {
  -webkit-transition: 500ms;
  transition: 500ms;
}

.footer__logo-link:not(:hover) .footer__logo-img path {
  fill: var(--base);
}

.footer__logo-link:hover .footer__logo-img {
  transform: rotate(180deg);
}

.footer__logo-img {
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
}

/** Main >> Z Footer **/
#z-footer {
  margin-left: var(--nav-bar-width);
  max-width: calc(100% - var(--nav-bar-width));
}


/*= Content =================== */

/** Content >> Main **/
main img {
  height: auto;
}

/** Content >> Article **/
article {
  position: relative;
  width: 100%;
  -webkit-align-items: center;
  align-items: center;
}

article .ct-section-inner-wrap {
  max-width: var(--content-width);
}

/** Content >> Table of Content **/
.sticky-toc {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  -webkit-align-items: end;
  align-items: end;
  -webkit-align-content: end;
  align-content: end;
}

.sticky-toc__trigger {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 2;
  top: 0;
  right: 0;
}

.sticky-toc__container {
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  padding: var(--space-xs);
  writing-mode: tb-rl;
  transform: rotate(-180deg) translate(0, 50%);
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  background: var(--color-glass);
  background-repeat: no-repeat;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  /*background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5)) !important;*/
  background: radial-gradient(farthest-side at 20% 20%, rgba(255, 255, 255, 0.51), rgba(255, 255, 255, 0.3)) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sticky-toc__icon svg {
  max-width: 1.5rem;
  max-height: 1.5rem;
  transform: rotate(-90deg);
  margin-bottom: 1rem;
}

.sticky-toc__txt {
  margin-bottom: 0;
}

.sticky-toc .toc {
  font-size: var(--text-s);
}

.portfolio-single__content,
.post-single__content {
  position: relative;
}

#modal-toc {
  background: radial-gradient(farthest-side at 20% 20%, rgba(255, 255, 255, 0.81), rgba(255, 255, 255, 0.6)) !important;
}


/*= Home ====================== */

/** Home >> Intro **/
.home-intro__col {
  grid-column: span 4;
  max-width: 100%;
}

.home-intro__col:first-child {
  grid-column: span 2;
}

.home-intro__title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 18ch;
}

.home-intro__title div {
  padding-right: .5ch;
}


/*= Quick Fix ================= */

/** Quick Fix >> Home Blog **/
.home-blog {
  display: none;
}


/*( Tablet )*/
@media only screen and (max-width: 991px) {

	/*= _layout =================== */

	/** _layout >> Layout Grid **/
	.l-grid:not(.oxy-easy-posts),
.l-grid.oxy-easy-posts > * {
  grid-template: auto/repeat(2, 1fr);
  grid-gap: 3vmax;
}

.l-grid.l-grid--l:not(.oxy-easy-posts),
.l-grid.l-grid--l.oxy-easy-posts > * {
  grid-template: auto/repeat(1, 1fr);
}

.l-grid.l-grid--s:not(.oxy-easy-posts),
.l-grid.l-grid--s.oxy-easy-posts > * {
  grid-template: auto/repeat(3, 1fr);
  grid-gap: 2.5vmax;
}

.l-grid.l-grid--xs:not(.oxy-easy-posts),
.l-grid.l-grid--xs.oxy-easy-posts > * {
  grid-template: auto/repeat(4, 1fr);
  grid-gap: 2vmax;
}


	/*= Home ====================== */

	/** Home >> Intro **/
	.home-intro__col {
  grid-column: span 6;
}

.home-intro__col:first-child {
  grid-column: span 6;
}


	/*= _component ================ */

	/** _component >> Portfolio **/
	.c-portfolio__details {
  margin: auto -5vmax auto 5vmax;
  padding: 2.5vmax;
}

	/** _component >> CTA **/
	.c-cta {
  margin-top: 4rem;
}

	/** _component >> Post **/
	.c-post__img-wrapper {
  min-height: 15rem;
}

.c-post__detail {
  padding: 2rem;
}

	/** _component >> Contact CTA **/
	.c-contact-cta__container-txt {
  max-width: var(--width-l);
}

.c-contact-cta__img {
  max-height: 60vmax;
  padding-top: var(--space-xs);
  transform: translate(0, 0);
  right: 0;
  left: auto;
  top: -50%;
  bottom: auto;
}

	/** _component >> Splide **/
	.splide__slide {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.splide__title {
  display: none;
}

.splide__txt {
  opacity: 1 !important;
  margin-bottom: var(--space-m);
  font-size: var(--text-xl);
}


	/*= General =================== */

	/** General >> root **/
	:root {
  --nav-bar-width: 0;
}


	/*= Content =================== */

	/** Content >> Table of Content **/
	.sticky-toc__container {
  padding: 1rem 0;
  width: 2.8rem;
}

.sticky-toc__txt {
  font-size: var(--text-s);
}


}


/*( Portrait )*/
@media only screen and (max-width: 479px) {

	/*= _layout =================== */

	/** _layout >> Layout Grid **/
	.l-grid:not(.oxy-easy-posts),
.l-grid.oxy-easy-posts > * {
  grid-template: auto / 1fr;
  grid-gap: 2.5vmax;
}

.l-grid.l-grid--s:not(.oxy-easy-posts),
.l-grid.l-grid--s.oxy-easy-posts > * {
  grid-template: auto/repeat(2, 1fr);
  grid-gap: 2vmax;
}

.l-grid.l-grid--xs:not(.oxy-easy-posts),
.l-grid.l-grid--xs.oxy-easy-posts > * {
  grid-template: auto/repeat(3, 1fr);
  grid-gap: 1.5vmax;
}


	/*= _component ================ */

	/** _component >> Portfolio **/
	.c-portfolio {
  padding: 3vmax 3vmax;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-portfolio__details {
  margin: var(--space-m) 0 auto 0;
  padding: 2vmax;
  width: 100%;
}

.c-portfolio--l .c-portfolio__details {
  margin: var(--space-l) 0 auto 0;
  width: 100%;
}

	/** _component >> CTA **/
	.c-cta {
  margin-top: 3rem;
}

	/** _component >> Post **/
	.c-post__detail {
  padding: 1.5rem;
}

	/** _component >> Contact CTA **/
	.c-contact-cta__img {
  top: -35%;
}

	/** _component >> Splide **/
	.splide__slide:not(:last-child) {
  margin-right: var(--space-xs);
}


	/*= _object =================== */

	/** _object >> Fluent Form **/
	.o-form .fluentform .ff-el-form-control {
  padding: var(--space-s);
}


}

