
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Variables Start */
/* ------------------------------------------------*/
:root {
  --_size: 1.6rem;
  --_font-default: "Urbanist", sans-serif;
  --_font-accent: "Urbanist", sans-serif;
  --_radius: 2rem;
  --_radius-s: 1rem;
  --_animspeed-fast: 0.1s;
  --_animspeed-medium: 0.3s;
  --_animspeed-slow: 0.6s;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);
  /* light color scheme */
  --base--light: #BABEC8;
  --base-rgb--light: 186,190,200;
  --base-shade--light: #989ba3;
  --base-tint--light: #d8dde7;
  --stroke-controls--light: #2C2E34;
  --stroke-elements--light: #8F93A1;
  --font-weight-base--light: 400;
  --font-weight-medium--light: 600;
  --t-bright--light: #151617;
  --t-medium--light: #44474a;
  --t-muted--light: #797D83;
  --t-opp-bright--light: #F2F5FC;
  --t-opp-medium--light: #AEB5C5;
  --t-opp-muted--light: #3E4045;
  --neutral-bright--light: #000000;
  /* dark color scheme */
  --base--dark: #141414;
  --base-rgb--dark: 20,20,20;
  --base-shade--dark: #000000;
  --base-tint--dark: #242424;
  --stroke-controls--dark: #F2F5FC;
  --stroke-elements--dark: #535762;
  --font-weight-base--dark: 300;
  --font-weight-medium--dark: 500;
  --t-bright--dark: #F2F5FC;
  --t-medium--dark: #AEB5C5;
  --t-muted--dark: #505258;
  --t-opp-bright--dark: #151617;
  --t-opp-medium--dark: #313437;
  --t-opp-muted--dark: #797D83;
  --neutral-bright--dark: #ffffff;
  /* permanent colors */
  --per-base: #141414;
  --t-per-bright-light: #F2F5FC;
  --t-per-medium-light: #AEB5C5;
  --t-per-muted-light: #3E4045;
  --t-per-bright-dark: #151617;
  --t-per-medium-dark: #313437;
  --t-per-muted-dark: #797D83;
  --per-stroke-controls: #F2F5FC;
  --per-stroke-elements: #8F93A1;
  /* neutral colors */
  --neutral-white: #ffffff;
  --neutral-black: #000000;
  --neutral-gray: #878787;
  --neutral-gray-dark: #404040;
}

/* defaults */
@media (prefers-color-scheme: light) {
  :root {
    --base: var(--base--light);
    --base-rgb: var(--base-rgb--light);
    --base-shade: var(--base-shade--light);
    --base-tint: var(--base-tint--light);
    --stroke-controls: var(--stroke-controls--light);
    --stroke-elements: var(--stroke-elements--light);
    --font-weight-base: var(--font-weight-base--light);
    --font-weight-medium: var(--font-weight-medium--light);
    --t-bright: var(--t-bright--light);
    --t-medium: var(--t-medium--light);
    --t-muted: var(--t-muted--light);
    --t-opp-bright: var(--t-opp-bright--light);
    --t-opp-medium: var(--t-opp-medium--light);
    --t-opp-muted: var(--t-opp-muted--light);
    --neutral-bright: var(--neutral-bright--light);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --base: var(--base--dark);
    --base-rgb: var(--base-rgb--dark);
    --base-shade: var(--base-shade--dark);
    --base-tint: var(--base-tint--dark);
    --stroke-controls: var(--stroke-controls--dark);
    --stroke-elements: var(--stroke-elements--dark);
    --font-weight-base: var(--font-weight-base--dark);
    --font-weight-medium: var(--font-weight-medium--dark);
    --t-bright: var(--t-bright--dark);
    --t-medium: var(--t-medium--dark);
    --t-muted: var(--t-muted--dark);
    --t-opp-bright: var(--t-opp-bright--dark);
    --t-opp-medium: var(--t-opp-medium--dark);
    --t-opp-muted: var(--t-opp-muted--dark);
    --neutral-bright: var(--neutral-bright--dark);
  }
}
[color-scheme=light] {
  --base: var(--base--light);
  --base-rgb: var(--base-rgb--light);
  --base-shade: var(--base-shade--light);
  --base-tint: var(--base-tint--light);
  --stroke-controls: var(--stroke-controls--light);
  --stroke-elements: var(--stroke-elements--light);
  --font-weight-base: var(--font-weight-base--light);
  --font-weight-medium: var(--font-weight-medium--light);
  --t-bright: var(--t-bright--light);
  --t-medium: var(--t-medium--light);
  --t-muted: var(--t-muted--light);
  --t-opp-bright: var(--t-opp-bright--light);
  --t-opp-medium: var(--t-opp-medium--light);
  --t-opp-muted: var(--t-opp-muted--light);
  --neutral-bright: var(--neutral-bright--light);
}

[color-scheme=dark] {
  --base: var(--base--dark);
  --base-rgb: var(--base-rgb--dark);
  --base-shade: var(--base-shade--dark);
  --base-tint: var(--base-tint--dark);
  --stroke-controls: var(--stroke-controls--dark);
  --stroke-elements: var(--stroke-elements--dark);
  --font-weight-base: var(--font-weight-base--dark);
  --font-weight-medium: var(--font-weight-medium--dark);
  --t-bright: var(--t-bright--dark);
  --t-medium: var(--t-medium--dark);
  --t-muted: var(--t-muted--dark);
  --t-opp-bright: var(--t-opp-bright--dark);
  --t-opp-medium: var(--t-opp-medium--dark);
  --t-opp-muted: var(--t-opp-muted--dark);
  --neutral-bright: var(--neutral-bright--dark);
}

/* ------------------------------------------------*/
/* Variables End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
.main-image-1 {
  background-image: url("../img/backgrounds/1400x1000_d02.webp");
}

.main-image-2 {
  background-image: url("../img/backgrounds/1920x1080_d01.webp");
}

.about-image-1 {
  background-image: url("../img/backgrounds/ab-1.png");
}

.about-image-2 {
  background-image: url("../img/backgrounds/ab-2.png");
}

.marquee-image-single-1 {
  background-image: url("../img/marquee/01.webp");
}

.marquee-image-single-2 {
  background-image: url("../img/marquee/02.webp");
}

.marquee-image-single-3 {
  background-image: url("../img/marquee/03.webp");
}

.marquee-image-single-4 {
  background-image: url("../img/marquee/04.webp");
}

.marquee-image-single-5 {
  background-image: url("../img/marquee/05.webp");
}

.marquee-image-single-6 {
  background-image: url("../img/marquee/06.webp");
}

.portfolio-item-1 {
  background-image: url("../img/works/1920x1080_w01.webp");
}

.portfolio-item-2 {
  background-image: url("../img/works/1920x1080_w02.webp");
}

.portfolio-item-3 {
  background-image: url("../img/works/1920x1080_w03.webp");
}

.portfolio-item-4 {
  background-image: url("../img/works/1920x1080_w04.webp");
}

.portfolio-item-5 {
  background-image: url("../img/works/1600x1200_w01.webp");
}

.portfolio-item-6 {
  background-image: url("../img/works/1600x1200_w02.webp");
}

.portfolio-item-7 {
  background-image: url("../img/works/1600x1200_w03.webp");
}

.portfolio-item-8 {
  background-image: url("../img/works/1600x1200_w04.webp");
}

.project-image-bg-1 {
  background-image: url("https://mixdesign.dev/themeforest/blayden/img/works/work-single-1/1920x1280_w01.webp");
}

.project-image-bg-2 {
  background-image: url("https://mixdesign.dev/themeforest/blayden/img/works/work-single-1/1920x1080_w01-01.webp");
}

.project-image-bg-3 {
  background-image: url("https://mixdesign.dev/themeforest/blayden/img/works/work-single-1/1920x1080_w01-02.webp");
}

/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Basic Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 6px;
  background: var(--base-shade);
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  background-color: var(--base-shade);
}

::-webkit-scrollbar-thumb {
  background-color: var(--base-tint);
  border-radius: var(--_radius-s);
}

html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100%;
  min-width: 360px;
  overflow-x: unset !important;
  font: normal 400 var(--_size)/1.4 var(--_font-default);
  text-rendering: optimizeLegibility;
  background-color: var(--base);
  color: var(--t-medium);
}

section {
  position: relative;
  min-width: 360px;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.components {
  position: relative;
}

.components__item {
  position: relative;
  padding: 8rem 10%;
  border-bottom: 1px solid var(--stroke-elements);
}

.components__caption {
  display: block;
  font: normal 400 1.3rem/1 var(--_font-default);
  color: var(--t-medium);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2.2rem;
  text-align:center;
  box-shadow: 0 10px 30px rgba(26,26,26,0.08);
}
.team-avatar {
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 1.2rem;
  border: 6px solid rgba(0,0,0,0.04);
}
.team-avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.team-name { font-size:1.25rem; font-weight:700; margin-bottom:0.25rem; }
.team-role { font-size:1rem; color: #666; margin-bottom:1rem; }
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ------------------------------------------------*/
/* Basic Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Transitions Start */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Transitions End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Backgrounds Start */
/* ------------------------------------------------*/
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  -moz-background-size: contain;
       background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------*/
/* Animations - Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 300 5.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 11rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 12.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  h1 {
    font-size: 16rem;
  }
}

@media only screen and (min-width: 992px) {
  .headline-80-desktop .headline__title {
    max-width: 67rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline-80-desktop .headline__title {
    max-width: none;
  }
}

.headline__subtitle.space-top {
  margin-top: 4.6rem;
}
.headline__subtitle.space-bottom {
  margin-bottom: 3.8rem;
}
@media only screen and (min-width: 768px) {
  .headline__subtitle.space-top {
    margin-top: 5.7rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .headline__subtitle.space-top {
    margin-top: 6.4rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__subtitle.space-top {
    margin-top: 5.8rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline__subtitle.space-top {
    margin-top: 6.3rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 5.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline__subtitle.space-top {
    margin-top: 6.8rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.1rem;
  }
}

h2 {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  h2 {
    font-size: 14rem;
  }
}

.h2__text {
  margin-top: 4.5rem;
}
@media only screen and (min-width: 768px) {
  .h2__text {
    margin-top: 5.7rem;
    max-width: 67rem;
  }
}
@media only screen and (min-width: 992px) {
  .h2__text {
    margin-top: 6.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .h2__text {
    margin-top: 5.9rem;
    max-width: 78rem;
  }
  .h2__text.text-half {
    max-width: 54%;
  }
  .h2__text.text-twothirds {
    max-width: 67%;
  }
}
@media only screen and (min-width: 1400px) {
  .h2__text {
    margin-top: 6.6rem;
  }
  .h2__text.text-half {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1600px) {
  .h2__text {
    margin-top: 6.9rem;
  }
  .h2__text.text-half {
    max-width: 45%;
  }
}

h3 {
  font: normal 400 3.4rem var(--_font-accent);
  color: var(--t-bright);
}
h3.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
h3.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  h3 {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  h3 {
    font-size: 6.4rem;
  }
}

h4 {
  font: normal 400 2.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 1400px) {
  h4 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  h4 {
    font-size: 3.6rem;
  }
}

h5 {
  font: normal 500 2.2rem var(--_font-accent);
  color: var(--t-bright);
}

h6 {
  font: normal var(--font-weight-base) 1.8rem/1.6 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  h6 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  h6 {
    font-size: 2.6rem;
  }
}

.section-name {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: flex-start;
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.section-name .section-name-caption,
.section-name i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.section-name i {
  font-size: 2.3rem;
  overflow: hidden;
}
.section-name.icon-left .section-name-caption {
  margin-left: 1rem;
}
.section-name.icon-right .section-name-caption {
  margin-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  .section-name {
    font-size: 2rem;
  }
  .section-name i {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .section-name {
    font-size: 2.2rem;
  }
  .section-name i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-name {
    font-size: 2.6rem;
  }
  .section-name i {
    font-size: 3.2rem;
  }
}

.tagline-chapter {
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
.tagline-chapter.small {
  font-size: 1.6rem;
}
.tagline-chapter::before {
  content: "[";
  display: inline;
  padding-right: 0.24em;
}
.tagline-chapter::after {
  content: "]";
  display: inline;
  padding-left: 0.24em;
}
@media only screen and (min-width: 1200px) {
  .tagline-chapter {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .tagline-chapter {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tagline-chapter {
    font-size: 2.6rem;
  }
  .tagline-chapter.small {
    font-size: 1.8rem;
  }
}

.tagline-tool {
  font: normal 500 1.8rem var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  .tagline-tool {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .tagline-tool {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tagline-tool {
    font-size: 2.6rem;
  }
}

p {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
p.type-basic-160lh {
  line-height: 1.6;
}
p.type-basic-140lh {
  line-height: 1.4;
}
p.small {
  font-size: 1.6rem;
}
p.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
p.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}
@media only screen and (min-width: 1200px) {
  p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  p {
    font-size: 2.6rem;
  }
  p.small {
    font-size: 1.8rem;
  }
}

a {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
  text-decoration: none;
}
.btn-social {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:5rem;
  height:5rem;
  border-radius:50%;
  background: transparent;
  border: none;
  color: #000; /* default: black (for light backgrounds) */
  text-decoration: none;
}
.btn-social i { font-size:1.8rem; }
.btn-social.white { color: #fff; } /* explicit white variant */

/* Swap to white icons in dark mode by default; `.black` forces black */
@media (prefers-color-scheme: dark) {
  .team-card { background: rgba(255,255,255,0.02); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .team-avatar { border-color: rgba(255,255,255,0.06); }
  .btn-social { color: #fff; }
  .btn-social.black { color: #000; }
}
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  a {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  a {
    font-size: 2.6rem;
  }
  a.link-small {
    font-size: 1.8rem;
  }
  a.link-small-underline {
    font-size: 1.8rem;
    text-decoration: underline;
  }
  a.link-small-160lh {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

blockquote {
  font: normal 300 3.2rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 4.4rem;
    max-width: 76rem;
  }
}
@media only screen and (min-width: 1200px) {
  blockquote {
    font-size: 5rem;
    max-width: none;
  }
}
@media only screen and (min-width: 1400px) {
  blockquote {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  blockquote {
    font-size: 6.8rem;
  }
}

.logo-text {
  font: normal 600 1.8rem var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .logo-text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .logo-text {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .logo-text {
    font-size: 2.6rem;
  }
}

.menu-link {
  font: normal 500 1.6rem var(--_font-default);
}
@media only screen and (min-width: 1600px) {
  .menu-link {
    font-size: 1.8rem;
  }
}

.text-link {
  color: inherit;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-bright), var(--t-bright));
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.text-link.text-link-medium {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-muted)), to(var(--t-muted)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-muted), var(--t-muted));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-muted), var(--t-muted));
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.no-touch .text-link:hover {
  -moz-background-size: 0 1px, 100% 1px;
       background-size: 0 1px, 100% 1px;
}

/* ------------------------------------------------*/
/* Elements - Typography End */
/* ------------------------------------------------*/
/* Keep service list visually inline while retaining semantic markup */
.services-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  font: normal var(--font-weight-base) 1.8rem/1.6 var(--_font-default);
  color: var(--t-medium);
  letter-spacing: 0.01em;
}
.services-inline li {
  display: inline-block;
  margin-right: 1rem;
}
.services-inline li:last-child {
  margin-right: 0;
}
.services-inline li strong {
  font-weight: var(--font-weight-medium);
  color: var(--t-bright);
  white-space: nowrap;
  margin-right: 0.25rem;
}
/* End services-inline */
/* Decorative side images for About page */
.about-img {
  display: block;
  max-width: 240px;
}
.about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
  /* ensure no CSS blur is applied */
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  image-rendering: auto;
}
.about-img.side-left {
  float: left;
  margin: 0 1.6rem 1rem 0;
}
.about-img.side-right {
  float: right;
  margin: 0 0 1rem 1.6rem;
}
@media (max-width: 768px) {
  .about-img.side-left,
  .about-img.side-right {
    float: none;
    text-align: left;
  }
  .about-img.side-left {
    margin: 1rem auto 1rem 0 !important;
    max-width: 60% !important;
    display: block !important;
  }
  .about-img.side-right {
    margin: 1rem 0 1rem auto !important;
    max-width: 60% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: right !important;
  }
}

.about-gallery {
  display: flex;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem 0;
  flex-wrap: wrap;
}
.about-gallery img {
  width: 140px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .about-gallery img { width: 32%; }
}

/* Team section styles */
.team-block { margin-top: 2.4rem; }
.team-intro { margin-bottom: 1rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}
.team-card {
  background: transparent;
  padding: 1.2rem;
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.team-name {
  font: normal var(--font-weight-medium) 1.8rem/1.2 var(--_font-default);
  margin: 0.4rem 0 0.2rem 0;
  color: var(--t-bright);
}
.team-role {
  font: normal var(--font-weight-base) 1.6rem/1.4 var(--_font-default);
  color: var(--t-muted);
  margin-bottom: 0.8rem;
}
.team-socials { display:flex; gap:0.6rem; justify-content:center; }
.btn-social {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:3.6rem;
  height:3.6rem;
  border-radius:50%;
  background: transparent;
  border: 1px solid var(--stroke-controls);
  color: var(--t-bright);
  text-decoration: none;
}
.btn-social i { font-size:1.4rem; }
.btn-social.whatsapp { color: #25D366; border-color: rgba(37,211,102,0.15); }
.btn-social.instagram { color: #E1306C; border-color: rgba(225,48,108,0.12); }
.btn-social.facebook { color: #3b5998; border-color: rgba(59,89,152,0.12); }

@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { text-align: left; }
  .team-socials { justify-content: flex-start; }
}

/* Increase type for service lists, additional services and objectives
   and force them to align with the main content width */
.inner__content .type-basic-160lh ul,
.inner__content ul.services-inline {
  font: normal var(--font-weight-base) 2.2rem/1.6 var(--_font-default);
  color: var(--t-bright);
  margin: 0 0 1.2rem 0;
  padding-left: 1.8rem;
  max-width: 100%;
  width: 100%;
  text-align: left !important;
}
.inner__content .type-basic-160lh ul li,
.inner__content ul.services-inline li {
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .inner__content .type-basic-160lh ul,
  .inner__content ul.services-inline {
    font-size: 1.9rem;
    padding-left: 1.2rem;
  }
}
/* ------------------------------------------------*/
/* Elements - Controls Start */
/* ------------------------------------------------*/
.team-card {
  position: relative;\n  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));\n  padding: 2rem 1.6rem;\n  text-align: center;\n  border-radius: 2.2rem;\n  border: 1px solid rgba(72, 169, 166, 0.35);\n  overflow: hidden;\n  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) var(--_animbezier), box-shadow var(--_animspeed-medium) var(--_animbezier);\n  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);\n}\n.team-card::before {\n  content: \"\";\n  position: absolute;\n  inset: -20% -20% auto auto;\n  width: 20rem;\n  height: 20rem;\n  border-radius: 50%;\n  background: radial-gradient(circle, rgba(72, 169, 166, 0.32) 0%, rgba(72, 169, 166, 0) 72%);\n  z-index: 0;\n  pointer-events: none;\n}\n.team-card::after {\n  content: \"\";\n  position: absolute;\n  inset: auto -20% -20% auto;\n  width: 20rem;\n  height: 20rem;\n  border-radius: 50%;\n  background: radial-gradient(circle, rgba(72, 169, 166, 0.28) 0%, rgba(72, 169, 166, 0) 72%);\n  z-index: 0;\n  pointer-events: none;\n}\n.team-card:hover { \n  transform: translateY(-8px); \n  border-color: rgba(72, 169, 166, 0.55);\n  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);\n}
.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin-bottom: 1rem;
  border: 2px solid rgba(72, 169, 166, 0.35);
  position: relative;
  z-index: 1;
  transition: transform var(--_animspeed-medium) var(--_animbezier);
}
.team-card:hover .team-avatar {
  transform: translateY(-3px);
}
.team-name {
  font: normal var(--font-weight-medium) 2.2rem/1.2 var(--_font-default);
  margin: 0.6rem 0 0.2rem 0;
  color: var(--t-bright);
  position: relative;
  z-index: 1;
}
.team-role {
  font: normal var(--font-weight-base) 1.6rem/1.4 var(--_font-default);
  color: var(--t-muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.btn-line .btn-caption,
.btn-line i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-line i {
  font-size: 2.3rem;
  overflow: hidden;
}
.btn-line.icon-left .btn-caption {
  margin-left: 1rem;
}
.btn-line.icon-right .btn-caption {
  margin-right: 1rem;
}
.btn-line:hover {
  color: var(--t-medium);
}
@media only screen and (min-width: 1200px) {
  .btn-line {
    font-size: 2rem;
  }
  .btn-line i {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-line {
    font-size: 2.2rem;
  }
  .btn-line i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line {
    font-size: 2.6rem;
  }
  .btn-line i {
    font-size: 3.2rem;
  }
}

.btn-line-small {
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.4rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.btn-line-small .btn-caption,
.btn-line-small i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-line-small i {
  font-size: 1.6rem;
  overflow: hidden;
}
.btn-line-small.icon-left .btn-caption {
  margin-left: 1rem;
}
.btn-line-small.icon-right .btn-caption {
  margin-right: 1rem;
}
.btn-line-small:hover {
  color: var(--t-medium);
}
@media only screen and (min-width: 768px) {
  .btn-line-small {
    font-size: 1.6rem;
  }
  .btn-line-small i {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line-small {
    font-size: 1.8rem;
  }
  .btn-line-small i {
    font-size: 2.2rem;
    padding-bottom: 0.2rem;
  }
}

.btn-default {
  width: 100%;
  height: 10rem;
  padding: 0 7.6rem;
  -moz-border-radius: 5rem;
       border-radius: 5rem;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.8rem/10rem var(--_font-default);
  color: var(--t-opp-bright);
}
@media only screen and (min-width: 576px) {
  .btn-default {
    width: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-default {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    font-size: 2rem;
    color: var(--t-bright);
  }
  .btn-default .btn-caption {
    display: block;
    position: relative;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-default {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-default {
    height: 11rem;
    line-height: 11rem;
    -moz-border-radius: 6rem;
         border-radius: 6rem;
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-default {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .hover-default em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .no-touch .hover-default:hover {
    color: var(--t-opp-bright);
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .no-touch .hover-default:hover em {
    width: 225%;
    height: 22.5rem;
  }
}

.btn-circle-text {
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.2rem var(--_font-default);
  color: var(--t-opp-bright);
}
@media only screen and (min-width: 1200px) {
  .btn-circle-text {
    width: 11rem;
    height: 11rem;
    font-size: 1.4rem;
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    color: var(--t-bright);
  }
  .btn-circle-text .btn-caption {
    display: block;
    position: relative;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-circle-text {
    width: 14rem;
    height: 14rem;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-circle-text {
    width: 16rem;
    height: 16rem;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-circle {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .hover-circle em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .no-touch .hover-circle:hover {
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  
  /* Light mode: icon turns white on hover */
  @media (prefers-color-scheme: light) {
    .no-touch .hover-circle:hover {
      color: #ffffff;
    }
  }
  
  /* Dark mode: icon turns black on hover */
  @media (prefers-color-scheme: dark) {
    .no-touch .hover-circle:hover {
      color: #000000;
    }
  }
  .no-touch .hover-circle:hover em {
    width: 225%;
    height: 225%;
  }
}

/* FRESH GLASS MORPHISM BOOK NOW BUTTON - FOOTER ONLY */
.footer__btn .btn-circle-icon {
  position: relative;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 169, 166, 0.25) 0%, rgba(72, 169, 166, 0.08) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(72, 169, 166, 0.4);
  box-shadow: 0 8px 32px rgba(72, 169, 166, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  font-size: 2.8rem;
  color: var(--t-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Locked Donate Button Hover Effect */
.locked-btn {
  cursor: not-allowed;
  pointer-events: auto;
}

.locked-btn:active,
.locked-btn:focus {
  outline: none;
}

.no-touch .locked-btn:hover .btn-caption {
  opacity: 0;
}

.no-touch .locked-btn:hover .locked-icon {
  opacity: 1 !important;
  color: #ff0000 !important;
}
}

.footer__btn .btn-circle-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.no-touch .footer__btn .btn-circle-icon:hover {
  background: linear-gradient(135deg, rgba(72, 169, 166, 0.35) 0%, rgba(72, 169, 166, 0.15) 100%);
  border-color: rgba(72, 169, 166, 0.6);
  box-shadow: 0 16px 48px rgba(72, 169, 166, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
}

.no-touch .footer__btn .btn-circle-icon:hover i {
  transform: scale(1.15);
}

@media only screen and (min-width: 768px) {
  .footer__btn .btn-circle-icon {
    width: 12rem;
    height: 12rem;
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .footer__btn .btn-circle-icon {
    width: 14rem;
    height: 14rem;
    font-size: 3.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .footer__btn .btn-circle-icon {
    width: 16rem;
    height: 16rem;
    font-size: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .footer__btn .btn-circle-icon {
    width: 18rem;
    height: 18rem;
    font-size: 4.6rem;
  }
}

.btn-line-circle-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
.btn-line-circle-icon .btn-caption {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 2rem;
}
.btn-line-circle-icon .circle {
  position: relative;
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-line-circle-icon .circle em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: var(--t-bright);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.btn-line-circle-icon .circle i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 2.3rem;
  color: var(--t-opp-bright);
  z-index: 2;
  overflow: hidden;
  -webkit-transition: color 0.3s 0s;
  -moz-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}
.btn-line-circle-icon:hover {
  color: var(--t-medium);
}
.btn-line-circle-icon.permanent-dark {
  color: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark .circle {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark em {
  background: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark i {
  color: var(--t-per-bright-light);
}
@media only screen and (min-width: 1200px) {
  .btn-line-circle-icon {
    font-size: 2rem;
  }
  .btn-line-circle-icon .circle {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
  }
  .btn-line-circle-icon .circle i {
    font-size: 2.5rem;
    color: var(--t-bright);
  }
}
@media only screen and (min-width: 1400px) {
  .btn-line-circle-icon {
    font-size: 2.2rem;
  }
  .btn-line-circle-icon .circle i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line-circle-icon {
    font-size: 2.6rem;
  }
  .btn-line-circle-icon .circle i {
    font-size: 3.2rem;
  }
}

.btn-to-top {
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--t-bright);
  font-size: 1.8rem;
  z-index: 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-to-top i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .btn-to-top {
    position: fixed;
    right: 5rem;
    bottom: 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-to-top {
    font-size: 1.9rem;
  }
  .no-touch .btn-to-top:hover {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
  }
}
@media only screen and (min-width: 1400px) {
  .btn-to-top {
    width: 5rem;
    height: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-to-top {
    font-size: 2.2rem;
  }
}

.slide-right:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRight;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRight;
          animation: 0.4s ease-in-out 0s 1 both slideRight;
}

.slide-right-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
          animation: 0.4s ease-in-out 0s 1 both slideRightUp;
}

.slide-right-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
          animation: 0.4s ease-in-out 0s 1 both slideRightDown;
}

.slide-left:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeft;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeft;
          animation: 0.4s ease-in-out 0s 1 both slideLeft;
}

.slide-left-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
          animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
}

.slide-left-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
          animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
}

.slide-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideDown;
          animation: 0.4s ease-in-out 0s 1 both slideDown;
}

.slide-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideUp;
          animation: 0.4s ease-in-out 0s 1 both slideUp;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-moz-keyframes slideRight {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(-100%);
         transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(100%);
         transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
       -moz-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
       -moz-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(100%);
         transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(-100%);
         transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
       -moz-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
       -moz-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(-100%);
         transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(100%);
         transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
       -moz-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
       -moz-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(100%);
         transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(-100%);
         transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
       -moz-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
       -moz-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(100%);
         transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(100%);
         transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------------------------*/
/* Elements - Controls End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Forms Start */
/* ------------------------------------------------*/
.form-container {
  position: relative;
}

.form {
  opacity: 1;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

.form__item {
  padding: 0 1rem;
  margin-bottom: 3rem;
}
.form__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .form__item {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .form__item {
    padding: 0 2.5rem;
    margin-bottom: 5rem;
  }
}

form {
  position: relative;
  width: 100%;
}
form input, form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 1.6rem 0.4rem 1.6rem 0.4rem;
  background-color: transparent;
  border-bottom: 1px solid var(--stroke-elements);
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
}
form input:focus, form textarea:focus {
  border-bottom: 1px solid var(--stroke-controls);
}
form textarea {
  height: 16rem;
  resize: none;
}
form ::-webkit-input-placeholder {
  color: var(--t-muted);
}
form :-moz-placeholder {
  color: var(--t-muted);
}
form ::-moz-placeholder {
  color: var(--t-muted);
}
form :-ms-input-placeholder {
  color: var(--t-muted);
}
form input:focus:required:invalid,
form textarea:focus:required:invalid {
  color: var(--t-bright);
}
form input:required:valid,
form textarea:required:valid {
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  form input,
  form textarea {
    font-size: 2rem;
  }
  form textarea {
    height: 20rem;
  }
}
@media only screen and (min-width: 1400px) {
  form input,
  form textarea {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  form input,
  form textarea {
    font-size: 2.6rem;
  }
}

.form__reply {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form__reply.centered {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  max-width: 300px;
}
.form__reply.is-visible {
  opacity: 1;
}

.reply__icon {
  display: block;
  font-size: 6rem;
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__title {
  font: normal var(--font-weight-base) 2.6rem var(--_font-accent);
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__text {
  display: block;
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

/* ------------------------------------------------*/
/* Elements - Forms End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Main Start */
/* ------------------------------------------------*/
.main {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .main {
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main {
    padding-top: 0;
  }
}

.main__intro {
  position: relative;
  height: auto;
  margin-bottom: 3.4rem;
}
.main__intro.intro-95-desktop {
  margin-bottom: 11.5rem;
}
.main__intro.intro-fullheight-centered {
  margin-bottom: 12rem;
}
@media only screen and (min-width: 768px) {
  .main__intro {
    margin-bottom: 4.4rem;
  }
  .main__intro.intro-95-desktop {
    margin-bottom: 14.5rem;
  }
  .main__intro.intro-fullheight-centered {
    margin-bottom: 14.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main__intro {
    height: 100vh;
    margin-bottom: 0;
  }
  .main__intro.intro-95-desktop {
    height: 95vh;
    margin-bottom: 0;
    padding-top: 7rem;
  }
  .main__intro.intro-fullheight-centered {
    margin-bottom: 0;
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .main__intro.intro-95-desktop, .main__intro.intro-fullheight-centered {
    padding-top: 8rem;
  }
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro__background.intro-bg-01 img, .intro__background.intro-bg-02 img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, rgba(var(--base-rgb), 0)), color-stop(97%, rgba(var(--base-rgb), 1)));
  background: -moz-linear-gradient(top, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
  background: linear-gradient(to bottom, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
}

.intro-bg-01__01,
.intro-bg-01__02,
.intro-bg-02__01,
.intro-bg-02__02,
.intro-bg-03__01,
.intro-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.intro-bg-01__01 {
  top: -160px;
  right: -100px;
  width: 320px;
  height: 320px;
}
@media only screen and (min-width: 768px) {
  .intro-bg-01__01 {
    top: -320px;
    right: -20px;
    width: 500px;
    height: 500px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-01__01 {
    top: -280px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-01__01 {
    top: -160px;
    right: -80px;
    width: 660px;
    height: 660px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-01__01 {
    top: -200px;
    right: 0;
    width: 770px;
    height: 770px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-01__01 {
    top: -300px;
    right: 0;
    width: 860px;
    height: 860px;
  }
}

.intro-bg-01__02 {
  bottom: -80px;
  left: auto;
  right: 0;
  width: 150px;
  height: 150px;
}
@media only screen and (min-width: 768px) {
  .intro-bg-01__02 {
    bottom: -120px;
    left: auto;
    right: 0;
    width: 240px;
    height: 240px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-01__02 {
    bottom: -40px;
    left: -96px;
    width: 300px;
    height: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-01__02 {
    bottom: -10px;
    left: -86px;
    width: 360px;
    height: 360px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-01__02 {
    bottom: -60px;
    left: -175px;
    width: 500px;
    height: 500px;
  }
}

.intro-bg-02__01 {
  top: auto;
  bottom: -60px;
  right: 0;
  width: 160px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -100px;
    right: 0;
    width: 260px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -80px;
    right: 0;
    width: 340px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 80px;
    right: 0;
    width: 330px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 100px;
    right: 0;
    width: 350px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 60px;
    right: 0;
    width: 530px;
    height: auto;
  }
}

.intro-bg-02__02 {
  bottom: -160px;
  top: auto;
  left: -30px;
  width: 100px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -42px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -30px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 150px;
    left: -68px;
    width: 200px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 210px;
    left: -82px;
    width: 240px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-02__02 {
    top: 150px;
    bottom: auto;
    left: -120px;
    width: 350px;
    height: auto;
  }
}

.intro-bg-03__01 {
  height: 440px;
  width: auto;
  bottom: -300px;
  right: -40px;
}
.intro-bg-03__01 img {
  display: block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -80px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -60px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    top: -10vh;
    right: -60px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    top: -10vh;
    right: -60px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-03__01 {
    height: 126vh;
    width: auto;
    top: -16vh;
    right: -80px;
  }
}

.intro-bg-03__02 {
  height: 180px;
  width: auto;
  bottom: -220px;
  left: 40px;
}
.intro-bg-03__02 img {
  display: block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-03__02 {
    height: 350px;
    width: auto;
    bottom: -340px;
    left: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-03__02 {
    height: 400px;
    width: auto;
    bottom: -340px;
    left: 150px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-03__02 {
    height: 420px;
    width: auto;
    bottom: -210px;
    left: auto;
    right: 220px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-03__02 {
    height: 450px;
    width: auto;
    bottom: -245px;
    right: 220px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-03__02 {
    height: 540px;
    width: auto;
    bottom: -265px;
    right: 320px;
  }
}

.headline {
  position: relative;
  padding: 0 2rem;
  margin-top: 11.2rem;
}
.headline.headline-95-desktop, .headline.headline-centered {
  margin-top: 9.5rem;
}
@media only screen and (min-width: 768px) {
  .headline {
    padding: 0 5rem;
    margin-top: 14.2rem;
  }
  .headline.headline-95-desktop, .headline.headline-centered {
    margin-top: 10.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }
  .headline.headline-95-desktop {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 9rem;
  }
  .headline.headline-centered {
    bottom: auto;
    left: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .headline.headline-95-desktop {
    padding-bottom: 9.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline.headline-95-desktop {
    padding-bottom: 11.3rem;
  }
}

@media only screen and (min-width: 768px) {
  .headline__title.fullwidth {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
}

.title__line {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.title__line em {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.title__line em,
.title__line .btn {
  display: none;
}
@media only screen and (min-width: 768px) {
  .title__line span {
    white-space: nowrap;
  }
  .title__line .btn {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 3rem;
    margin-top: 0.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .title__line {
    padding: 0 3rem;
  }
  .title__line .btn {
    margin-left: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .title__line em {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 260px;
    margin-right: 5rem;
    padding-top: 3.7rem;
    font-size: 1.8rem;
  }
  .title__line .btn {
    margin-left: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .title__line em {
    max-width: 300px;
    padding-top: 4.3rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .title__line {
    padding: 0 5rem;
  }
  .title__line em {
    max-width: 370px;
    padding-top: 6rem;
    font-size: 2.4rem;
  }
}

.headline__datamobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: left;
  margin-top: 4.5rem;
}
.headline__datamobile p {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
  margin-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .headline__datamobile {
    margin-top: 5.4rem;
    padding: 0 3rem;
    text-align: center;
  }
  .headline__datamobile p {
    max-width: 370px;
    margin: 0 auto;
    font-size: 2rem;
  }
  .headline__datamobile .btn {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .headline__datamobile {
    margin-top: 6.1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__datamobile {
    display: none;
  }
}

.headline__btn {
  margin-top: 9.7rem;
}
@media only screen and (min-width: 768px) {
  .headline__btn {
    margin-top: 11.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__btn {
    margin-top: 5.9rem;
    margin-bottom: 4.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline__btn {
    margin-top: 11rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline__btn {
    margin-top: 10.1rem;
  }
}

.intro__btn {
  position: relative;
  padding: 0 2rem;
}
@media only screen and (min-width: 768px) {
  .intro__btn {
    padding: 0 5rem;
  }
}

.intro__btn-absolute {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .intro__btn-absolute {
    display: block;
    position: absolute;
    right: 5rem;
    bottom: 4.4rem;
  }
}

.main__media {
  position: relative;
}
.main__media.media-grid-bottom {
  padding-bottom: 2.5rem;
}
.main__media.media-stack-bottom {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .main__media.media-grid-bottom {
    padding-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .main__media.media-grid-bottom {
    padding-bottom: 5.5rem;
  }
}

/* ------------------------------------------------*/
/* Sections Main End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Inner Start */
/* ------------------------------------------------*/
.inner {
  position: relative;
}
.inner.inner-grid-bottom {
  padding: 11rem 0 2.5rem 0;
}
.inner.inner-stack {
  padding: 2.2rem 0 0.5rem 0;
}
.inner.inner-stack-bottom {
  padding: 11rem 0 0.5rem 0;
}
.inner.inner-type-bottom {
  padding: 11rem 0 2.2rem 0;
}
.inner.no-padding-top {
  padding-top: 0 !important;
}
.inner.no-padding-bottom {
  padding-bottom: 0 !important;
}
.inner.pre-no-padding-top {
  padding: 11rem 0 4.7rem 0;
}
@media only screen and (min-width: 768px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.5rem 0;
  }
  .inner.inner-stack {
    padding: 5.3rem 0 0.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 16rem 0 0.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 16rem 0 2.9rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 16rem 0 8.8rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.7rem 0;
  }
  .inner.inner-stack {
    padding: 8.3rem 0 0.7rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 16rem 0 0.7rem 0;
  }
  .inner.inner-type-bottom {
    padding: 16rem 0 3.1rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 16rem 0 12rem 0;
  }
}
@media only screen and (min-width: 1400px) {
  .inner.inner-grid-bottom {
    padding: 18rem 0 4.5rem 0;
  }
  .inner.inner-stack {
    padding: 9.5rem 0 1.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 18rem 0 1.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 18rem 0 3.9rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 18rem 0 14rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .inner.inner-grid-bottom {
    padding: 21rem 0 5.5rem 0;
  }
  .inner.inner-stack {
    padding: 13.5rem 0 0.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 21rem 0 0.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 21rem 0 4.8rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 21rem 0 19rem 0;
  }
}

.inner__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.inner__name {
  margin-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .inner__name {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .inner__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .inner__name {
    margin-top: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .inner__name {
    margin-top: 2.6rem;
  }
}

.inner__content {
  position: relative;
  width: 100%;
}

.bottom__background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bottom__background.bottom-bg-01 img, .bottom__background.bottom-bg-02 img, .bottom__background.bottom-bg-03 img {
  display: block;
  width: 100%;
  height: auto;
}

.bottom-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, rgba(var(--base-rgb), 0)), color-stop(97%, rgba(var(--base-rgb), 1)));
  background: -moz-linear-gradient(top, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
  background: linear-gradient(to bottom, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
}

.bottom-bg-01__01,
.bottom-bg-01__02,
.bottom-bg-02__01,
.bottom-bg-02__02,
.bottom-bg-03__01,
.bottom-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.bottom-bg-01__01 {
  bottom: 100px;
  right: -50px;
  width: 200px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-01__01 {
    bottom: 130px;
    right: -50px;
    width: 200px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-01__01 {
    bottom: 120px;
    right: -75px;
    width: 260px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-01__01 {
    bottom: 65px;
    right: -105px;
    width: 360px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-01__01 {
    bottom: 70px;
    right: -120px;
    width: 400px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-01__01 {
    bottom: 80px;
    right: -150px;
    width: 510px;
    height: auto;
  }
}

.bottom-bg-01__02 {
  bottom: 140px;
  left: -30px;
  width: 100px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -50px;
    width: 150px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -60px;
    width: 170px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -65px;
    width: 240px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -80px;
    width: 280px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-01__02 {
    bottom: 260px;
    left: -100px;
    width: 350px;
    height: auto;
  }
}

.bottom-bg-02__01 {
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-02__01 {
    bottom: -40px;
    right: -60px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-02__01 {
    bottom: -50px;
    right: -70px;
    width: 230px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-02__01 {
    width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-02__01 {
    bottom: -60px;
    right: -80px;
    width: 340px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-02__01 {
    width: 360px;
  }
}

.bottom-bg-02__02 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-02__02 {
    display: block;
    top: 50px;
    left: -35px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -35px;
    width: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -60px;
    width: 240px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -70px;
    width: 280px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -75px;
    width: 300px;
  }
}

.bottom-bg-03__01 {
  bottom: 100px;
  right: -30px;
  width: 180px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-03__01 {
    bottom: 180px;
    right: -30px;
    width: 180px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-03__01 {
    bottom: 150px;
    right: -30px;
    width: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -70px;
    width: 280px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -80px;
    width: 320px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-03__01 {
    bottom: 200px;
    right: -80px;
    width: 360px;
  }
}

.bottom-bg-03__02 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-03__02 {
    display: block;
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -50px;
    left: -150px;
    width: 360px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -60px;
    left: -170px;
    width: 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -70px;
    left: -180px;
    width: 440px;
  }
}

/* ------------------------------------------------*/
/* Sections Inner End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Common Start */
/* ------------------------------------------------*/
.page-content {
  position: relative;
  width: 100%;
  min-width: 360px;
  height: auto;
  z-index: 3;
}

.fullheight-desktop {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .fullheight-desktop {
    height: 100%;
  }
}

.grid-item {
  padding: 0 1rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .grid-item {
    padding: 0 1.5rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .grid-item {
    padding: 0 2.5rem;
    margin-top: 5rem;
  }
}

.grid-item-s {
  padding: 0 1rem;
  margin-top: 2rem;
}

.content__block {
  position: relative;
  padding: 0 2rem;
}
.content__block.no-padding {
  padding: 0;
}
.content__block.name-block {
  padding: 0 2rem;
}
.content__block.grid-block {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .content__block {
    padding: 0 5rem;
  }
  .content__block.name-block {
    padding: 0 5rem;
  }
  .content__block.grid-block {
    padding: 0 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .content__block.name-block {
    padding: 0 0 0 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .content__block.grid-block {
    padding: 0 2.5rem;
  }
}

.content__block.section-title {
  margin-bottom: 4rem;
}
.content__block.section-grid-title {
  margin-bottom: 3.6rem;
}
.content__block.section-grid-text-title {
  margin-bottom: 4rem;
}
.content__block.section-stack-title {
  margin-bottom: 0;
}
.content__block.section-tagline-title {
  margin-bottom: 4.8rem;
}
.content__block.section-form-title {
  margin-bottom: 3.5rem;
}
.content__block.large-text-block {
  margin: 10.3rem 0 10.8rem 0;
}
.content__block.large-text-block.pre-stack {
  margin-bottom: 2.8rem;
}
.content__block.pre-grid-items {
  margin-bottom: 4.8rem;
}
.content__block.pre-text-items {
  margin-bottom: 6rem;
}
.content__block.pre-offcanvas-text-block {
  margin-bottom: 12.7rem;
}
.content__block.pre-offcanvas-grid-block {
  margin-bottom: 14rem;
}
.content__block.pre-stack-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2.4rem;
}
.content__block.pre-stack-text-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2rem;
}
@media only screen and (min-width: 768px) {
  .content__block.section-text-title {
    margin-bottom: 2.7rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 3.8rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 4.9rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6rem;
  }
  .content__block.section-form-title {
    margin-bottom: 5.4rem;
  }
  .content__block.large-text-block {
    margin: 12.6rem 0 13.4rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 5.8rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 17.8rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 20rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -3.2rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -2.1rem;
  }
}
@media only screen and (min-width: 992px) {
  .content__block.section-text-title {
    margin-bottom: 3.4rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 4.5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6.7rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8.7rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .content__block.section-text-title {
    margin-bottom: 3.9rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 4.2rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6.3rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }
  .content__block.large-text-block {
    margin: 14.3rem 0 15.2rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 5.2rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8.6rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 19.5rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 22rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.8rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .content__block.section-text-title {
    margin-bottom: 3.6rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 6.5rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 7rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.8rem;
  }
  .content__block.large-text-block {
    margin: 17rem 0 17.9rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 7rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 9.5rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 22.2rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 25rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -3rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .content__block.section-text-title {
    margin-bottom: 1.9rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 3.5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.8rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 7.3rem;
  }
  .content__block.section-form-title {
    margin-bottom: 7.9rem;
  }
  .content__block.large-text-block {
    margin: 16.3rem 0 17.6rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 6.6rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 10.8rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 26.2rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 30rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -0.2rem;
  }
}

.block__subtitle.grid-block-subtitle {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 2.5rem;
  }
}

.block__subtitle {
  margin-bottom: 6.3rem;
}
.block__subtitle.grid-block-subtitle {
  margin-bottom: 4.3rem;
}
@media only screen and (min-width: 768px) {
  .block__subtitle {
    margin-bottom: 8.3rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 5.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .block__subtitle {
    margin-bottom: 9.9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .block__subtitle {
    margin-bottom: 11.3rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.3rem;
  }
}

.fullheight-l {
  height: auto;
}
@media only screen and (min-width: 992px) {
  .fullheight-l {
    height: 100%;
  }
}

.divider {
  position: relative;
  width: 100%;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.divider-image,
.divider-video {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
  height: 440px;
}
@media only screen and (min-width: 768px) {
  .divider-image,
  .divider-video {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .divider-image,
  .divider-video {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .divider-image,
  .divider-video {
    height: 700px;
  }
}

.divider-image-xl,
.divider-video-xl {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
  height: 440px;
}
@media only screen and (min-width: 768px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 600px;
  }
}
@media only screen and (min-width: 1400px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 700px;
  }
}
@media only screen and (min-width: 1600px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 800px;
  }
}

.section-title__name {
  margin-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .section-title__name {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title__name {
    margin-top: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-title__name {
    margin-top: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Blocks Common End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Header Start */
/* ------------------------------------------------*/
.header {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: auto;
  z-index: 11;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
/* Hide header navigation from 768px to 1199px - use hamburger instead */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .header {
    display: none !important;
    visibility: hidden !important;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    bottom: 3rem;
    left: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    /* Shift header further right to avoid overlapping the fixed logo */
    left: -moz-calc(16.66666667% + 10rem);
    left: calc(16.66666667% + 10rem);
    background-color: rgba(0, 0, 0, 0);
    z-index: 9;
  }
}
@media only screen and (min-width: 1400px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    /* Shift header further right to avoid overlapping the fixed logo */
    left: -moz-calc(16.66666667% + 10rem);
    left: calc(16.66666667% + 10rem);
  }
}

.header__navigation {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .header__navigation {
    height: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header__navigation {
    height: 5rem;
  }
}

.logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 2rem;
  left: 2rem;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .logo {
    top: 3rem;
    left: 5rem;
  }
}

.logo__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
.logo__link img {
  width: auto;
  height: 1rem;
  object-fit: contain;
  display: none;
}
.logo__link img.logo-img--dark,
.logo__link img.logo-img--light {
  /* spacing to balance with the text */
  margin-right: .6rem;
}

/* Top logo: force a consistent width */
.logo__link img.logo-img--dark,
.logo__link img.logo-img--light {
  width: 70px;
  height: auto;
  max-width: 100%;
}
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__link svg {
  .logo__link img {
    height: 2.5rem;
  }
  width: auto;

/* Show appropriate logo based on system preference or explicit color-scheme attribute */
@media (prefers-color-scheme: dark) {
  .logo__link img.logo-img--dark { display: inline-block; }
}
@media (prefers-color-scheme: light) {
  .logo__link img.logo-img--light { display: inline-block; }
}
[color-scheme="dark"] .logo__link img.logo-img--dark { display: inline-block; }
[color-scheme="light"] .logo__link img.logo-img--light { display: inline-block; }

/* logo text styling to balance with logo image */
.logo__link .logo-text {
  font-weight: 700;
  color: var(--neutral-bright);
  font-size: 1.6rem;
  line-height: 1;
}
  height: 4rem;
}
.logo__link span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 1400px) {
  .logo__link svg {
    height: 2.5rem;
  }
  .logo__link span {
    padding-left: 1.6rem;
  }
}

.color {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  overflow: hidden;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .color {
    top: 3rem;
    right: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .color {
    width: 5rem;
    height: 5rem;
  }
}

.color-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 3rem;
  height: 3rem;
  color: #000;
  transition: color 300ms ease;
}

/* Sun icon for light mode */
.color-switcher::before {
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
  content: '\f185';
  font-size: 1.8rem;
  color: #000;
  transition: opacity 300ms ease, transform 300ms ease;
}

/* Moon icon for dark mode */
:root[color-scheme="dark"] .color-switcher::before {
  content: '\f186';
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .color-switcher {
    width: 3.2rem;
    height: 3.2rem;
  }
  .color-switcher::before {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .color-switcher {
    width: 4rem;
    height: 4rem;
  }
  .color-switcher::before {
    font-size: 2.4rem;
  }
}}

.header-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
  z-index: 3;
}

/* Reduce footer logo size on small screens */
@media (max-width: 991px) {
  .footer-logo-img {
    width: 192px;
    height: auto;
    max-width: 192px;
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) {
  .header-offset {
    height: 8.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-offset {
    height: 0;
  }
}

/* ------------------------------------------------*/
/* Blocks Header End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Menu Start */
/* ------------------------------------------------*/
.menu__list {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .menu__list {
    height: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__list {
    height: 5rem;
  }
}

.menu__item {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu__link {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  color: var(--t-bright);
  white-space: nowrap;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__link.active {
  color: var(--t-opp-bright);
  background-color: var(--neutral-bright);
}
@media only screen and (min-width: 1200px) {
  .menu__link {
    width: auto;
    height: 4rem;
    padding: 0 2rem;
    font: normal var(--font-weight-medium) 1.6rem/4rem var(--_font-default);
    color: var(--t-medium);
  }
  .menu__link i {
    display: none;
  }
  .menu__link:hover {
    color: var(--t-bright);
  }
  .menu__link:hover .menu__caption {
    color: var(--t-bright);
  }
  .menu__link.active {
    color: var(--t-bright);
    background-color: transparent;
  }
  .menu__link.active .menu__caption {
    color: var(--t-bright);
    -moz-background-size: 0 1px, 100% 1px;
         background-size: 0 1px, 100% 1px;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__link {
    height: 5rem;
    line-height: 5rem;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .menu__link {
    font-size: 1.8rem;
  }
}

.menu__caption {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .menu__caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-bright), var(--t-bright));
    -moz-background-size: 100% 1px, 0 1px;
         background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 300ms, color 300ms;
    -moz-transition: background-size 300ms, color 300ms, -moz-background-size 300ms;
    transition: background-size 300ms, color 300ms;
    transition: background-size 300ms, color 300ms, -moz-background-size 300ms;
  }
}

/* Submenu Styles */
.menu__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--t-opp-bright);
  border: 2px solid var(--t-bright);
  border-radius: var(--_radius-s);
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu__item:hover .menu__submenu {
  display: block;
}

.menu__submenu .menu__item {
  display: block;
}

.menu__submenu .menu__link {
  width: 100%;
  height: auto;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  font-size: 1.4rem;
  text-align: left;
  display: block;
  color: var(--t-bright);
  background-color: transparent;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.menu__submenu .menu__link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-left-color: var(--t-bright);
  padding-left: 1.8rem;
}

@media (prefers-color-scheme: dark) {
  .menu__submenu .menu__link:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }
}

/* ------------------------------------------------*/
/* Blocks Menu End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Footer Start */
/* ------------------------------------------------*/
.footer {
  position: relative;
  padding: 10.4rem 0 0 0;
  z-index: 3;
}
.footer.footer-marquee {
  padding: 12.2rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 14.6rem 0 0 0;
  }
  .footer.footer-marquee {
    padding: 17.2rem 0 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 16.1rem 0 9.8rem 0;
  }
  .footer.footer-marquee {
    padding: 19rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding: 18.1rem 0 9.7rem 0;
  }
  .footer.footer-marquee {
    padding: 21.7rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .footer {
    padding: 21.2rem 0 11rem 0;
  }
  .footer.footer-marquee {
    padding: 25.6rem 0 4rem 0;
  }
}

.footer__link {
  position: relative;
  margin-bottom: 6.8rem;
}
@media only screen and (min-width: 992px) {
  .footer__link {
    margin-bottom: 7.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__link {
    margin-bottom: 8.2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer__link {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer__link {
    margin-bottom: 8.5rem;
  }
}

.footer__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .footer__text {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__text {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer__text {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer__text {
    font-size: 14rem;
  }
}

.footer__btn {
  margin-top: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .footer__btn {
    margin-top: 0;
  }
}

.footer__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.footer-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-logo svg {
  width: 4rem;
  height: auto;
}
.footer-logo span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
}
@media only screen and (min-width: 1400px) {
  .footer-logo svg {
    width: 5rem;
  }
  .footer-logo span {
    padding-left: 1.6rem;
  }

.footer-logo img {
  width: auto;
  height: 1.4rem;
  object-fit: contain;
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer-logo img { height: 1.8rem; }
}
@media only screen and (min-width: 1400px) {
  .footer-logo img { height: 2.2rem; }
}}}

@media (prefers-color-scheme: dark) {
  .footer-logo img.logo-img--dark { display: inline-block; }
}
@media (prefers-color-scheme: light) {
  .footer-logo img.logo-img--light { display: inline-block; }
}
[color-scheme="dark"] .footer-logo img.logo-img--dark { display: inline-block; }
[color-scheme="light"] .footer-logo img.logo-img--light { display: inline-block; }
}

/* Ensure footer logo reduced on small screens (more specific, placed after footer rules) */
@media (max-width: 991px) {
  .footer-logo img.footer-logo-img {
    width: 192px;
    height: auto;
    max-width: 192px;
    display: inline-block;
  }
}

/* ------------------------------------------------*/
/* Blocks Footer End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Popup Dialogs Start */
/* ------------------------------------------------*/
.popup {
  position: relative;
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  padding: 0;
  width: -moz-calc(100% - 4rem);
  width: calc(100% - 4rem);
  margin: 2rem auto;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 768px) {
  .popup {
    margin: 3rem auto;
    width: -moz-calc(100% - 10rem);
    width: calc(100% - 10rem);
  }
}
@media only screen and (min-width: 1600px) {
  .popup {
    max-width: 1620px;
  }
}

.project__block {
  padding: 0 2rem;
}
.project__block.no-padding {
  padding: 0;
}
.project__block.grid-block {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .project__block {
    padding: 0 5rem;
  }
  .project__block.grid-block {
    padding: 0 3.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .project__block.grid-block {
    padding: 0 2.5rem;
  }
}

.project__block {
  margin-top: 6rem;
  margin-bottom: 5.9rem;
}
.project__block.pre-grid-items {
  margin-bottom: 3.9rem;
}
.project__block.grid-items {
  margin-top: 3.8rem;
}
.project__block.normal-size {
  margin-top: 6rem;
  margin-bottom: 6.8rem;
}
.project__block.small-size {
  margin: 2rem 0;
}
.project__block.no-margin {
  margin: 0;
}
.project__block.no-margin-bottom {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .project__block {
    margin-top: 8rem;
    margin-bottom: 7.9rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 4.9rem;
  }
  .project__block.grid-items {
    margin-top: 5rem;
  }
  .project__block.normal-size {
    margin-top: 8rem;
    margin-bottom: 8.8rem;
  }
  .project__block.small-size {
    margin: 5rem 0;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .project__block {
    margin-top: 8.7rem;
    margin-bottom: 8.6rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }
  .project__block.grid-items {
    margin-top: 5.7rem;
  }
  .project__block.normal-size {
    margin-top: 8.7rem;
    margin-bottom: 9.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .project__block {
    margin-top: 8.2rem;
    margin-bottom: 8.6rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }
  .project__block.grid-items {
    margin-top: 5.2rem;
  }
  .project__block.normal-size {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .project__block {
    margin-top: 9.1rem;
    margin-bottom: 9.4rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }
  .project__block.grid-items {
    margin-top: 6.1rem;
  }
  .project__block.normal-size {
    margin-top: 10.5rem;
    margin-bottom: 10.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .project__block {
    margin-top: 10.4rem;
    margin-bottom: 10.7rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.7rem;
  }
  .project__block.grid-items {
    margin-top: 5.4rem;
  }
  .project__block.normal-size {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

.project-image-bg {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
       background-size: cover;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .project-image-bg {
    height: auto;
  }
}

@media (orientation: landscape) {
  .project-image-bg__landscape {
    display: block;
  }
  .project-image-bg__portrait {
    display: none;
  }
}
@media (orientation: portrait) {
  .project-image-bg__portrait {
    display: block;
  }
  .project-image-bg__landscape {
    display: none;
  }
}
.project__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 2rem;
}
@media only screen and (min-width: 768px) {
  .project__title {
    padding: 2.6rem 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.project__subtitle {
  margin-bottom: 2.8rem;
}
.project__subtitle.image-top-subtitle {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .project__subtitle {
    margin-bottom: 3.4rem;
  }
  .project__subtitle.image-top-subtitle {
    margin-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__subtitle {
    margin-bottom: 0;
    padding-top: 0.4rem;
  }
  .project__subtitle.image-top-subtitle {
    margin-bottom: 0;
    padding-top: 0;
  }
}

.project__illustration,
.project__illustration-xl {
  position: relative;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.project__data {
  position: relative;
}

@media only screen and (min-width: 1600px) {
  .pdata__item {
    padding-top: 0.4rem;
  }
}

.project__feedback {
  position: relative;
  margin-bottom: 5.9rem;
}
@media only screen and (min-width: 768px) {
  .project__feedback {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .project__feedback {
    margin-bottom: 9.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .project__feedback {
    margin-bottom: 10.7rem;
  }
}

.fauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .fauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.fauthor__name {
  color: var(--t-bright);
}

.fauthor__position {
  margin-top: 0.6rem;
}
@media only screen and (min-width: 1600px) {
  .fauthor__position {
    margin-top: 0.8rem;
  }
}

.fauthor__rating {
  margin-top: 1.3rem;
}
.fauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}
.fauthor__rating i:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 1400px) {
  .fauthor__rating i {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .fauthor__rating {
    margin-bottom: 0.4rem;
  }
  .fauthor__rating i {
    font-size: 2rem;
  }
}

.feedback__descr {
  margin-top: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .feedback__descr {
    margin-top: 3.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .feedback__descr {
    margin-top: 3.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .feedback__descr {
    margin-top: 3.4rem;
  }
}

.project__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.mfp-wrap {
  position: fixed !important;
}

.mfp-fade {
  overflow: hidden;
}

.mfp-fade .mfp-container {
  position: fixed;
  overflow-y: scroll;
}

.mfp-bg {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.mfp-container {
  padding: 0;
}

.mfp-close-btn-in .mfp-close {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  border: 1px solid var(--t-per-bright-dark);
  right: 3rem;
  top: 3rem;
  opacity: 1;
  padding: 0;
  font: inherit;
  color: var(--t-per-bright-dark);
  font-size: 1.8rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mfp-close-btn-in .mfp-close::before {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Phosphor";
  content: "\eddb";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.mfp-close-btn-in .mfp-close.permanent-dark {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
  color: var(--t-per-bright-light);
}
.mfp-close-btn-in .mfp-close.permanent-light {
  border: 1px solid var(--t-per-bright-light);
  background-color: var(--t-per-bright-light);
  color: var(--t-per-bright-dark);
}
@media only screen and (min-width: 1200px) {
  .mfp-close-btn-in .mfp-close.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: transparent;
    color: var(--t-per-bright-dark);
  }
  .mfp-close-btn-in .mfp-close.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: transparent;
    color: var(--t-per-bright-light);
  }
  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: var(--t-per-bright-dark);
    color: var(--neutral-white);
  }
  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: var(--t-per-bright-light);
    color: var(--t-per-bright-dark);
  }
}
@media only screen and (min-width: 1400px) {
  .mfp-close-btn-in .mfp-close {
    width: 5rem;
    height: 5rem;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
     -moz-transform: translateY(3rem);
      -ms-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.3s var(--_animbezier);
  -moz-transition: all 0.3s var(--_animbezier);
  transition: all 0.3s var(--_animbezier);
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
     -moz-transform: translateY(3rem);
      -ms-transform: translateY(3rem);
          transform: translateY(3rem);
}

/* ------------------------------------------------*/
/* Blocks Popup Dialogs End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Marquee Start */
/* ------------------------------------------------*/
.items {
  max-width: 100%;
  overflow: hidden;
}

.items--gsap {
  color: #fff;
}

.items--gsap .items__container {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.items__caption {
  max-width: 50vw;
  padding: 0 1.5rem;
}

.items__container {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.items .item {
  margin-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .items .item {
    margin-right: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .items .item {
    margin-right: 5rem;
  }
}

.item {
  position: relative;
  width: 45vw;
  height: auto;
  background-color: var(--base);
  -moz-border-radius: 20px;
       border-radius: 20px;
  overflow: hidden;
  color: var(--t-bright);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-animation: animateZ 1s infinite;
     -moz-animation: animateZ 1s infinite;
          animation: animateZ 1s infinite;
}
.item.item-regular {
  width: auto;
  -moz-border-radius: 0;
       border-radius: 0;
  gap: 0;
  background-color: transparent;
  color: var(--t-bright);
  -webkit-animation: animateZ 1s infinite;
     -moz-animation: animateZ 1s infinite;
          animation: animateZ 1s infinite;
}
.item.icon {
  border: 1px solid var(--stroke-elements);
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.item.icon svg {
  display: block;
  height: 70px;
  width: auto;
}
.item.image {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}
.item.image-1 {
  background-image: url("../img/marquee/01.webp");
}
.item.image-2 {
  background-image: url("../img/marquee/02.webp");
}
.item.image-3 {
  background-image: url("../img/marquee/03.webp");
}
.item img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .item.icon svg {
    height: 120px;
  }
}
@media only screen and (min-width: 992px) {
  .item {
    width: 30vw;
  }
}
@media only screen and (min-width: 1200px) {
  .item {
    width: 25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .item {
    width: 20vw;
  }
  .item.icon svg {
    height: 140px;
  }
}

.item__text {
  margin-right: 2rem;
}
.item__text.text-with-gliph {
  margin-right: 0;
}
.item__text.text-with-gliph::after {
  content: "/";
  display: inline;
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .item__text {
    margin-right: 3rem;
  }
  .item__text.text-with-gliph::after {
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__text {
    margin-right: 5rem;
  }
  .item__text.text-with-gliph::after {
    padding-left: 5rem;
  }
}

.item__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
@media only screen and (min-width: 768px) {
  .item__image {
    width: 7rem;
    height: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .item__image {
    width: 8rem;
    height: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__image {
    width: 11rem;
    height: 11rem;
  }
}

.item__image img,
.item__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .item__text {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .item__text {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .item__text {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__text {
    font-size: 14rem;
  }
}

@-webkit-keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-moz-keyframes toLeft {
  to {
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}

@keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes toRight {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes toRight {
  to {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes toRight {
  to {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
  }
}
@-moz-keyframes animateZ {
  to {
    -moz-transform: translateZ(1px);
         transform: translateZ(1px);
  }
}
@keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
       -moz-transform: translateZ(1px);
            transform: translateZ(1px);
  }
}
/* ------------------------------------------------*/
/* Features Marquee End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features About Start */
/* ------------------------------------------------*/
.about-descr,
.about-info {
  padding-top: 2.8rem;
}
.about-descr.pre-grid,
.about-info.pre-grid {
  padding-top: 3.7rem;
}
.about-descr.pre-title,
.about-info.pre-title {
  padding-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .about-descr,
  .about-info {
    padding-top: 0;
  }
  .about-descr.pre-title,
  .about-info.pre-title {
    padding-top: 0rem;
  }
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 4.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}

.about-descr__text {
  margin-bottom: 2.1rem;
}
.about-descr__text:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .about-descr__text {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-descr__text {
    margin-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-descr__text {
    margin-bottom: 2.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr__text {
    margin-bottom: 3.2rem;
  }
}

.about-descr__btnholder {
  margin-top: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .about-descr__btnholder {
    margin-top: 4.1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-descr__btnholder {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr__btnholder {
    margin-top: 4.7rem;
  }
}

.about-info__item {
  margin-bottom: 2rem;
}
.about-info__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .about-info__item {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__item {
    margin-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-info__item {
    margin-bottom: 2.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-info__item {
    margin-bottom: 3.2rem;
  }
}

/* ------------------------------------------------*/
/* Features About End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Custom - About: Spacing & Sprater (divider) */
/* Reduced spacing and full-width text to match the divider above */
.about .large-text-block {
  margin: 4rem 0 5rem 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .about .large-text-block {
    margin: 8rem 0 9rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .about .large-text-block {
    margin: 10rem 0 11rem 0;
  }
}
.about .large-text-block .block__title {
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.about .large-text-block p {
  margin-bottom: 1.6rem;
  color: var(--t-medium);
  max-width: none;
}
.about .large-text-block ul {
  margin: 1rem 0 1.8rem 1.8rem;
}
.section-sprater {
  width: calc(100% - 2rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--base-rgb), 0.06), transparent);
  margin: 2rem 1rem;
  border-radius: 2px;
  opacity: 0.95;
}
@media only screen and (min-width: 1200px) {
  .section-sprater {
    margin: 3rem 1rem;
  }
}

/* ------------------------------------------------*/
/* Features Gallery Start */
/* ------------------------------------------------*/
.inner__gallery {
  position: relative;
}

.gallery__btn {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 1rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .gallery__btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 0 1.5rem;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .gallery__btn {
    padding: 0 2.5rem;
  }
}

.gallery__item {
  position: relative;
  cursor: pointer;
}

.gallery__link {
  display: block;
  position: relative;
  overflow: hidden;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}
.gallery__link .picture {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 112%;
  height: 112%;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-transition: background-position 0.5s;
  -moz-transition: background-position 0.5s;
  transition: background-position 0.5s;
  -webkit-transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  -moz-transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -moz-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier);
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out, -moz-transform 0.7s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .gallery__link {
    -webkit-transform: scale3d(1, 1, 1);
       -moz-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
    transition: -webkit-transform 0.3s var(--_animbezier);
    -moz-transition: transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier), -webkit-transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
  }
  .no-touch .gallery__link:hover .picture {
    width: 100%;
    height: 100%;
  }
}

.gallery__image {
  opacity: 0;
}

.gallery__descr {
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  width: -moz-calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
  padding: 1.875rem;
}
.gallery__descr h5,
.gallery__descr p {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .gallery__descr {
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: -moz-calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
  }
}

.pswp__bg {
  background: var(--per-base);
}

.pswp__top-bar,
.pswp__ui--fit .pswp__top-bar {
  height: 74px;
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__counter {
  left: 1.5rem;
  top: 1.5rem;
  padding: 0 1.4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.6);
  font: normal 400 1.8rem/44px var(--_font-default);
  font-variant-numeric: lining-nums;
  color: var(--t-per-bright-light);
  opacity: 1;
}
.pswp__counter:active {
  opacity: 1;
}

.pswp__caption,
.pswp__ui--fit .pswp__caption {
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__caption__center {
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  padding: 2.6rem 3rem;
  background-color: rgba(0, 0, 0, 0.6);
}
.pswp__caption__center h5 {
  font: normal 500 2.4rem var(--_font-accent);
  color: var(--t-per-bright-light);
  margin-bottom: 1.8rem;
  letter-spacing: normal;
}
.pswp__caption__center h5 small {
  display: block;
  font: normal 400 1.6rem var(--_font-default);
  color: var(--t-per-medium-light);
  margin-top: 0.4rem;
}
.pswp__caption__center p {
  font: normal 300 1.8rem/1.4 var(--_font-default);
  color: var(--t-per-bright-light);
}
@media only screen and (min-width: 1200px) {
  .pswp__caption__center {
    max-width: 600px;
  }
}

.pswp__button {
  background-color: var(--per-base);
  border: 1px solid var(--per-stroke-elements);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  opacity: 1;
}
.pswp__button:active {
  opacity: 1;
}

.pswp__button--zoom,
.pswp__button--fs,
.pswp__button--share {
  margin-right: 1rem;
}

.pswp__button--close {
  position: relative;
  background-color: var(--neutral-white);
  border: none;
  opacity: 1;
}
.pswp__button--close:active {
  opacity: 1;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  width: 74px;
  opacity: 1;
  border: none;
  background-color: transparent;
}

.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  top: 28px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: var(--neutral-white);
  color: var(--t-per-bright-dark);
  font-size: 1.6rem;
}

.pswp__button--arrow--left:before {
  left: 1.5rem;
  background-position: -132px -44px;
}

.pswp__button--arrow--right:before {
  right: 1.5rem;
  background-position: -88px -44px;
}

/* ------------------------------------------------*/
/* Features Gallery End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Achievements Start */
/* ------------------------------------------------*/
.numblock {
  padding: 1rem 1.25rem;
  margin-right: 1rem;
  border: 1px solid var(--stroke-elements);
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}
.numblock:last-of-type {
  margin-right: 0;
}

.numblock__number {
  display: block;
  font: normal 700 2.25rem/1 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
}

.numblock__descr {
  font: normal 700 -moz-calc(var(--_size) * 0.938)/1.2 var(--_font-default);
  font: normal 700 calc(var(--_size) * 0.938)/1.2 var(--_font-default);
  color: var(--t-muted);
  margin-top: 0.375rem;
}
@media only screen and (min-width: 768px) {
  .numblock__descr {
    margin-top: 0;
    margin-left: 0.375rem;
  }
}

.achievements__item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .achievements__item {
    width: 33.33333334%;
  }
}

.achievements__card {
  height: 100%;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(var(--cards-accent-rgb, 72, 169, 166), 0.35);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.26), rgba(var(--cards-accent-rgb, 72, 169, 166), 0));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  text-align: center;
}

.achievements__card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.32) 0%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.achievements__card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.28) 0%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.no-touch .achievements__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--cards-accent-rgb, 72, 169, 166), 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
@media only screen and (min-width: 1600px) {
  .achievements__card {
    padding: 5rem 3rem;
  }
}

.achievements__number {
  font: normal 300 4.6rem/0.8 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .achievements__number {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .achievements__number {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .achievements__number {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .achievements__number {
    font-size: 12rem;
  }
}

.achievements__descr {
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .achievements__descr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .achievements__descr {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .achievements__descr {
    font-size: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Features Achievements End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Stacking Cards Start */
/* ------------------------------------------------*/
.stack-wrapper {
  position: relative;
  width: 100%;
}

.stack-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
}
.stack-offset.solid-block {
  height: 8rem;
}
@media only screen and (min-width: 768px) {
  .stack-offset {
    height: 10rem;
  }
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 992px) {
  .stack-offset {
    height: 10rem;
  }
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 1400px) {
  .stack-offset {
    height: 11rem;
  }
  .stack-offset.solid-block {
    height: 11rem;
  }
}
@media only screen and (min-width: 1600px) {
  .stack-offset.solid-block {
    height: 11rem;
  }
}

.services-stack {
  width: 100%;
  position: relative;
  height: 65vh;
  min-height: 615px;
}
@media only screen and (min-width: 768px) {
  .services-stack {
    height: 500px;
    min-height: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .services-stack {
    height: 700px;
  }
}

.portfolio-stack {
  width: 100%;
  position: relative;
  height: 460px;
}
@media only screen and (min-width: 768px) {
  .portfolio-stack {
    height: 530px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio-stack {
    height: 630px;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-stack {
    height: 750px;
  }
}

.stack-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .stack-item {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .stack-item {
    padding-bottom: 5rem;
  }
}

.services-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}

.services-stack__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .services-stack__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}
.services-stack__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}
@media only screen and (min-width: 768px) {
  .services-stack__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.services-stack__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-stack__image .service-img-m {
  display: none;
}
@media only screen and (min-width: 768px) {
  .services-stack__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-left: 0;
  }
  .services-stack__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }
  .services-stack__image .service-img-s {
    display: none;
  }
  .services-stack__image .service-img-m {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .services-stack__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.portfolio-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
       background-size: cover;
}

.portfolio-stack__descr {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 3rem;
}
@media only screen and (min-width: 768px) {
  .portfolio-stack__descr {
    display: block;
    width: 60%;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-stack__descr {
    width: 40%;
    padding: 4rem 5rem 4.6rem 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-stack__descr {
    width: 33.3334%;
  }
}

.portfolio-stack__title {
  color: var(--t-per-bright-light);
}
.portfolio-stack__title.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
.portfolio-stack__title.light {
  color: var(--neutral-white);
  font-weight: 300;
}

.portfolio-stack__text {
  margin-top: 3rem;
  font-weight: 300;
  color: var(--t-per-bright-light);
}
.portfolio-stack__text.dark {
  font-weight: 400;
  color: var(--t-per-bright-dark);
}
@media only screen and (min-width: 1400px) {
  .portfolio-stack__text {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Stacking Cards End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Services Start */
/* ------------------------------------------------*/
.services {
  position: relative;
}

.services__item {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .services__item {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .services__item {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .services__item {
    height: 700px;
  }
}

.services__card {
  position: relative;
  height: 100%;
  border-radius: 2.2rem;
  border: 1px solid rgba(var(--cards-accent-rgb, 72, 169, 166), 0.35);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.26), rgba(var(--cards-accent-rgb, 72, 169, 166), 0));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  overflow: hidden;
}

.no-touch .services__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--cards-accent-rgb, 72, 169, 166), 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.services__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .services__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    z-index: 2;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}
.services__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}
@media only screen and (min-width: 768px) {
  .services__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    z-index: 2;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .services__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .services__text {
    margin-bottom: 0;
  }
}

.services__image {
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.services__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__image .service-img-m {
  display: none;
}
@media only screen and (min-width: 768px) {
  .services__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-left: 0;
  }
  .services__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }
  .services__image .service-img-s {
    display: none;
  }
  .services__image .service-img-m {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .services__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.cards {
  position: relative;
  row-gap: 1.2rem;
  --cards-accent-rgb: 72, 169, 166;
  --cards-panel: rgba(var(--base-rgb), 0.16);
  --cards-panel-strong: rgba(var(--base-rgb), 0.24);
  --cards-stroke: rgba(var(--base-rgb), 0.35);
  --cards-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.cards__item {
  position: relative;
  overflow: visible;
}

.cards__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 2.2rem;
  border: 1px solid var(--cards-stroke);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(var(--cards-accent-rgb), 0.26), rgba(var(--cards-accent-rgb), 0));
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}

.cards__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--cards-accent-rgb), 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.cards__descr {
  padding: 2.6rem 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.cards__text {
  margin-top: 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__text {
    margin-top: 4rem;
  }
}

.cards__image {
  position: relative;
  isolation: isolate;
  min-height: 24rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 2rem;
  background: linear-gradient(144deg, rgba(var(--base-rgb), 0.24), rgba(var(--base-rgb), 0.08));
  overflow: hidden;
  -moz-border-radius-topleft: var(--_radius);
       border-top-left-radius: var(--_radius);
  -moz-border-radius-topright: var(--_radius);
       border-top-right-radius: var(--_radius);
}

.cards__image::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.32) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.cards__image::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.28) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.cards__image img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
  border-radius: 5px;
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  position: relative;
  z-index: 1;
}

.cards__card:hover .cards__image img {
  transform: translateY(-3px);
}

.cards__image-v2 {
  padding-left: 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__image-v2 {
    padding-left: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Services End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Resume Start */
/* ------------------------------------------------*/
.resume-lines,
.resume-lines-number {
  position: relative;
}

.resume-lines__item,
.resume-lines-number__item {
  padding: 4.3rem 0 4.1rem 0;
}
@media only screen and (min-width: 1600px) {
  .resume-lines__item,
  .resume-lines-number__item {
    padding: 5rem 0 4.8rem 0;
  }
}

.resume-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.resume-lines__date {
  margin-bottom: 1.9rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines__date {
    margin-bottom: 0;
  }
}

.resume-lines-number__date {
  margin-top: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines-number__date {
    margin-top: 0;
  }
}

.resume-lines__title,
.resume-lines__source {
  padding-right: 3rem;
}
@media only screen and (min-width: 1600px) {
  .resume-lines__title,
  .resume-lines__source {
    padding-right: 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .resume-lines-number__title,
  .resume-lines-number__source {
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .resume-lines-number__title,
  .resume-lines-number__source {
    padding-right: 5rem;
  }
}

.resume-lines__title {
  margin-bottom: 0.6rem;
}

.resume-lines__source,
.resume-lines-number__source {
  display: inline-block;
}

.resume-lines__descr {
  margin-top: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines__descr {
    margin-top: 0;
  }
}

.resume-lines-number__descr {
  margin-bottom: 2.4rem;
}

/* ------------------------------------------------*/
/* Features Resume End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Tools Start */
/* ------------------------------------------------*/
.tools-cards__item {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .tools-cards__item {
    width: 33.33333334%;
  }
}
@media only screen and (min-width: 992px) {
  .tools-cards__item {
    width: 25%;
  }
}

.tools-cards__card {
  position: relative;
  width: 100%;
  padding: 3rem;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(var(--cards-accent-rgb, 72, 169, 166), 0.35);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.26), rgba(var(--cards-accent-rgb, 72, 169, 166), 0));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  text-align: center;
}

.tools-cards__card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.32) 0%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.tools-cards__card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.28) 0%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.no-touch .tools-cards__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--cards-accent-rgb, 72, 169, 166), 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
@media only screen and (min-width: 1600px) {
  .tools-cards__card {
    padding: 5rem 3rem;
  }
}

.tools-cards__icon {
  width: auto;
  height: 6rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1400px) {
  .tools-cards__icon {
    height: 7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tools-cards__icon {
    height: 9rem;
  }
}

.tools-cards__caption {
  line-height: 1;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.tools-card {
  position: relative;
  padding: 3rem;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(72, 169, 166, 0.35);
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) var(--_animbezier), box-shadow var(--_animspeed-medium) var(--_animbezier);
}

.tools-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.32) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.tools-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.28) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.tools-card:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.tools-card__icon {
  width: auto;
  height: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .tools-card__icon {
    height: 90px;
  }
}

.tools-card__caption {
  line-height: 1;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------*/
/* Features Tools End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Testimonials Start */
/* ------------------------------------------------*/
.testimonials-card {
  position: relative;
  padding: 3rem;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(72, 169, 166, 0.35);
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) var(--_animbezier), box-shadow var(--_animspeed-medium) var(--_animbezier);
}

.testimonials-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.32) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.testimonials-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 169, 166, 0.28) 0%, rgba(72, 169, 166, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.testimonials-card:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
@media only screen and (min-width: 992px) {
  .testimonials-card {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card {
    padding: 5rem;
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .testimonials-card {
    height: 700px;
  }
}

.testimonials-card__tdata {
  position: relative;
  z-index: 1;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .testimonials-card__tdata {
    height: 100%;
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__tdata {
    padding-right: 2.5rem;
  }
}

.testimonials-card__timage {
  position: relative;
  z-index: 1;
  padding-left: 0;
}
@media only screen and (min-width: 992px) {
  .testimonials-card__timage {
    height: 100%;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__timage {
    padding-left: 2.5rem;
  }
}

.timage__inner {
  border-radius: var(--_radius);
  overflow: hidden;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}
.timage__inner img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform var(--_animspeed-medium) var(--_animbezier);
}

.testimonials-card:hover .timage__inner img {
  transform: translateY(-3px);
}

.testimonials-card__descr {
  max-width: 1050px;
  margin-top: 2.8rem;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .testimonials-card__descr {
    margin-top: 3.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonials-card__descr {
    margin-top: 3.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__descr {
    margin-top: 3.4rem;
  }
}

.testimonials-card__btnholder {
  margin-top: 2.2rem;
  margin-bottom: 3.3rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-card__btnholder {
    margin-top: 3.2rem;
    margin-bottom: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .testimonials-card__btnholder {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

.tauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .tauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.tauthor__name {
  color: var(--t-bright);
}

.tauthor__position {
  margin-top: 0.6rem;
}
@media only screen and (min-width: 1600px) {
  .tauthor__position {
    margin-top: 0.8rem;
  }
}

.tauthor__rating {
  margin-top: 1.3rem;
}
.tauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}
.tauthor__rating i:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 1400px) {
  .tauthor__rating i {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tauthor__rating {
    margin-bottom: 0.4rem;
  }
  .tauthor__rating i {
    font-size: 2rem;
  }
}

/* ------------------------------------------------*/
/* Features Testimonials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Portfolio Page Styles Start */
/* ------------------------------------------------*/

/* ---- Dark mode: soften text so it's not harsh pure-white at night ---- */
[color-scheme="dark"] .portfolio-page {
  --t-bright: #C2C8D8;
  --t-medium: #8A909E;
}

/* ---- Light mode: soften text so it's not harsh pure-black in bright light ---- */
[color-scheme="light"] .portfolio-page {
  --t-bright: #2C3038;
  --t-medium: #52565E;
}

/* Section Sub-Title */
.section-sub-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 20px;
}

/* Project Card Header */
.project-header {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.project-header .cards__title {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.project-header .cards__title i {
  margin-right: 10px;
  font-size: 22px;
  vertical-align: middle;
}

.project-type {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  border: 1px solid rgba(72, 169, 166, 0.45);
  color: var(--t-bright);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Project Skills Tags */
.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--neutral-bright);
}

.tech-tag {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  border: 1px solid rgba(var(--base-rgb), 0.35);
  color: var(--t-bright);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 4px 12px rgba(72, 169, 166, 0.2);
  transform: translateY(-2px);
}

/* Expertise Matrix - Category Grid */
.expertise-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .expertise-matrix {
    grid-template-columns: 1fr 1fr;
  }
}

.expertise-category {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(72, 169, 166, 0.26), rgba(72, 169, 166, 0));
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 6px;
  border-left: 4px solid #48A9A6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}

.expertise-category:hover {
  transform: translateY(-4px);
  border-left-width: 6px;
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.expertise-category h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--t-bright);
}

.expertise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge-expert {
  background: rgba(21, 22, 23, 0.1);
  color: var(--t-bright);
  border: 2px solid var(--t-bright);
}

.badge-expert:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 22, 23, 0.2);
}

.badge-advanced {
  background: rgba(21, 22, 23, 0.05);
  color: var(--t-bright);
  border: 1px solid var(--t-bright);
  opacity: 0.8;
}

.badge-intermediate {
  background: transparent;
  color: var(--t-bright);
  border: 1px dashed var(--t-bright);
  opacity: 0.7;
}

/* Skills Radar Chart */
.chart-radar-wrapper {
  max-width: 520px;
  margin: 0 auto 10px;
  padding: 25px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 50% 110%, rgba(72, 169, 166, 0.22), transparent 60%);
  border-radius: 8px;
  border: 1px solid rgba(var(--base-rgb), 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Circular SVG Donut Charts Grid */
.skills-circular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

@media (min-width: 576px) {
  .skills-circular-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.circular-skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.circular-chart {
  width: 100%;
  max-width: 110px;
}

.circle-bg {
  fill: none;
  stroke: var(--neutral-bright);
  stroke-width: 3.2;
}

.circular-chart .circle {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  animation: circular-progress 1.4s ease-out forwards;
}

.expert-chart .circle {
  stroke: #3b82f6;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.55));
}

.advanced-chart .circle {
  stroke: #8b5cf6;
  filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.55));
}

.intermediate-chart .circle {
  stroke: #ec4899;
  filter: drop-shadow(0 0 5px rgba(236, 72, 153, 0.55));
}

.circular-chart .percentage {
  fill: var(--t-bright);
  font-size: 7px;
  text-anchor: middle;
  font-weight: 700;
}

.circular-skill-name {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--t-bright);
  line-height: 1.3;
  margin: 0;
}

@keyframes circular-progress {
  from {
    stroke-dasharray: 0, 100;
  }
}

/* Tools & Technologies Grid (legacy kept for safety) */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

/* Glass Tool Chips */
.tools-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--t-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  cursor: default;
}

.tool-chip i {
  font-size: 24px;
  color: var(--t-bright);
  opacity: 0.65;
  flex-shrink: 0;
  transition: color var(--_animspeed-medium) ease, opacity var(--_animspeed-medium) ease;
}

.tool-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.tool-chip:hover i {
  color: rgba(72, 169, 166, 0.9);
  opacity: 1;
}

/* Skill Progress Bars */
.skill-bars-wrap {
  padding: 28px 32px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 100% 100%, rgba(72, 169, 166, 0.22), transparent 55%);
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.skill-bar-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--t-bright);
}

.skill-bar-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--t-bright);
  opacity: 0.75;
  letter-spacing: 0.5px;
}

.skill-bar-track {
  height: 8px;
  background: rgba(var(--base-rgb), 0.35);
  border-radius: 99px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, rgba(72, 169, 166, 0.75), rgba(72, 169, 166, 0.38));
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(72, 169, 166, 0.3);
  animation: bar-grow 1.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes bar-grow {
  from { width: 0; }
}

/* Experience Timeline - Advanced */
.portfolio-experience-item {
  padding: 25px;
  border-left: 5px solid var(--t-bright);
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--t-opp-bright), var(--t-opp-bright));
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.portfolio-experience-item:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--t-bright), rgba(21, 22, 23, 0.5));
  border-radius: 0 6px 6px 0;
}

.portfolio-experience-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left-width: 6px;
}

.portfolio-experience-item p strong {
  display: block;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--t-bright);
}

/* Education Timeline - Advanced */
.portfolio-education-item {
  padding: 25px 0;
  border-bottom: 2px solid var(--neutral-bright);
  transition: all 0.3s ease;
}

.portfolio-education-item:hover {
  background: var(--t-opp-bright);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 2px solid var(--t-bright);
}

.portfolio-education-item:last-child {
  border-bottom: none;
}

.portfolio-education-item ul li {
  margin-bottom: 15px;
  list-style: none;
  padding-left: 30px;
  position: relative;
  font-size: 22px;
  line-height: 1.8;
  transition: all 0.2s ease;
}

.portfolio-education-item ul li:hover {
  color: var(--t-bright);
  transform: translateX(5px);
}

.portfolio-education-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--t-bright);
  font-weight: bold;
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------*/
/* Portfolio Page Styles End */
/* ------------------------------------------------*/

/* Portfolio Summary List */
.portfolio-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-summary-list li {
  font-size: 18px;
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
  color: var(--t-bright);
}

.portfolio-summary-list li:before {
  content: none;
}

/* Hard Skills & Soft Skills Grid */
.skills-lists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .skills-lists-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.skills-list-block {
  padding: 24px;
  background: var(--t-opp-bright);
  border: 1px solid var(--neutral-bright);
  border-radius: 6px;
  border-left: 4px solid var(--t-bright);
  transition: all 0.3s ease;
}

.skills-list-block:hover {
  border-left-width: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.skills-list-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--t-bright);
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skills-list-title i {
  font-size: 22px;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skills-list li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--t-bright);
  padding-left: 22px;
  position: relative;
}

.skills-list li:before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--t-bright);
  font-weight: 700;
}

/* Work Experience List */
.experience-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience-list li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--t-bright);
  padding-left: 22px;
  position: relative;
}

.experience-list li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--t-bright);
  font-size: 20px;
  line-height: 1.5;
}

/* ================================================*/
/* PROFESSIONAL SUMMARY */
/* ================================================*/

.summary-statement {
  position: relative;
  padding: 28px 28px 28px 80px;
  margin-bottom: 30px;
  border-left: 4px solid #48A9A6;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 0% 50%, rgba(72, 169, 166, 0.22), transparent 60%);
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-left: 4px solid #48A9A6;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.summary-quote-icon {
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 40px;
  color: var(--t-bright);
  opacity: 0.25;
  line-height: 1;
}

.summary-tagline {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--t-bright);
  margin: 0;
  font-style: italic;
}

/* Updated summary list with icons */
.portfolio-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--t-bright);
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.portfolio-summary-list li:hover {
  border-color: rgba(72, 169, 166, 0.45);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 0% 50%, rgba(72, 169, 166, 0.18), transparent 60%);
  transform: translateX(6px);
}

.portfolio-summary-list li i {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--t-bright);
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.portfolio-summary-list li:hover i {
  opacity: 1;
}

.portfolio-summary-list li span {
  flex: 1;
}

/* ================================================*/
/* HARD SKILLS CHIPS + SOFT SKILLS */
/* ================================================*/

.skills-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .skills-split {
    grid-template-columns: 1.2fr 1fr;
  }
}

.skills-split__col {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 92% -10%, rgba(72, 169, 166, 0.26), transparent 60%);
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}

.skills-split__col:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.skills-split__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--t-bright);
  margin: 0 0 20px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(72, 169, 166, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
}

.skills-split__title i {
  font-size: 26px;
}

.hskills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hskill-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  border: 1px solid rgba(var(--base-rgb), 0.35);
  font-size: 15px;
  font-weight: 600;
  color: var(--t-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  cursor: default;
}

.hskill-chip:hover {
  border-color: rgba(72, 169, 166, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(72, 169, 166, 0.25);
}

.hskill-chip:hover i {
  color: rgba(72, 169, 166, 0.9);
}

.hskill-chip i {
  font-size: 18px;
  flex-shrink: 0;
}

.soft-skills-stmts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.soft-skill-stmt {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.soft-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--t-bright);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  font-variant-numeric: tabular-nums;
}

.soft-stmt-body strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--t-bright);
  margin-bottom: 4px;
}

.soft-stmt-body p {
  font-size: 15px;
  color: var(--t-bright);
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

/* ================================================*/
/* WORK TIMELINE */
/* ================================================*/

.work-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-timeline__item {
  display: flex;
  gap: 24px;
  position: relative;
}

.work-timeline__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.work-timeline__node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(72, 169, 166, 0.18);
  border: 2px solid rgba(72, 169, 166, 0.55);
  color: rgba(72, 169, 166, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(72, 169, 166, 0.2);
  transition: transform 0.3s ease;
}

.work-timeline__item:hover .work-timeline__node {
  transform: scale(1.1);
}

.work-timeline__connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(72, 169, 166, 0.45) 0%, transparent 100%);
  margin: 8px 0;
  min-height: 40px;
}

.work-timeline__card {
  flex: 1;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 92% -10%, rgba(72, 169, 166, 0.26), transparent 60%);
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
  position: relative;
}

.work-timeline__card::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  border-left: 1px solid rgba(var(--base-rgb), 0.35);
  border-bottom: 1px solid rgba(var(--base-rgb), 0.35);
  transform: rotate(45deg);
}

.work-timeline__card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.work-timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--neutral-bright);
}

.work-timeline__role {
  font-size: 20px;
  font-weight: 700;
  color: var(--t-bright);
  margin: 0 0 6px 0;
}

.work-timeline__company {
  font-size: 15px;
  color: var(--t-bright);
  opacity: 0.75;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-timeline__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(72, 169, 166, 0.45);
  background: linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24));
  font-size: 14px;
  font-weight: 700;
  color: var(--t-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================*/
/* FEATURED NUMBERED PROJECTS */
/* ================================================*/

.featured-projects {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.featured-project {
  display: flex;
  gap: 0;
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(72, 169, 166, 0.26), rgba(72, 169, 166, 0));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}

.featured-project:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.featured-project__num {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 72px;
  font-weight: 800;
  color: var(--t-bright);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.28), rgba(var(--base-rgb), 0.38)),
    radial-gradient(circle at 50% 50%, rgba(72, 169, 166, 0.22), transparent 70%);
  border-right: 1px solid rgba(72, 169, 166, 0.35);
  padding: 20px 10px;
  min-width: 70px;
  letter-spacing: -4px;
  flex-shrink: 0;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.featured-project:hover .featured-project__num {
  opacity: 1;
  letter-spacing: -2px;
}

.featured-project__inner {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-project__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.featured-project__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 2px solid var(--neutral-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--t-bright);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featured-project:hover .featured-project__icon {
  background: rgba(72, 169, 166, 0.18);
  color: rgba(72, 169, 166, 0.9);
  border-color: rgba(72, 169, 166, 0.55);
}

.featured-project__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--t-bright);
  margin: 6px 0 0 0;
  line-height: 1.3;
}

.featured-project__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--t-bright);
  opacity: 0.85;
  margin: 0;
}

/* ================================================*/
/* CERTIFICATE CARDS */
/* ================================================*/

.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(72, 169, 166, 0.26), rgba(72, 169, 166, 0));
  border: 1px solid rgba(var(--base-rgb), 0.35);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}

.cert-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(72, 169, 166, 0.2);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.35s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 169, 166, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.cert-card:hover::before {
  border-color: rgba(72, 169, 166, 0.4);
}

/* Corner ornaments */
.cert-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
}

.cert-corner--tl { top: 4px; left: 4px; border-top: 3px solid #48A9A6; border-left: 3px solid #48A9A6; }
.cert-corner--tr { top: 4px; right: 4px; border-top: 3px solid #48A9A6; border-right: 3px solid #48A9A6; }
.cert-corner--bl { bottom: 4px; left: 4px; border-bottom: 3px solid #48A9A6; border-left: 3px solid #48A9A6; }
.cert-corner--br { bottom: 4px; right: 4px; border-bottom: 3px solid #48A9A6; border-right: 3px solid #48A9A6; }

/* Header ribbon */
.cert-card__header {
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.22), rgba(var(--base-rgb), 0.32)),
    radial-gradient(circle at 50% 0%, rgba(72, 169, 166, 0.35), transparent 70%);
  border-bottom: 1px solid rgba(72, 169, 166, 0.35);
  color: var(--t-bright);
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.cert-card__header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 11px solid rgba(72, 169, 166, 0.25);
  z-index: 3;
}

.cert-card__icon {
  font-size: 36px;
  color: var(--t-bright);
  opacity: 0.75;
}

.cert-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--t-bright);
  opacity: 0.6;
}

/* Body */
.cert-card__body {
  flex: 1;
  padding: 28px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cert-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--t-bright);
  line-height: 1.35;
  margin: 0;
}

.cert-card__divider {
  width: 36px;
  height: 2px;
  background: #48A9A6;
  opacity: 0.6;
  border-radius: 2px;
  margin: 4px 0;
}

.cert-card__institution {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-bright);
  opacity: 0.8;
  margin: 0;
}

.cert-card__location {
  font-size: 13px;
  color: var(--t-bright);
  opacity: 0.6;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

/* Footer date badge */
.cert-card__footer {
  padding: 12px 16px 16px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(72, 169, 166, 0.2);
}

.cert-card__date {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(72, 169, 166, 0.45);
  color: var(--t-bright);
  letter-spacing: 0.5px;
}

/* ================================================*/
/* PORTFOLIO HERO PHOTO */
/* ================================================*/

.portfolio-hero-photo {
  position: relative;
  display: inline-block;
  margin: 30px auto;
}

.portfolio-hero-photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 2px solid rgba(72, 169, 166, 0.5);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.portfolio-hero-photo::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 28px;
  border: 1px solid rgba(72, 169, 166, 0.18);
  z-index: 0;
  pointer-events: none;
}

.portfolio-hero-photo img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(72, 169, 166, 0.12);
  filter: grayscale(15%);
  transition: filter 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-hero-photo:hover img {
  filter: grayscale(0%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(72, 169, 166, 0.25);
}

.portfolio-hero-photo:hover::before {
  border-color: rgba(72, 169, 166, 0.75);
}

@media (max-width: 1199px) {
  .portfolio-hero-photo {
    display: block;
    text-align: center;
    margin: 20px auto 40px;
  }
  .portfolio-hero-photo img {
    max-width: 280px;
    max-height: 360px;
    margin: 0 auto;
  }
}

/* ================================================*/
/* PORTFOLIO — MOBILE RESPONSIVE                  */
/* ================================================*/

/* Prevent page-level horizontal overflow on all screen sizes */
#page-content {
  overflow-x: hidden;
}

/* ---- Tablet & large mobile (max 991px) ---- */
@media (max-width: 991px) {

  /* Hero photo — shrink earlier */
  .portfolio-hero-photo img {
    max-width: 260px;
    max-height: 340px;
  }

  /* Chart no artificial cap */
  .chart-radar-wrapper {
    max-width: 100%;
  }
}

/* ---- Tablet portrait: photo above name, aligned with headline top offset ---- */
@media (min-width: 768px) and (max-width: 1199px) {
  .portfolio-hero-photo-col {
    order: -1;
    margin-top: 10.5rem;
    padding-bottom: 0;
  }
  .portfolio-page #headline.headline-95-desktop {
    margin-top: 1.5rem;
  }
}

/* ---- Phablet (max 767px) ---- */
@media (max-width: 767px) {

  /* Prevent any component from causing horizontal scroll */
  .portfolio-hero-photo::after {
    display: none;
  }

  /* Hero: photo above name, aligned with where name sits (clears fixed header) */
  .portfolio-hero-photo-col {
    order: -1;
    margin-top: 9rem;
    padding-bottom: 0;
    padding-top: 0;
  }

  /* Collapse headline margin since photo now takes the top spacing */
  .portfolio-page #headline.headline-95-desktop {
    margin-top: 1.5rem;
  }

  /* Hero photo */
  .portfolio-hero-photo {
    margin: 0 auto 8px;
  }
  .portfolio-hero-photo img {
    max-width: 200px;
    max-height: 260px;
  }

  /* Summary statement — pull quote flush */
  .summary-statement {
    padding: 20px 16px 20px 50px;
  }
  .summary-quote-icon {
    font-size: 26px;
    left: 12px;
    top: 18px;
  }

  /* Summary list — reduce padding */
  .portfolio-summary-list li {
    font-size: 17px;
    padding: 10px 12px;
    gap: 12px;
  }
  .portfolio-summary-list li i {
    font-size: 22px;
  }

  /* Achievements — stack vertically */
  .achievements {
    flex-direction: column;
  }

  /* Expertise badges — smaller */
  .expertise-category {
    padding: 14px;
  }
  .expertise-badge {
    padding: 6px 10px;
    font-size: 15px;
  }

  /* Skills split columns */
  .skills-split__col {
    padding: 18px 16px;
  }
  .skills-split__title {
    font-size: 16px;
  }

  /* Hard skill chips */
  .hskill-chip {
    padding: 8px 12px;
    font-size: 15px;
  }
  .hskill-chip i {
    font-size: 22px;
  }

  /* Soft skills numbers */
  .soft-num {
    font-size: 22px;
    min-width: 34px;
  }
  .soft-stmt-body strong {
    font-size: 16px;
  }
  .soft-stmt-body p {
    font-size: 15px;
  }

  /* Skill bars — tighten */
  .skill-bars-wrap {
    padding: 18px 14px;
    gap: 16px;
  }
  .skill-bar-name {
    font-size: 15px;
  }

  /* Chart wrapper */
  .chart-radar-wrapper {
    max-width: 100%;
    padding: 14px;
  }

  /* Circular proficiency grid — 3 col */
  .skills-circular-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .circular-skill-name {
    font-size: 12px;
  }

  /* Tool chips */
  .tools-chips {
    gap: 10px;
  }
  .tool-chip {
    padding: 10px 14px;
    font-size: 14px;
    gap: 10px;
  }
  .tool-chip i {
    font-size: 24px;
  }

  /* Section sub-titles */
  .section-sub-title {
    font-size: 21px;
    margin-bottom: 14px;
  }

  /* Work timeline — remove decorative side */
  .work-timeline__side {
    display: none;
  }
  .work-timeline__item {
    gap: 0;
  }
  .work-timeline__card {
    margin-left: 0;
    margin-bottom: 16px;
  }
  .work-timeline__card::before {
    display: none;
  }
  .work-timeline__header {
    flex-direction: column;
    gap: 8px;
  }
  .work-timeline__role {
    font-size: 20px;
  }
  .work-timeline__badge {
    align-self: flex-start;
  }
  .experience-list li {
    font-size: 17px;
  }

  /* Featured projects — number bar on top */
  .featured-project {
    flex-direction: column;
  }
  .featured-project__num {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 36px;
    letter-spacing: -2px;
    padding: 12px 18px;
    min-width: unset;
    width: 100%;
    text-align: left;
  }
  .featured-project__inner {
    padding: 18px 16px;
  }
  .featured-project__header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .featured-project__title {
    font-size: 19px;
  }
  .featured-project__desc {
    font-size: 16px;
  }

  /* Tech tags */
  .project-skills {
    gap: 6px;
    padding-top: 12px;
    margin-top: 12px;
  }
  .tech-tag {
    font-size: 14px;
    padding: 5px 10px;
  }
  .project-type {
    font-size: 13px;
    padding: 4px 8px;
  }

  /* Cert cards */
  .cert-card__body {
    padding: 22px 12px 14px;
  }
  .cert-card__title {
    font-size: 16px;
  }
  .cert-card__header {
    padding: 16px 12px 14px;
  }
  .cert-card__icon {
    font-size: 28px;
  }
}

/* ---- Small phones (max 575px) ---- */
@media (max-width: 575px) {

  /* Hero photo — small phone */
  .portfolio-hero-photo img {
    max-width: 200px;
    max-height: 260px;
  }
  /* Remove outer decorative frame to prevent overflow */
  .portfolio-hero-photo::before {
    inset: -5px;
  }

  /* Summary statement */
  .summary-statement {
    padding: 16px 12px 16px 44px;
    border-radius: 0 6px 6px 0;
  }
  .summary-quote-icon {
    font-size: 22px;
    left: 10px;
    top: 14px;
  }

  /* Work timeline card */
  .work-timeline__card {
    padding: 16px 14px;
  }

  /* Skills circular grid — 2 col on tiny phones */
  .skills-circular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Expertise matrix padding */
  .expertise-category {
    padding: 12px;
  }
  .expertise-matrix {
    gap: 16px;
  }

  /* Skill bars */
  .skill-bars-wrap {
    padding: 14px 12px;
    gap: 14px;
  }

  /* Soft skills */
  .soft-skill-stmt {
    gap: 12px;
  }
  .soft-num {
    font-size: 20px;
    min-width: 28px;
  }

  /* Cert grid force single col on tiny */
  .cert-grid {
    grid-template-columns: 1fr;
  }

  /* Tool chips */
  .tool-chip {
    padding: 9px 12px;
    font-size: 14px;
    gap: 8px;
  }
  .tool-chip i {
    font-size: 22px;
  }

  /* Hard skill chips */
  .hskill-chip {
    padding: 7px 10px;
    font-size: 14px;
  }
  .hskill-chip i {
    font-size: 20px;
  }

  /* Featured project num */
  .featured-project__num {
    font-size: 28px;
    padding: 10px 14px;
  }
}

/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Slider Start */
/* ------------------------------------------------*/
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 4.8rem;
}
@media only screen and (min-width: 1200px) {
  .swiper-testimonials {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .swiper-testimonials {
    padding-bottom: 7.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .swiper-testimonials {
    padding-bottom: 7.6rem;
  }
}

.mxd-swiper-pagination-fraction {
  width: auto;
  top: auto;
  bottom: 0;
  left: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 3rem;
  font: normal 400 1.8rem/1 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .mxd-swiper-pagination-fraction {
    padding-top: 5rem;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2.6rem;
  }
}

.mxd-slider-btn {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  width: auto;
  height: auto;
  margin: 0;
}
.mxd-slider-btn::after {
  display: none;
}
.mxd-slider-btn .btn .btn-caption {
  display: none;
}
@media only screen and (min-width: 768px) {
  .mxd-slider-btn .btn .btn-caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
  }
}

.mxd-slider-btn-square-prev {
  padding-left: 3rem;
  left: 0;
}
@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-prev {
    padding-left: 5rem;
  }
}

.mxd-slider-btn-square-next {
  padding-right: 3rem;
  right: 0;
}
@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-next {
    padding-right: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Slider End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Socials Start */
/* ------------------------------------------------*/
/* Socials Cards */
.socials-cards {
  position: relative;
}

.socials-cards__item {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .socials-cards__item {
    width: 33.33333334%;
  }
}
@media only screen and (min-width: 992px) {
  .socials-cards__item {
    width: 20%;
  }
}

.socials-cards__link {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2.6rem 0;
  border-radius: 2.2rem;
  border: 1px solid rgba(var(--cards-accent-rgb, 72, 169, 166), 0.35);
  background:
    linear-gradient(180deg, rgba(var(--base-rgb), 0.18), rgba(var(--base-rgb), 0.24)),
    radial-gradient(circle at 8% -12%, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.26), rgba(var(--cards-accent-rgb, 72, 169, 166), 0));
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--_animspeed-medium) var(--_animbezier), border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease;
}
.socials-cards__link em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cards-accent-rgb, 72, 169, 166), 0.4), rgba(var(--cards-accent-rgb, 72, 169, 166), 0.1));
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.socials-cards__link i {
  position: relative;
  display: block;
  font-size: 7rem;
  line-height: 1;
  color: var(--t-bright);
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  -moz-transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out, -webkit-transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  will-change: transform;
  z-index: 1;
}
.no-touch .socials-cards__link:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--cards-accent-rgb, 72, 169, 166), 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  -webkit-transition: color 0.3s 0s, background-color 0.3s 0.24s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  -moz-transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.no-touch .socials-cards__link:hover i {
  color: rgba(var(--cards-accent-rgb, 72, 169, 166), 0.9);
  -webkit-transform: scale3d(1.08, 1.08, 1);
     -moz-transform: scale3d(1.08, 1.08, 1);
          transform: scale3d(1.08, 1.08, 1);
}
.no-touch .socials-cards__link:hover em {
  width: 225%;
  height: 40.95rem;
}
@media only screen and (min-width: 1400px) {
  .socials-cards__link i {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .socials-cards__link {
    padding: 4rem 0;
  }
  .socials-cards__link i {
    font-size: 10rem;
  }
}

/* Socials Lines */
.socials-lines {
  position: relative;
}

.socials-lines__item {
  position: relative;
  display: block;
}

.socials-lines__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.socials-lines__link {
  position: relative;
  padding: 3rem 0.4rem;
  color: var(--t-bright);
  overflow: hidden;
}
.socials-lines__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0;
  background: var(--t-bright);
  -webkit-transition: height var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: height var(--_animspeed-medium) var(--_animbezier);
  transition: height var(--_animspeed-medium) var(--_animbezier);
}
.socials-lines__link h4,
.socials-lines__link i {
  color: var(--t-bright);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}
@media only screen and (min-width: 768px) {
  .socials-lines__link {
    padding: 5rem 0.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .no-touch .socials-lines__link:hover::before {
    height: 100%;
  }
  .no-touch .socials-lines__link:hover h4 {
    -webkit-transform: translate(5rem, 0px) !important;
       -moz-transform: translate(5rem, 0px) !important;
        -ms-transform: translate(5rem, 0px) !important;
            transform: translate(5rem, 0px) !important;
  }
  .no-touch .socials-lines__link:hover i {
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .no-touch .socials-lines__link:hover h4,
  .no-touch .socials-lines__link:hover i {
    color: var(--t-opp-bright);
  }
}

.socials-lines__icon {
  font-size: 3rem;
}
@media only screen and (min-width: 1400px) {
  .socials-lines__icon {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .socials-lines__icon {
    font-size: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Socials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Contact Data Start */
/* ------------------------------------------------*/
.contact-data__item {
  margin-bottom: 3.2rem;
}
.contact-data__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .contact-data__item {
    margin-bottom: 4.3rem;
  }
  .contact-data__item:nth-of-type(3), .contact-data__item:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .contact-data__item {
    margin-bottom: 0;
  }
}

.contact-data__title {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .contact-data__title {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-data__title {
    margin-bottom: 3.4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-data__title {
    margin-bottom: 4.2rem;
  }
}

/* ------------------------------------------------*/
/* Features Contact Data End */
/* ------------------------------------------------*/